From c5a8074b1e5b9a73a2b74e8fc840ce88e16ef347 Mon Sep 17 00:00:00 2001 From: edsilv Date: Fri, 6 Feb 2015 13:58:13 +0000 Subject: [PATCH 1/5] ignore .idea files, added show/hide controls methods --- .gitignore | 1 + src/viewer.js | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index 3ebd08b8..aaaabf8c 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ build/ sftp-config.json coverage/ temp/ +.idea \ No newline at end of file diff --git a/src/viewer.js b/src/viewer.js index 60e64e8a..de7a3d49 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -826,6 +826,13 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, return this; }, + hideControls: function() { + beginControlsAutoHide(this); + }, + + showControls: function() { + abortControlsAutoHide(this); + }, /** * @function From 4d8ab4180867398eeb1a5545f6e1d25bf0096941 Mon Sep 17 00:00:00 2001 From: edsilv Date: Mon, 9 Feb 2015 21:29:17 +0000 Subject: [PATCH 2/5] remove show/hide controls --- src/viewer.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/viewer.js b/src/viewer.js index de7a3d49..200055a2 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -826,14 +826,6 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, return this; }, - hideControls: function() { - beginControlsAutoHide(this); - }, - - showControls: function() { - abortControlsAutoHide(this); - }, - /** * @function * @return {Boolean} From a5394c62f7ef669e259ad6c0129eff381555bec9 Mon Sep 17 00:00:00 2001 From: edsilv Date: Sat, 21 Feb 2015 11:44:04 +0000 Subject: [PATCH 3/5] show/hide controls --- src/viewer.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/viewer.js b/src/viewer.js index 507b2017..42d25244 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -835,6 +835,14 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, return this; }, + hideControls: function() { + beginControlsAutoHide(this); + }, + + showControls: function() { + abortControlsAutoHide(this); + }, + /** * @function * @return {Boolean} From cc18a85591b46aea2ca4daf268862a5641c50dbd Mon Sep 17 00:00:00 2001 From: edsilv Date: Sat, 21 Feb 2015 12:00:21 +0000 Subject: [PATCH 4/5] when reloading, viewerSize is being set to 0, 0. check that x and y have a non-zero value, otherwise results in IE8 error when rounding NaN --- src/navigator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/navigator.js b/src/navigator.js index 23809e9d..9f3923df 100644 --- a/src/navigator.js +++ b/src/navigator.js @@ -282,7 +282,7 @@ $.extend( $.Navigator.prototype, $.EventSource.prototype, $.Viewer.prototype, /* bottomright; viewerSize = $.getElementSize( this.viewer.element ); - if ( this._resizeWithViewer && !viewerSize.equals( this.oldViewerSize ) ) { + if ( this._resizeWithViewer && viewerSize.x && viewerSize.y && !viewerSize.equals( this.oldViewerSize ) ) { this.oldViewerSize = viewerSize; if ( this.maintainSizeRatio || !this.elementArea) { From 89d488bb7ee3e1538b5af73810d176e0c15dc7da Mon Sep 17 00:00:00 2001 From: edsilv Date: Tue, 24 Feb 2015 14:55:46 +0000 Subject: [PATCH 5/5] removed show/hide controls --- src/viewer.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/viewer.js b/src/viewer.js index ecfad29b..f36fe020 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -836,14 +836,6 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype, return this; }, - hideControls: function() { - beginControlsAutoHide(this); - }, - - showControls: function() { - abortControlsAutoHide(this); - }, - /** * @function * @return {Boolean}