From: Eduardo Lundgren Date: Sat, 31 May 2008 16:33:26 +0000 (+0000) Subject: Make #main test div output hidden X-Git-Tag: 1.5.1~259 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c068874890950a0e2f1b42866eb28faa138cb5df;p=jquery-ui.git Make #main test div output hidden --- diff --git a/ui/tests/resizable.html b/ui/tests/resizable.html index d1de7ccad..9dfc40607 100644 --- a/ui/tests/resizable.html +++ b/ui/tests/resizable.html @@ -15,14 +15,18 @@ - + diff --git a/ui/tests/resizable.js b/ui/tests/resizable.js index 0d066c11a..23f429414 100644 --- a/ui/tests/resizable.js +++ b/ui/tests/resizable.js @@ -6,9 +6,9 @@ var console = console || { var animateClick = function(co) { var img = $("").appendTo("body") - .css({ position: "absolute", zIndex: 1000, left: co.x, top: co.y }) - .animate({ width: 80, height: 80, left: co.x-40, top: co.y-40, opacity: 'hide' }, 1000, function() { $(this).remove(); }); - }; + .css({ position: "absolute", zIndex: 1000, left: co.x, top: co.y }) + .animate({ width: 80, height: 80, left: co.x-40, top: co.y-40, opacity: 'hide' }, 1000, function() { $(this).remove(); }); +}; var num = function(i) { return parseInt(i, 10);