Opened 12 years ago
Closed 12 years ago
#8401 closed enhancement (fixed)
minor enhancement to opacity cssHooks
Reported by: | lrbabe | Owned by: | jitter |
---|---|---|---|
Priority: | low | Milestone: | 1.6 |
Component: | css | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Why are we doing
var filter = style.filter || ""; style.filter = style.filter + ' ' + opacity;
When we could do
var filter = style.filter || ""; // reuse the 'filter' var style.filter = filter + ' ' + opacity;
Improve jQuery, one DOM access at a time.
The actual code is slightly longer, but the modification is equally tiny, see following push request.
Change History (3)
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
Component: | unfiled → css |
---|---|
Owner: | set to jitter |
Priority: | undecided → low |
Status: | new → assigned |
comment:3 Changed 12 years ago by
Milestone: | 1.next → 1.6 |
---|---|
Resolution: | → fixed |
Status: | assigned → closed |
Landed.
Note: See
TracTickets for help on using
tickets.
Here is the pull request: https://github.com/jquery/jquery/pull/254/files