23 lines
594 B
JavaScript
23 lines
594 B
JavaScript
var BottomToolbar = (function (my) {
|
|
my.toggleChat = function() {
|
|
PanelToggler.toggleChat();
|
|
};
|
|
|
|
my.toggleContactList = function() {
|
|
PanelToggler.toggleContactList();
|
|
};
|
|
|
|
my.toggleFilmStrip = function() {
|
|
var filmstrip = $("#remoteVideos");
|
|
filmstrip.toggleClass("hidden");
|
|
};
|
|
|
|
$(document).bind("remotevideo.resized", function (event, width, height) {
|
|
var bottom = (height - $('#bottomToolbar').outerHeight())/2 + 18;
|
|
|
|
$('#bottomToolbar').css({bottom: bottom + 'px'});
|
|
});
|
|
|
|
return my;
|
|
}(BottomToolbar || {}));
|