Browse Source

move participant number to proper position

pull/29/head
Jan-Christoph Borchardt 9 years ago
parent
commit
ecbf48e944
  1. 2
      js/index.js
  2. 4
      js/rooms.js

2
js/index.js

@ -26,7 +26,7 @@ $(window).load(function() {
$('#hideVideo').click(function() {
if(videoHidden) {
webrtc.resumeVideo();
$(this).text('Pause video');
$(this).text('Disable video');
videoHidden = false;
} else {
webrtc.pauseVideo();

4
js/rooms.js

@ -18,7 +18,7 @@
success: function(data) {
$('#app-navigation ul').html('');
data.forEach(function(element) {
$('#app-navigation ul').append('<li><a href="#'+escapeHTML(element['id'])+'">'+escapeHTML(element['name'])+' (' + escapeHTML(element['count']) + ')</a></li>');
$('#app-navigation ul').append('<li><a href="#'+escapeHTML(element['id'])+'">'+escapeHTML(element['name'])+' <span class="utils">' + escapeHTML(element['count']) + '</span></a></li>');
});
$('#app-navigation').removeClass('icon-loading');
}
@ -47,4 +47,4 @@
);
}
}
})(OCA);
})(OCA);
Loading…
Cancel
Save