-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ui.widget: Improves Performance of cleanData-Method (Issue #9546) #1291
Conversation
The cleanData-Method triggered "remove" on all elements in the tree. After the fix the remove-handler will only be triggered if it exists. Doing so increases performance significantly. See performance-comparison http://jsfiddle.net/r7buw/17/ Fixes #9546
$( elem ).triggerHandler( "remove" ); | ||
// Only trigger remove when necessary to save time | ||
var events = $._data( elem, "events" ); | ||
if( events !== undefined && events.remove ){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if ( events && events.remove ) {
Thanks. I'll fix the style issues when I merge this. |
You signed the CLA with a different email address than you have in your git config. Which email address do you want to use? |
@@ -27,7 +27,11 @@ $.cleanData = (function( orig ) { | |||
return function( elems ) { | |||
for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { | |||
try { | |||
$( elem ).triggerHandler( "remove" ); | |||
// Only trigger remove when necessary to save time | |||
var events = $._data( elem, "events" ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Multiple var statements aren't allowed, and variables should never be declared inside a loop.
In the future, please make sure to run the tests. |
Sorry about the style-errors. I will have have a look at grunt/jshint.... |
I'll give it another try. |
Don't worry about it. I've got it all fixed locally, about to merge... |
Ok 👍 |
This is a fix for #9546
It increases performance of cleanData as demonstrated here: http://jsfiddle.net/r7buw/17/
(Pull Request meta: second try)