From 29f7dc9a2c078495f6a0ed13c531733146528fb4 Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Tue, 18 Nov 2008 02:55:25 +0000 Subject: Removed all trailing whitespace from .js and .html files --- tests/visual/effects.all.html | 46 ++++++++++++++++---------------- tests/visual/effects.all.js | 40 +++++++++++++-------------- tests/visual/sortable_massive_scale.html | 4 +-- tests/visual/spinner.html | 6 ++--- tests/visual/tree.html | 2 +- 5 files changed, 49 insertions(+), 49 deletions(-) (limited to 'tests/visual') diff --git a/tests/visual/effects.all.html b/tests/visual/effects.all.html index d89dbecd8..a2f095c43 100644 --- a/tests/visual/effects.all.html +++ b/tests/visual/effects.all.html @@ -4,10 +4,10 @@ Effects Test Suite - + - + @@ -20,7 +20,7 @@ - + @@ -38,121 +38,121 @@

Blind vertically

- +
  • Bounce 3 times

  • - +
  • Clip horizontally

  • - +
  • Clip vertically

  • - +
  • - +
  • Drop up

  • - +
  • Drop left

  • - +
  • Drop right

  • - +
  • Explode in 9 pieces

  • - +
  • Explode in 36 pieces

  • - +
  • Fold

  • - +
  • Highlight

  • - +
  • Pulsate 2 times

  • - +
  • Puff

  • - +
  • Scale

  • - +
  • Shake

  • - +
  • Slide down

  • - +
  • Slide up

  • - +
  • Slide left

  • - +
  • Slide right

  • - +
  • Transfer to first element

    diff --git a/tests/visual/effects.all.js b/tests/visual/effects.all.js index b52b23726..f383199c2 100644 --- a/tests/visual/effects.all.js +++ b/tests/visual/effects.all.js @@ -1,5 +1,5 @@ $(document).ready(function() { - + $("div.effect") .hover(function() { $(this).addClass("hover"); @@ -7,16 +7,16 @@ $(document).ready(function() { $(this).removeClass("hover"); }) ; - - + + var effect = function(el, n, o) { - + $.extend(o, { easing: "easeOutQuint" }); - + $(el).bind("click", function() { - + $(this).addClass("current").hide(n, o, 1000, function() { var self = this; window.setTimeout(function() { @@ -24,42 +24,42 @@ $(document).ready(function() { },500); }); }); - + }; - + effect("#blindHorizontally", "blind", { direction: "horizontal" }); effect("#blindVertically", "blind", { direction: "vertical" }); - + effect("#bounce3times", "bounce", { times: 3 }); - + effect("#clipHorizontally", "clip", { direction: "horizontal" }); effect("#clipVertically", "clip", { direction: "vertical" }); - + effect("#dropDown", "drop", { direction: "down" }); effect("#dropUp", "drop", { direction: "up" }); effect("#dropLeft", "drop", { direction: "left" }); effect("#dropRight", "drop", { direction: "right" }); - + effect("#explode9", "explode", { }); effect("#explode36", "explode", { pieces: 36 }); - + effect("#fold", "fold", { size: 50 }); - + effect("#highlight", "highlight", { }); - + effect("#pulsate", "pulsate", { times: 2 }); - + effect("#puff", "puff", { times: 2 }); effect("#scale", "scale", { }); - + $("#shake").bind("click", function() { $(this).addClass("current").effect("shake", {}, 100, function() { $(this).removeClass("current"); }); }); - + effect("#slideDown", "slide", { direction: "down" }); effect("#slideUp", "slide", { direction: "up" }); effect("#slideLeft", "slide", { direction: "left" }); effect("#slideRight", "slide", { direction: "right" }); - + $("#transfer").bind("click", function() { $(this).addClass("current").effect("transfer", { to: "div:eq(0)" }, 1000, function() { $(this).removeClass("current"); }); }); - + }); \ No newline at end of file diff --git a/tests/visual/sortable_massive_scale.html b/tests/visual/sortable_massive_scale.html index 591341ad2..a21485415 100644 --- a/tests/visual/sortable_massive_scale.html +++ b/tests/visual/sortable_massive_scale.html @@ -6,11 +6,11 @@ - + -- cgit v1.2.3