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 );
var self = this;
this.element.bind( "remove." + this.widgetName, function(event) {
console.log('remove', event);
this.element.bind( "remove." + this.widgetName, function() {
self.destroy();
});