Skip to content

Commit 8596ab8

Browse files
Update Description.md
1 parent c496a77 commit 8596ab8

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Description.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ The following table gives an overview of studied performance issues and their ro
77
248 | JQuery | Give support for more elements to use innerHtml instead of appendChild in html() function | Inefficient API, Special cases |
88
367 | JQuery |When searching for a given element separate two cases: when element is undefined and when element is string into two conditions, avoid string check when element is undefined | Special cases |
99
590 | JQuery |Use for loop instead Jquery.each | Inefficient iteration |
10+
725 | JQuery |Avoid unnecessary delegation, instead of .css call .style function that is called inside .css | Inefficient API usage |
11+
7587 | JQuery |Prefer window.JSON at first place if available | Other |
12+
295 (commit 1) | JQuery | Not adding arbitrary hooks into hmtl elements| Other |
13+
295 (commit 2) | JQuery | Assign value to variable val only when value is not a function, instead of doing it always. Localize val variable to each block | JIT unfrendly |
14+
200 | JQuery | Abstraction of method that clones the DOM element. This avoids calls to Jquery.find method | Inefficient API usage, Inefficient copying |
15+
4359 | Angular | Use &1 instead of %2 for even odd checking| Other |
1016

1117

1218

0 commit comments

Comments
 (0)