summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-17 06:36:54 +0100
committerAndrew Dolgov <[email protected]>2008-05-17 06:36:54 +0100
commit86deaa0eb982d8b7173df12b084e45c0e26ee391 (patch)
tree566d8f371b4adecf9611bff0f938edbe32623be5 /tt-rss.js
parent2a8534a008e1109fca868ab9afc15c0a5a1d85c0 (diff)
add fade-in to shortcut help overlay
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/tt-rss.js b/tt-rss.js
index f6d603275..dd148b3d0 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -530,7 +530,8 @@ function quickMenuGo(opid) {
}
if (opid == "qmcHKhelp") {
- Element.show("hotkey_help_overlay");
+ //Element.show("hotkey_help_overlay");
+ Effect.Appear("hotkey_help_overlay", {duration : 0.3});
}
} catch (e) {
@@ -973,7 +974,8 @@ function hotkey_handler(e) {
if (keycode == 191 && shift_key) { // ?
if (!Element.visible("hotkey_help_overlay")) {
- Element.show("hotkey_help_overlay");
+ //Element.show("hotkey_help_overlay");
+ Effect.Appear("hotkey_help_overlay", {duration : 0.3});
} else {
Element.hide("hotkey_help_overlay");
}