diff options
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/>'); } }; |