2014-08-22 15:37:11 +00:00
|
|
|
var BottomToolbar = (function (my) {
|
|
|
|
my.toggleChat = function() {
|
2014-10-31 11:47:12 +00:00
|
|
|
PanelToggler.toggleChat();
|
2014-08-22 15:37:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
my.toggleContactList = function() {
|
2014-10-31 11:47:12 +00:00
|
|
|
PanelToggler.toggleContactList();
|
2014-08-22 15:37:11 +00:00
|
|
|
};
|
|
|
|
|
2014-09-04 08:15:48 +00:00
|
|
|
my.toggleFilmStrip = function() {
|
2014-09-08 15:34:56 +00:00
|
|
|
var filmstrip = $("#remoteVideos");
|
|
|
|
filmstrip.toggleClass("hidden");
|
2014-09-04 08:15:48 +00:00
|
|
|
};
|
|
|
|
|
2014-08-22 15:37:11 +00:00
|
|
|
$(document).bind("remotevideo.resized", function (event, width, height) {
|
|
|
|
var bottom = (height - $('#bottomToolbar').outerHeight())/2 + 18;
|
|
|
|
|
|
|
|
$('#bottomToolbar').css({bottom: bottom + 'px'});
|
|
|
|
});
|
|
|
|
|
|
|
|
return my;
|
|
|
|
}(BottomToolbar || {}));
|