Merge pull request #1 from alecghica/master
Feature: added "Connecting to chat ..." info
This commit is contained in:
commit
1c7ef1917c
@ -25,6 +25,15 @@
|
||||
height: 1.1em;
|
||||
}
|
||||
|
||||
#toggle-online-users {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#connecting-to-chat {
|
||||
background: url('/spinner.gif') no-repeat;
|
||||
padding-left: 1.4em;
|
||||
}
|
||||
|
||||
.chat-head {
|
||||
color: #ffffff;
|
||||
margin: 0;
|
||||
|
@ -1759,6 +1759,7 @@
|
||||
// --------------
|
||||
$(document).ready($.proxy(function () {
|
||||
var chatdata = jQuery('div#collective-xmpp-chat-data'),
|
||||
$connecting = $('span#connecting-to-chat'),
|
||||
$toggle = $('a#toggle-online-users');
|
||||
$toggle.unbind('click');
|
||||
|
||||
@ -1771,6 +1772,8 @@
|
||||
}).render();
|
||||
|
||||
$(document).bind('jarnxmpp.disconnected', $.proxy(function (ev, conn) {
|
||||
$connecting.show();
|
||||
$toggle.hide();
|
||||
console.log("Connection Failed :(");
|
||||
}, this));
|
||||
|
||||
@ -1818,6 +1821,8 @@
|
||||
|
||||
// Controlbox toggler
|
||||
if ($toggle.length) {
|
||||
$connecting.hide();
|
||||
$toggle.show();
|
||||
$toggle.bind('click', $.proxy(function (e) {
|
||||
e.preventDefault();
|
||||
if ($("div#controlbox").is(':visible')) {
|
||||
|
Loading…
Reference in New Issue
Block a user