summaryrefslogtreecommitdiff
path: root/lib/scripts
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2014-12-11 20:51:55 +0100
committerAndreas Gohr <andi@splitbrain.org>2014-12-11 20:51:55 +0100
commit6fa4721ac57074f958b12cf2cf28a489f24e89e1 (patch)
tree4e64e59974dfd3b73e0dfd961c642cd3c7c17658 /lib/scripts
parent4063422b2ff7e6a9d56d7335cfdd2a8c87f49132 (diff)
downloadrpg-6fa4721ac57074f958b12cf2cf28a489f24e89e1.tar.gz
rpg-6fa4721ac57074f958b12cf2cf28a489f24e89e1.tar.bz2
add new behaviour: bounce
Add the class .bounce to any element to let it bounce slightly for 2 seconds. This is useful to make the user aware of some element. Can be combined with #scroll__here when a long list auto scrolls to a certain item.
Diffstat (limited to 'lib/scripts')
-rw-r--r--lib/scripts/behaviour.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/scripts/behaviour.js b/lib/scripts/behaviour.js
index 9a2cbaf13..fb61f6e48 100644
--- a/lib/scripts/behaviour.js
+++ b/lib/scripts/behaviour.js
@@ -56,6 +56,8 @@ var dw_behaviour = {
jQuery(document).on('click','#page__revisions input[type=checkbox]',
dw_behaviour.revisionBoxHandler
);
+
+ jQuery('.bounce').effect('bounce', {times:10}, 2000 );
},
/**