Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorWilliam Desportes <williamdes@wdes.fr>2019-09-08 14:36:02 +0300
committerWilliam Desportes <williamdes@wdes.fr>2019-09-08 14:49:25 +0300
commit631de237a3ab6e440fb6ce546240ec8670a93741 (patch)
tree66f0527d8a42c2358408f7168c8bd494acc4fae2 /js
parentbaada9571fa70f174edf50e98f53702d12a7d92b (diff)
Fix designer exit full screen mode icon and text back to enter mode
Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to 'js')
-rw-r--r--js/designer/move.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/js/designer/move.js b/js/designer/move.js
index 86acc044f3..97e8f11da6 100644
--- a/js/designer/move.js
+++ b/js/designer/move.js
@@ -543,6 +543,9 @@ function Toggle_fullscreen () {
value_sent = 'on';
$content.fullScreen(true);
} else {
+ $img.attr('src', $img.data('enter'))
+ .attr('title', $span.data('enter'));
+ $span.text($span.data('enter'));
$content.fullScreen(false);
value_sent = 'off';
}