From 18ed665ae6248c7f8d57a487fc1f1bb5c7fad5fd Mon Sep 17 00:00:00 2001 From: Eduardo Lundgren Date: Tue, 27 May 2008 02:23:57 +0000 Subject: [PATCH] console.log handy function fixed --- ui/tests/jquery.useraction.js | 1 + ui/tests/resizable.html | 3 +-- 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 + '
'); + $('#log').append(l + '
'); } };