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/pmd
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-05-15 08:11:04 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-05-15 08:11:04 +0300
commitd5c1df3cd5639121da254b70d1ff0214f6d6df44 (patch)
treeb86d25f42f36a1b06cdb005ec588f44faaad2473 /js/pmd
parenta66261bbd7d93c9d99db2bf1e1079e4d6d78b461 (diff)
Hide selflink in designer
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/pmd')
-rw-r--r--js/pmd/move.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/js/pmd/move.js b/js/pmd/move.js
index 22d3068f8c..d5ebea8324 100644
--- a/js/pmd/move.js
+++ b/js/pmd/move.js
@@ -17,6 +17,8 @@ AJAX.registerTeardown('pmd/move.js', function () {
if ($.FullScreen.supported) {
$(document).unbind($.FullScreen.prefix + 'fullscreenchange');
}
+
+ $('#selflink').show();
});
AJAX.registerOnload('pmd/move.js', function () {
@@ -36,6 +38,8 @@ AJAX.registerOnload('pmd/move.js', function () {
} else {
$('#toggleFullscreen').hide();
}
+
+ $('#selflink').hide();
});
// Below is the function to bind onbeforeunload events with the content_frame as well as the top window.