aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/effects.all.js
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-13 09:53:02 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-13 09:53:02 +0000
commitd3e1901e1509f8bdf2ffe1f6c4c51e695a5bd089 (patch)
tree14a6b1e326569e8f7e5a971e016e87b5f32d0c50 /tests/visual/effects.all.js
parent73dec6965b94f666e3dfd5ecaad46a3740929d16 (diff)
downloadjquery-ui-d3e1901e1509f8bdf2ffe1f6c4c51e695a5bd089.tar.gz
jquery-ui-d3e1901e1509f8bdf2ffe1f6c4c51e695a5bd089.zip
tests/visual: started switching to themes/base. Lots of little cleanup.
Diffstat (limited to 'tests/visual/effects.all.js')
-rw-r--r--tests/visual/effects.all.js21
1 files changed, 8 insertions, 13 deletions
diff --git a/tests/visual/effects.all.js b/tests/visual/effects.all.js
index f383199c2..15386b5d8 100644
--- a/tests/visual/effects.all.js
+++ b/tests/visual/effects.all.js
@@ -1,13 +1,9 @@
-$(document).ready(function() {
- $("div.effect")
- .hover(function() {
- $(this).addClass("hover");
- }, function() {
- $(this).removeClass("hover");
- })
- ;
+$(function() {
+ $("div.effect")
+ .hover(function() { $(this).addClass("hover"); },
+ function() { $(this).removeClass("hover"); });
var effect = function(el, n, o) {
@@ -27,7 +23,6 @@ $(document).ready(function() {
};
-
effect("#blindHorizontally", "blind", { direction: "horizontal" });
effect("#blindVertically", "blind", { direction: "vertical" });
@@ -41,17 +36,17 @@ $(document).ready(function() {
effect("#dropLeft", "drop", { direction: "left" });
effect("#dropRight", "drop", { direction: "right" });
- effect("#explode9", "explode", { });
+ effect("#explode9", "explode", {});
effect("#explode36", "explode", { pieces: 36 });
effect("#fold", "fold", { size: 50 });
- effect("#highlight", "highlight", { });
+ effect("#highlight", "highlight", {});
effect("#pulsate", "pulsate", { times: 2 });
effect("#puff", "puff", { times: 2 });
- effect("#scale", "scale", { });
+ effect("#scale", "scale", {});
$("#shake").bind("click", function() { $(this).addClass("current").effect("shake", {}, 100, function() { $(this).removeClass("current"); }); });
@@ -62,4 +57,4 @@ $(document).ready(function() {
$("#transfer").bind("click", function() { $(this).addClass("current").effect("transfer", { to: "div:eq(0)" }, 1000, function() { $(this).removeClass("current"); }); });
-}); \ No newline at end of file
+});