diff options
author | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-05-27 02:23:57 +0000 |
---|---|---|
committer | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-05-27 02:23:57 +0000 |
commit | 18ed665ae6248c7f8d57a487fc1f1bb5c7fad5fd (patch) | |
tree | 539fd32b7ca09d440152183e5f5098ef309e49e7 /ui/tests | |
parent | 55176967d0e9be49c88f3c30c259e440c6104621 (diff) | |
download | jquery-ui-18ed665ae6248c7f8d57a487fc1f1bb5c7fad5fd.tar.gz jquery-ui-18ed665ae6248c7f8d57a487fc1f1bb5c7fad5fd.zip |
console.log handy function fixed
Diffstat (limited to 'ui/tests')
-rw-r--r-- | ui/tests/jquery.useraction.js | 1 | ||||
-rw-r--r-- | ui/tests/resizable.html | 3 | ||||
-rw-r--r-- | ui/tests/resizable.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ui/tests/jquery.useraction.js b/ui/tests/jquery.useraction.js index 69f959e82..4ca3387a1 100644 --- a/ui/tests/jquery.useraction.js +++ b/ui/tests/jquery.useraction.js @@ -3,6 +3,7 @@ * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. * * Version: 0.1a + * Date: May, 2008 * Requires jQuery 1.2.x+ * Docs: http://docs.jquery.com/Plugins/userAction */ diff --git a/ui/tests/resizable.html b/ui/tests/resizable.html index b911a0767..ce2c9ce80 100644 --- a/ui/tests/resizable.html +++ b/ui/tests/resizable.html @@ -53,8 +53,7 @@ });*/ $('#key').keydown(function() { - alert('keydown') - //console.log('keydown') + console.log('keydown') }); }); diff --git a/ui/tests/resizable.js b/ui/tests/resizable.js index fe16d1b7b..0ed3e1e9b 100644 --- a/ui/tests/resizable.js +++ b/ui/tests/resizable.js @@ -1,6 +1,6 @@ var console = console || { log: function(l) { - $('log').append(l + '<br/>'); + $('#log').append(l + '<br/>'); } }; |