From e19d04bfd23b7ae73c81c4a4c6083d9d14f64965 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 10 Dec 2016 21:00:53 +0300 Subject: [PATCH] minor tweaking... Signed-off-by: Alex A. Naanou --- ui (gen4)/features/ui-chrome.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ui (gen4)/features/ui-chrome.js b/ui (gen4)/features/ui-chrome.js index 59e1c74d..6c2345c0 100755 --- a/ui (gen4)/features/ui-chrome.js +++ b/ui (gen4)/features/ui-chrome.js @@ -398,16 +398,19 @@ module.CurrentImageIndicator = core.ImageGridFeatures.Feature({ }, this.config['current-image-indicator-restore-delay'] || 500) }], - // single image view... + // single image view -- fade in indicator after exit... ['toggleSingleImage', function(){ if(this.toggleSingleImage('?') == 'off'){ var m = this.ribbons.viewer.find('.current-marker') - this.ribbons.preventTransitions(m) + m.hide() this.updateCurrentImageIndicator() - this.ribbons.restoreTransitions(m) + m + .delay(150) + .fadeIn(200, function(){ + m.css({display: ''})}) } }], ],