diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-01-19 13:53:32 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-01-19 13:53:32 +0000 |
commit | ebf5160587ec2689a97018bc0c24082a3e84c02e (patch) | |
tree | 435478d5544b1e304e6893a1c7d3c03989adf0aa | |
parent | c476541251f1b232ab9ac274b99a96c2b0848b6b (diff) | |
download | jquery-ui-ebf5160587ec2689a97018bc0c24082a3e84c02e.tar.gz jquery-ui-ebf5160587ec2689a97018bc0c24082a3e84c02e.zip |
Widget: removed console.log call.
-rw-r--r-- | ui/jquery.ui.widget.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js index 976bd9afd..aaf070a9b 100644 --- a/ui/jquery.ui.widget.js +++ b/ui/jquery.ui.widget.js @@ -132,8 +132,7 @@ $.Widget.prototype = { options ); var self = this; - this.element.bind( "remove." + this.widgetName, function(event) { - console.log('remove', event); + this.element.bind( "remove." + this.widgetName, function() { self.destroy(); }); |