diff options
author | Valerio Virgillito | 2012-03-16 11:09:20 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-03-16 11:09:20 -0700 |
commit | 3e98d9eaf6f691aa0f7a4334983537a4ee3ffd39 (patch) | |
tree | ae3c43bddd3705faee1de914cba3f616405c83f6 /js/controllers | |
parent | 8fb69c933fc3368fe15dd297aec5b2d8b186a959 (diff) | |
parent | c0a95991ba13deee9110ac0c1e443983834cfd63 (diff) | |
download | ninja-3e98d9eaf6f691aa0f7a4334983537a4ee3ffd39.tar.gz |
Merge pull request #122 from ananyasen/IO-patch-ninja-internal-master-ananya
IKNINJA-1305 : fixed the check for stopVideos() method's existence
Diffstat (limited to 'js/controllers')
-rwxr-xr-x | js/controllers/document-controller.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/controllers/document-controller.js b/js/controllers/document-controller.js index 87e93465..7d982a62 100755 --- a/js/controllers/document-controller.js +++ b/js/controllers/document-controller.js | |||
@@ -372,7 +372,7 @@ var DocumentController = exports.DocumentController = Montage.create(Component, | |||
372 | nextDocumentIndex = closeDocumentIndex - 1; | 372 | nextDocumentIndex = closeDocumentIndex - 1; |
373 | } | 373 | } |
374 | this.application.ninja.stage.stageView.switchDocument(this._documents[nextDocumentIndex]); | 374 | this.application.ninja.stage.stageView.switchDocument(this._documents[nextDocumentIndex]); |
375 | if(typeof this.activeDocument.stopVideos !== "undefined"){doc.stopVideos();} | 375 | if(typeof doc.stopVideos !== "undefined"){doc.stopVideos();} |
376 | this._removeDocumentView(doc.container); | 376 | this._removeDocumentView(doc.container); |
377 | }else if(this._documents.length === 0){ | 377 | }else if(this._documents.length === 0){ |
378 | if(typeof this.activeDocument.pauseAndStopVideos !== "undefined"){ | 378 | if(typeof this.activeDocument.pauseAndStopVideos !== "undefined"){ |