Changeset 726
- Timestamp:
- 09/20/08 06:49:13 (18 months ago)
- Files:
-
- 1 modified
-
trunk/ui/ui.core.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ui/ui.core.js
r716 r726 14 14 var _remove = $.fn.remove; 15 15 $.fn.remove = function() { 16 $("*", this).add(this).triggerHandler("remove"); 16 // TODO: add comment about why we can't use .trigger() 17 $("*", this).add(this).each(function() { 18 $(this).triggerHandler("remove"); 19 }); 17 20 return _remove.apply(this, arguments ); 18 21 };