diff options
author | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-05-31 16:59:50 +0000 |
---|---|---|
committer | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-05-31 16:59:50 +0000 |
commit | b1048f4cbd6d92782f5963b9d310624b34597f32 (patch) | |
tree | d5e774d8faad5f10e844772456eb3fe73b1d68e0 | |
parent | 8a1cba91d8cd3fe064629728ea70291f0c8d3c1f (diff) | |
download | jquery-ui-b1048f4cbd6d92782f5963b9d310624b34597f32.tar.gz jquery-ui-b1048f4cbd6d92782f5963b9d310624b34597f32.zip |
Remove console.log
-rw-r--r-- | ui/tests/resizable.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/ui/tests/resizable.js b/ui/tests/resizable.js index 0955b15c3..d56271b4f 100644 --- a/ui/tests/resizable.js +++ b/ui/tests/resizable.js @@ -1,15 +1,3 @@ -var console = console || { - log: function(l) { - $('#log').append(l + '<br/>').get(0).scrollTop = 10000; - } -}; - -var animateClick = function(co) { - var img = $("<img src='images/click.png' width='1'>").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(); }); -}; - var num = function(i) { return parseInt(i, 10); }; |