Skip to content

Commit

Permalink
VE updated. FS bug fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
agordillo committed Feb 23, 2015
1 parent 665cfaa commit c4f2f5a
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
4 changes: 3 additions & 1 deletion lib/plugins/vish_editor/app/assets/javascripts/vishEditor.js
Expand Up @@ -16297,7 +16297,9 @@ VISH.Events = function(V, $, undefined) {
var fsParams = V.FullScreen.getFSParams();
if(typeof fsParams.currentFSElement == "undefined") {
if(typeof fsParams.lastFSElement != "undefined" && (fsParams.lastFSElement != document.documentElement && new Date - fsParams.lastFSTimestamp < 1E3)) {
return
if($("body").is(":-webkit-full-screen-ancestor")) {
return
}
}
}else {
if(typeof fsParams.currentFSElement != "undefined" && fsParams.currentFSElement != document.documentElement) {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion lib/plugins/vish_editor/app/assets/javascripts/vishViewer.js
Expand Up @@ -15931,7 +15931,9 @@ VISH.Events = function(V, $, undefined) {
var fsParams = V.FullScreen.getFSParams();
if(typeof fsParams.currentFSElement == "undefined") {
if(typeof fsParams.lastFSElement != "undefined" && (fsParams.lastFSElement != document.documentElement && new Date - fsParams.lastFSTimestamp < 1E3)) {
return
if($("body").is(":-webkit-full-screen-ancestor")) {
return
}
}
}else {
if(typeof fsParams.currentFSElement != "undefined" && fsParams.currentFSElement != document.documentElement) {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c4f2f5a

Please sign in to comment.