summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-11 17:44:42 +0100
committerAndrew Dolgov <[email protected]>2007-08-11 17:44:42 +0100
commitb1085d24f39f7f77cb817e24dc869bfb81b92db2 (patch)
tree0ebeef31201b2de70a044adb7e336fcd718a1788
parentb9073cd9801cecaa653bfefd7a8ccd7b39b21b76 (diff)
tweak quickAddFeed dialog (effect duration)
-rw-r--r--functions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.js b/functions.js
index 732e73ec8..8a370d6b8 100644
--- a/functions.js
+++ b/functions.js
@@ -1401,9 +1401,9 @@ function appearBlockElement_afh(effect) {
function checkboxToggleElement(elem, id) {
if (elem.checked) {
- Effect.SlideDown(id, {duration : 1.0});
+ Effect.SlideDown(id, {duration : 0.5});
} else {
- Effect.SlideUp(id, {duration : 1.0});
+ Effect.SlideUp(id, {duration : 0.5});
}
}