aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.js
Commit message (Collapse)AuthorAgeFilesLines
* No ticket: Move property descriptor assignment to save a byte. Close gh-1188.stonelee2013-03-141-1/+1
|
* Fixes #13551. Guard against illegal data access by undefined elem-ownerRick Waldron2013-03-031-4/+7
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Simplify data-* attr lookup with camelKeyRick Waldron2013-03-021-4/+3
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Fixes #13550. .data should not miss attr() set data-* with hyphenated ↵Michał Gołębiowski2013-03-021-3/+4
| | | | property names. Closes gh-1189
* Remove dup camelKey pathRick Waldron2013-03-011-8/+0
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Fixes #13548. .data should not miss attr() set data-* with hyphenated ↵Rick Waldron2013-03-011-0/+8
| | | | property names
* No ticket: Squeeze dataRichard Gibson2013-02-261-47/+35
|
* Fix #13494: Fallback defineProperties to jQuery.extend. Close gh-1182.Richard Gibson2013-02-261-36/+28
| | | | Android<4 (ancient WebKit) doesn't have full ES5 support.
* No ticket: move jQuery.expando to coreRichard Gibson2013-02-251-4/+0
|
* Refactor: Data.prototype.access. Thanks to @RubyLouvre and @gibson042. ↵Rick Waldron2013-02-131-16/+25
| | | | Closes #1167
* Optimized Data rewriteRick Waldron2013-02-111-60/+92
|
* Ref fd43865c: restore correct logicRichard Gibson2013-02-041-1/+1
|
* Match the codebase standard, .split(" ") => .match( core_rnotwhite ) || ↵Rick Waldron2013-02-031-2/+3
| | | | | | []… no matter how awful it is >:| Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Standardize on a.indexOf(b) === -1, per @gibson042 review notesRick Waldron2013-02-031-1/+1
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Reduce hasData per @gibson042 review notes.Rick Waldron2013-02-031-4/+1
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Reduce Data.prototype.add by using the returned length value of ↵Rick Waldron2013-02-031-2/+1
| | | | | | this.owners.push(owner) Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* 2.0: Rewrite data.js (Incl. event, manipulation, tests)Rick Waldron2013-02-031-227/+214
|
* Minor updates. All parameters of an internal function are for internal use only.Timmy Willison2013-01-301-12/+12
|
* Fix jQuery #13251: use slice instead of substringRichard Gibson2013-01-171-1/+1
| | | | (cherry picked from commit 37eb6125c0fb0bec4e0d043bc78110b4f49f3aa6)
* Fix #8335: Avoid memory leak by never setting data on non-element ↵danilsomsikov2013-01-161-0/+5
| | | | non-document nodes. Close gh-1127.
* Revert data.js rewrite.Dave Methvin2013-01-031-193/+220
| | | | | | | | | | | | | | | | | | | | | | Reverts the following commits: commit f717226b3a44f918eec30b2d59ab257270189bc3 Author: Rick Waldron <waldron.rick@gmail.com> Date: Mon Dec 31 18:06:38 2012 -0500 Only splice from internal arrays when item actually exists. commit b9cdc4136b688963d1dc4befb169be02a0216ba9 Author: Rick Waldron <waldron.rick@gmail.com> Date: Mon Dec 31 16:20:35 2012 -0500 Updates to data.js re-write to pass events and manipulation commit d1de3000c6d50c298de14fb1ae3381d75c303723 Author: Rick Waldron <waldron.rick@gmail.com> Date: Mon Dec 31 15:09:45 2012 -0500 2.0: Rewrite data.js
* Only splice from internal arrays when item actually exists.Rick Waldron2012-12-311-2/+5
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Updates to data.js re-write to pass events and manipulation (full pass in ↵Rick Waldron2012-12-311-8/+9
| | | | | | local test runs) Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* 2.0: Rewrite data.jsRick Waldron2012-12-311-220/+189
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Fix #12959: Optimize library-wide patternsRichard Gibson2012-11-271-1/+1
|
* Restore jQuery.access parameter mistakenly removed in 80d45a69Richard Gibson2012-11-061-1/+1
|
* Fix #10544. Remove deprecated .data() event namespaced triggering.Dave Methvin2012-10-311-23/+5
| | | | Data events were horribly slow, never documented, and caused strange interpretation of data items with dots in them.
* Brute force property removal when removeData([a,b,c]). Fixes #12786Rick Waldron2012-10-241-0/+8
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Remove deprecated $.uuid and dunseled $.deletedIds.Dave Methvin2012-10-201-5/+0
|
* Don't expose jQuery.deletedIds. Close gh-889.Rick Waldron2012-10-201-1/+1
|
* Create private methods for processing data/removeData requests. Fixes ↵carldanley2012-10-161-152/+164
| | | | #12519, Closes gh-976
* Fix #12229, size/consistency improvements. Close gh-887.Richard Gibson2012-09-181-3/+3
|
* Fix #10863. Allow newlines in JSON data- attributes.Dave Methvin2012-08-231-1/+1
|
* Fix #7579. Don't convert to number if it changes the string. Close gh-852.Dave Methvin2012-07-251-2/+3
| | | | Net effect here is that hex numbers and most exponential-format numbers or long sequences of digits will remain strings rather than being coerced to numbers. `The people have spoken.
* Follow the style guide, lose 72 bytes! Closes gh-840.Mike Sherov2012-07-091-1/+2
|
* DRY out removeData/cleanData, closes gh-838.Richard Gibson2012-07-061-38/+14
|
* Fix #10589. Remove deprecated $.fn.data("events") special case.Dave Methvin2012-06-111-11/+4
| | | | No unit tests were harmed in the removal of this hack.
* Strips IIFEs from modules; Always require built jQuery for tests.Rick Waldron2012-06-041-4/+0
|
* Fix #8545. Plug event handling memory leak in oldIE.Oleg2012-04-041-1/+5
|
* Fix #11309. Recognize hexadecimal in data attributes.Sindre Sorhus2012-02-091-1/+1
|
* Precompute the parts array; clean up a JSLint complaint.Dave Methvin2011-12-061-3/+4
| | | | Followup to 6c2a501de40a5f6b3ad382e2d309e5a10fce04d0 for bug #5571.
* Fix #5571. Setters should treat `undefined` as a no-op and be chainable.Richard Gibson2011-12-061-28/+35
|
* It seems the convention is to use `self` for caching `jQuery ( this )` ↵Justin2011-11-061-3/+3
| | | | instead of using `$this`.
* Removing a stale line of code in `.data()`Corey Frang2011-11-061-10/+12
|
* User internalKey instead of jQuery.expando. Fixes #10675Rick Waldron2011-11-061-7/+7
|
* Make sure `.data("events")` still works, for now.Dave Methvin2011-10-261-7/+8
|
* Fix #10588. For now, event voyeurism only merits the look of disapproval.Dave Methvin2011-10-261-3/+2
| | | | If you are using `.data("events")` we would like to know how we can provide a documented interface that satisfies the need.
* Fix #10478. Replace jQuery.isNaN with jQuery.isNumeric.Dave Methvin2011-10-111-1/+1
| | | | Thanks to Christian C. Salvadó for the unit tests!
* Landing pull request 512. 1.7 - removeData now takes space separated lists ↵Corey Frang2011-09-191-4/+17
| | | | | | | | and arrays of keys - Fixes #7323. More Details: - https://github.com/jquery/jquery/pull/512 - http://bugs.jquery.com/ticket/7323
* Landing pull request 503. 1.7 data: set a flag in the private data cache to ↵Corey Frang2011-09-191-4/+6
| | | | | | | | avoid having to scan attributes multiple times - Fixes #8909. More Details: - https://github.com/jquery/jquery/pull/503 - http://bugs.jquery.com/ticket/8909