Open GoogleCodeExporter opened 8 years ago
Works for me
Original comment by dan.bol...@gmail.com
on 20 Apr 2012 at 9:39
I'm having same issue. Offline people still showing up :(
Original comment by Oldschoo...@gmail.com
on 17 Jul 2012 at 12:43
not working for me either. I've tried different chat options (most popular, all
contacts, etc) and moved the chat from left pane to right pane and back. still
not working.
Original comment by rebeccal...@gmail.com
on 23 Oct 2012 at 7:20
Original comment by anst...@gmail.com
on 23 Jan 2013 at 1:19
Not working for me as well since several months...
Original comment by pep...@gmail.com
on 24 Jan 2013 at 7:08
I spent a while working on hide offline and hide away yesterday before I pushed
the update but I couldn't figure it out. Both those features are priorities for
the next release.
Original comment by anst...@gmail.com
on 24 Jan 2013 at 7:18
Same problem here. I believe it has been an issue for several months (it did
work at one point for a while). Thanks Angel for an awesome extension.
Original comment by sutclif...@gmail.com
on 24 Jan 2013 at 10:54
Modified the Head JS to the following and it works fine:
_min.offline = {
chatList: undefined,
icons: undefined,
bootstrap: function() {
_min.offline.icons = document.querySelectorAll('.vt');
if (_min.offline.icons.length > 0) {
_min.offline.chatList = _min.offline.icons[0].parentNode.parentNode.parentNode.parentNode;
_min.offline.chatList.addEventListener('DOMSubtreeModified', _min.offline.update);
_min.offline.update();
} else {
window.setTimeout(_min.offline.bootstrap, 3000);
}
},
update: function() {
_min.offline.chatList.removeEventListener('DOMSubtreeModified', _min.offline.update);
_min.offline.icons = document.querySelectorAll('.vt');
for (var i = 0, l = _min.offline.icons.length; i < l; i++) {
if (_min.offline.icons[i].getAttribute('class').indexOf('df') > 0 || _min.offline.icons[i].getAttribute('class').indexOf('Bp') > 0) {
_min.offline.icons[i].parentNode.parentNode.parentNode.setAttribute('offline','true');
} else {
_min.offline.icons[i].parentNode.parentNode.parentNode.setAttribute('offline','');
}
}
_min.offline.chatList.addEventListener('DOMSubtreeModified', _min.offline.update);
}
};
_min.offline.bootstrap();
Original comment by trevorhr...@gmail.com
on 21 Feb 2013 at 7:06
Nice work Trevor! This will be in the next release, and so will your name.
Cheers!
Original comment by anst...@gmail.com
on 21 Feb 2013 at 7:16
Happy to help the cause! :) Thanks for making such a great extension!
Original comment by trevorhr...@gmail.com
on 21 Feb 2013 at 7:18
Original issue reported on code.google.com by
bergo...@gmail.com
on 12 Apr 2012 at 12:06Attachments: