jQuery UI implement destroy method. I don't understand purpose of using $.noop called with this_.destroy()
at the beginning of method:
destroy: function() {
this._destroy();
//other code here...
{...}
},
_destroy: $.noop,
Could someone explain it?