|
|
@@ -3318,7 +3318,7 @@ function registerListeners() {
|
|
3318
|
3318
|
AudioLevels.init();
|
|
3319
|
3319
|
});
|
|
3320
|
3320
|
|
|
3321
|
|
- if (!config.minimized) {
|
|
|
3321
|
+ if (!config.filmStripOnly) {
|
|
3322
|
3322
|
APP.xmpp.addListener(XMPPEvents.MESSAGE_RECEIVED, updateChatConversation);
|
|
3323
|
3323
|
APP.xmpp.addListener(XMPPEvents.CHAT_ERROR_RECEIVED, chatAddError);
|
|
3324
|
3324
|
// Listens for video interruption events.
|
|
|
@@ -3386,7 +3386,7 @@ UI.start = function (init) {
|
|
3386
|
3386
|
|
|
3387
|
3387
|
bindEvents();
|
|
3388
|
3388
|
setupPrezi();
|
|
3389
|
|
- if(!config.minimized) {
|
|
|
3389
|
+ if(!config.filmStripOnly) {
|
|
3390
|
3390
|
$("#videospace").mousemove(function () {
|
|
3391
|
3391
|
return ToolbarToggler.showToolbar();
|
|
3392
|
3392
|
});
|
|
|
@@ -3429,7 +3429,7 @@ UI.start = function (init) {
|
|
3429
|
3429
|
|
|
3430
|
3430
|
init();
|
|
3431
|
3431
|
|
|
3432
|
|
- if(!config.minimized) {
|
|
|
3432
|
+ if(!config.filmStripOnly) {
|
|
3433
|
3433
|
toastr.options = {
|
|
3434
|
3434
|
"closeButton": true,
|
|
3435
|
3435
|
"debug": false,
|
|
|
@@ -7234,7 +7234,7 @@ var ToolbarToggler = {
|
|
7234
|
7234
|
* Shows the main toolbar.
|
|
7235
|
7235
|
*/
|
|
7236
|
7236
|
showToolbar: function () {
|
|
7237
|
|
- if(config.minimized)
|
|
|
7237
|
+ if(config.filmStripOnly)
|
|
7238
|
7238
|
return;
|
|
7239
|
7239
|
var header = $("#header"),
|
|
7240
|
7240
|
bottomToolbar = $("#bottomToolbar");
|
|
|
@@ -7271,7 +7271,7 @@ var ToolbarToggler = {
|
|
7271
|
7271
|
* @param isDock indicates what operation to perform
|
|
7272
|
7272
|
*/
|
|
7273
|
7273
|
dockToolbar: function (isDock) {
|
|
7274
|
|
- if(config.minimized)
|
|
|
7274
|
+ if(config.filmStripOnly)
|
|
7275
|
7275
|
return;
|
|
7276
|
7276
|
|
|
7277
|
7277
|
if (isDock) {
|
|
|
@@ -9132,7 +9132,7 @@ RemoteVideo.prototype.addRemoteVideoContainer = function() {
|
|
9132
|
9132
|
* @param parentElement the parent element where this menu will be added
|
|
9133
|
9133
|
*/
|
|
9134
|
9134
|
|
|
9135
|
|
-if(!config.minimized) {
|
|
|
9135
|
+if(!config.filmStripOnly) {
|
|
9136
|
9136
|
RemoteVideo.prototype.addRemoteVideoMenu = function () {
|
|
9137
|
9137
|
var spanElement = document.createElement('span');
|
|
9138
|
9138
|
spanElement.className = 'remotevideomenu';
|
|
|
@@ -9911,7 +9911,7 @@ var VideoLayout = (function (my) {
|
|
9911
|
9911
|
my.init = function (emitter) {
|
|
9912
|
9912
|
eventEmitter = emitter;
|
|
9913
|
9913
|
localVideoThumbnail = new LocalVideo(VideoLayout);
|
|
9914
|
|
- if(config.minimized)
|
|
|
9914
|
+ if(config.filmStripOnly)
|
|
9915
|
9915
|
{
|
|
9916
|
9916
|
showLargeVideo = false;
|
|
9917
|
9917
|
LargeVideo.disable();
|
|
|
@@ -10077,7 +10077,7 @@ var VideoLayout = (function (my) {
|
|
10077
|
10077
|
resourceJid) {
|
|
10078
|
10078
|
if(focusedVideoResourceJid) {
|
|
10079
|
10079
|
var oldSmallVideo = VideoLayout.getSmallVideo(focusedVideoResourceJid);
|
|
10080
|
|
- if(oldSmallVideo && !config.minimized)
|
|
|
10080
|
+ if(oldSmallVideo && !config.filmStripOnly)
|
|
10081
|
10081
|
oldSmallVideo.focus(false);
|
|
10082
|
10082
|
}
|
|
10083
|
10083
|
|
|
|
@@ -10104,7 +10104,7 @@ var VideoLayout = (function (my) {
|
|
10104
|
10104
|
|
|
10105
|
10105
|
// Update focused/pinned interface.
|
|
10106
|
10106
|
if (resourceJid) {
|
|
10107
|
|
- if(smallVideo && !config.minimized)
|
|
|
10107
|
+ if(smallVideo && !config.filmStripOnly)
|
|
10108
|
10108
|
smallVideo.focus(true);
|
|
10109
|
10109
|
|
|
10110
|
10110
|
if (!noPinnedEndpointChangedEvent) {
|