diff options
author | gnarf <gnarf@gnarf.net> | 2011-05-04 23:40:16 -0500 |
---|---|---|
committer | gnarf <gnarf@gnarf.net> | 2011-05-04 23:41:42 -0500 |
commit | d4bdd19429b82acebf37772669b796cc84e1674a (patch) | |
tree | b649e12120ca154480b78c24c678bf0c70cfc0d0 | |
parent | c73e40adbec6d3240e92b125e55eae38532ed359 (diff) | |
download | jquery-ui-d4bdd19429b82acebf37772669b796cc84e1674a.tar.gz jquery-ui-d4bdd19429b82acebf37772669b796cc84e1674a.zip |
effects.test: adding a test for size using toggle
-rw-r--r-- | tests/visual/effects.all.html | 8 | ||||
-rw-r--r-- | tests/visual/effects.all.js | 21 |
2 files changed, 22 insertions, 7 deletions
diff --git a/tests/visual/effects.all.html b/tests/visual/effects.all.html index 5c2c418ae..fed35de8a 100644 --- a/tests/visual/effects.all.html +++ b/tests/visual/effects.all.html @@ -147,7 +147,13 @@ <li> <div class="effect" id="size"> - <p>Size</p> + <p>Size Default Show/Hide</p> + </div> + </li> + + <li> + <div class="effect" id="sizeToggle"> + <p>Size Toggle</p> </div> </li> diff --git a/tests/visual/effects.all.js b/tests/visual/effects.all.js index 1c9c71efd..17e2c6448 100644 --- a/tests/visual/effects.all.js +++ b/tests/visual/effects.all.js @@ -28,10 +28,10 @@ $(function() { var el = $(this); el.addClass("current").hide(duration, function() { setTimeout(function() { - el.show(duration, function() { el.removeClass("current") }); + el.show(duration, function() { el.removeClass("current"); }); }, wait); - }) - }) + }); + }); effect("#blindLeft", "blind", { direction: "left" }); effect("#blindUp", "blind", { direction: "up" }); @@ -61,7 +61,16 @@ $(function() { effect("#puff", "puff", { times: 2 }); effect("#scale", "scale", {}); - effect("#size", "size", { from: { width: 300, height: 300 }}); + effect("#size", "size", {}); + $("#sizeToggle").bind("click", function() { + var opts = { to: { width: 300, height: 300 }}; + $(this).addClass('current') + .toggle("size", opts, duration) + .delay(wait) + .toggle("size", opts, duration, function() { + $(this).removeClass("current"); + }); + }); $("#shake").bind("click", function() { $(this).addClass("current").effect("shake", {}, 100, function() { $(this).removeClass("current"); }); }); @@ -83,13 +92,13 @@ $(function() { $("#removeClass").click(function() { $(this).addClass("current").removeClass(function() { window.console && console.log(arguments); - return "current" + return "current"; }, duration); }); $("#toggleClass").click(function() { $(this).toggleClass(function() { window.console && console.log(arguments); - return "current" + return "current"; }, duration); }); }); |