mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
console.log handy function fixed
This commit is contained in:
parent
55176967d0
commit
18ed665ae6
@ -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
|
||||
*/
|
||||
|
@ -53,8 +53,7 @@
|
||||
});*/
|
||||
|
||||
$('#key').keydown(function() {
|
||||
alert('keydown')
|
||||
//console.log('keydown')
|
||||
console.log('keydown')
|
||||
});
|
||||
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
var console = console || {
|
||||
log: function(l) {
|
||||
$('log').append(l + '<br/>');
|
||||
$('#log').append(l + '<br/>');
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user