aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2010-01-19 13:53:32 +0000
committerScott González <scott.gonzalez@gmail.com>2010-01-19 13:53:32 +0000
commitebf5160587ec2689a97018bc0c24082a3e84c02e (patch)
tree435478d5544b1e304e6893a1c7d3c03989adf0aa
parentc476541251f1b232ab9ac274b99a96c2b0848b6b (diff)
downloadjquery-ui-ebf5160587ec2689a97018bc0c24082a3e84c02e.tar.gz
jquery-ui-ebf5160587ec2689a97018bc0c24082a3e84c02e.zip
Widget: removed console.log call.
-rw-r--r--ui/jquery.ui.widget.js3
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();
});