Widget: removed console.log call.

This commit is contained in:
Scott González 2010-01-19 13:53:32 +00:00
parent c476541251
commit ebf5160587

View File

@ -132,8 +132,7 @@ $.Widget.prototype = {
options ); options );
var self = this; var self = this;
this.element.bind( "remove." + this.widgetName, function(event) { this.element.bind( "remove." + this.widgetName, function() {
console.log('remove', event);
self.destroy(); self.destroy();
}); });