Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Docs: Replace `#NUMBER` Trac issue references with `trac-NUMBER` | Michał Gołębiowski-Owczarek | 2022-01-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | The GitHub UI treats `#NUMBER` as referring to its own issues which is confusing when in jQuery source it's usually referring to the old deprecated Trac instance at https://bugs.jquery.com. This change replaces all such Trac references with `trac-NUMBER`. A few of the references came with the Sizzle integration and referred to the Sizzle GitHub bug tracker. Those have been replaced with full links instead. A new entry describing issue reference conventions has been added to README. Closes gh-4993 | ||||
* | Core: Migrate from AMD to ES modules 🎉 | Michał Gołębiowski-Owczarek | 2019-11-18 | 1 | -11/+6 |
| | | | | | | | | | | | | | | | | | | | | | | Migrate all source AMD modules to ECMAScript modules. The final bundle is compiled by a custom build process that uses Rollup under the hood. Test files themselves are still loaded via RequireJS as that has to work in IE 11. Tests can now be run in "Load as modules" mode which replaces the previous "Load with AMD" option. That option of running tests doesn't work in IE and Edge as it requires support for dynamic imports. Some of the changes required by the migration: * check `typeof` of `noGlobal` instead of using the variable directly as it's not available when modules are used * change the nonce module to be an object as ECMASscript module exports are immutable * remove some unused exports * import `./core/parseHTML.js` directly in `jquery.js` so that it's not being cut out when the `ajax` module is excluded in a custom compilation Closes gh-4541 | ||||
* | Core: Drop support for IE <11, iOS <11, Firefox <65, Android Browser & PhantomJS | Michał Gołębiowski-Owczarek | 2019-04-29 | 1 | -1/+1 |
| | | | | | | | | | | | Also, update support comments format to match format described in: https://github.com/jquery/contribute.jquery.org/issues/95#issuecomment-69379197 with the change from: https://github.com/jquery/contribute.jquery.org/issues/95#issuecomment-448998379 (open-ended ranges end with `+`). Fixes gh-3950 Fixes gh-4299 Closes gh-4347 | ||||
* | Core: make camelCase function available only for internal usage | Nilton Cesar | 2018-01-08 | 1 | -2/+3 |
| | | | | | Close gh-3604 Fixes gh-3384 | ||||
* | Build: Update eslint config and fix associated errors | Oleg Gaidarenko | 2016-07-15 | 1 | -8/+26 |
| | |||||
* | Build: Put all AMD modules in "src/" in strict mode | Michał Gołębiowski | 2016-04-25 | 1 | -0/+2 |
| | | | | Fixes gh-3073 | ||||
* | Docs: Update support comments related to IE | Michał Gołębiowski | 2016-03-30 | 1 | -1/+1 |
| | | | | All support comments were checked for Edge applicability. | ||||
* | Core: Deprecate jQuery.parseJSON | Michał Gołębiowski | 2016-03-02 | 1 | -1/+1 |
| | | | | | Fixes gh-2800 Closes gh-2948 | ||||
* | Build: Update jscs and lint files | Oleg Gaidarenko | 2015-09-07 | 1 | -13/+14 |
| | | | | Fixes gh-2056 | ||||
* | Data: always camelCase keys in .data() | Timmy Willison | 2015-05-04 | 1 | -27/+7 |
| | | | | | | | - This effectively implements our "Embrace HTML5" option - Related: http://goo.gl/GcQAtn Fixes gh-2257 | ||||
* | Core: Standardize indexOf comparisons | Richard Gibson | 2015-01-10 | 1 | -1/+1 |
| | | | | | | | | not present: `< 0` present: `> -1` at index: `=== N` Closes gh-1984 | ||||
* | Data: shave off a couple of bytes | Mike Sidorov | 2014-12-24 | 1 | -4/+3 |
| | | | | Closes gh-1931 | ||||
* | Data: speed up $.fn.data() for camel-cased key | Victor Homyakov | 2014-12-24 | 1 | -2/+3 |
| | | | | | Fixes gh-1941 Closes gh-1952 | ||||
* | Build: update grunt-jscs-checker and pass with the new rules | Timmy Willison | 2014-07-17 | 1 | -21/+21 |
| | |||||
* | Support: clean up comments and Support notation | Dave Methvin | 2014-06-10 | 1 | -11/+10 |
| | | | | Closes gh-1577 | ||||
* | Data: Work around IE11 bug with onpageshow attribute | Dave Methvin | 2014-04-30 | 1 | -4/+8 |
| | | | | Fixes #14894 | ||||
* | Fix #14101: $().data() should be undefined, not null | Corey Frang | 2013-11-06 | 1 | -2/+1 |
| | |||||
* | Fix #14459: Use jQuery.parseJSON instead of JSON.parse | Richard Gibson | 2013-10-28 | 1 | -1/+1 |
| | |||||
* | Ref 2263134b: Better identify potential JSON. Close gh-1401. | Ronny Springer | 2013-10-16 | 1 | -1/+1 |
| | |||||
* | No ticket: Compress core and data modules | Richard Gibson | 2013-09-28 | 1 | -6/+6 |
| | | | | | | | | | (cherry picked from commit b31bd4c05d87660352a3f7d3081146e332440d99) Conflicts: src/core.js src/data.js | ||||
* | Apply consistent ordering in all modules. -38 bytes. Order modules like ↵ | Timmy Willison | 2013-09-09 | 1 | -29/+29 |
| | | | | functions > jQuery.extend > jQuery.fn.extend. | ||||
* | Break jQuery.access out into its own module to separate it from core; Adjust ↵ | Timmy Willison | 2013-09-09 | 1 | -2/+3 |
| | | | | CommonJS+AMD build support to include non-var dependencies. Convert modules with more than a few dependencies to use CJS+AMD syntax. | ||||
* | Always return jQuery in modules that can be included separately | Timmy Willison | 2013-09-08 | 1 | -0/+1 |
| | |||||
* | AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163. | Timmy Willison | 2013-08-15 | 1 | -192/+10 |
| | |||||
* | Fixes #14047 jQuery.data should not miss data-* w/ hyphenated property names | Rick Waldron | 2013-06-24 | 1 | -1/+6 |
| | | | | | http://bugs.jquery.com/ticket/14047 Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | Optimize cleanData: allow direct access to data_priv for cleanup | Rick Waldron | 2013-05-13 | 1 | -1/+3 |
| | |||||
* | Use String.slice instead of String.substring in order to save a three bytes. ↵ | Jason Bedard | 2013-05-08 | 1 | -1/+1 |
| | | | | Close gh-1261. | ||||
* | Fixes #13850. Better removal of hyphenated data property names. | Rick Waldron | 2013-05-02 | 1 | -3/+4 |
| | | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | Fixes #13815: Ensure each element has its own private data object - Tests by ↵ | Corey Frang | 2013-04-24 | 1 | -6/+3 |
| | | | | @rwldrn | ||||
* | Update jshintrc to conform to new style guide. Conform to onevar and unused ↵ | Timmy Willison | 2013-04-09 | 1 | -6/+6 |
| | | | | in tests. Fixes #13755. | ||||
* | Add note about deprecation of _removeData and _data | Rick Waldron | 2013-04-08 | 1 | -7/+2 |
| | | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | Move Data.prototype.accept => Data.accepts | Rick Waldron | 2013-04-08 | 1 | -10/+18 |
| | | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | No ticket. Use data_priv methods instead of jQuery._removeData and ↵ | Oleg Gaidarenko | 2013-04-08 | 1 | -9/+0 |
| | | | | jQuery._data; Remove needless, internal second argument of jQuery.cleanData. Closes gh-1234 | ||||
* | No ticket. Simplifies data methods and updates comments. Closes gh-1233 | Oleg Gaidarenko | 2013-04-08 | 1 | -17/+15 |
| | |||||
* | Fixes #8335. Do not allow add data to non-elements (2.x). Closes gh-1232 | Oleg Gaidarenko | 2013-04-08 | 1 | -6/+20 |
| | |||||
* | Better approach the hasData side effects fix. Thanks gibson042 | Rick Waldron | 2013-04-01 | 1 | -8/+2 |
| | | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | Avoid side-effects when calling jQuery.hasData | Rick Waldron | 2013-04-01 | 1 | -2/+8 |
| | | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | No ticket: Move property descriptor assignment to save a byte. Close gh-1188. | stonelee | 2013-03-14 | 1 | -1/+1 |
| | |||||
* | Fixes #13551. Guard against illegal data access by undefined elem-owner | Rick Waldron | 2013-03-03 | 1 | -4/+7 |
| | | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | Simplify data-* attr lookup with camelKey | Rick Waldron | 2013-03-02 | 1 | -4/+3 |
| | | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | Fixes #13550. .data should not miss attr() set data-* with hyphenated ↵ | Michał Gołębiowski | 2013-03-02 | 1 | -3/+4 |
| | | | | property names. Closes gh-1189 | ||||
* | Remove dup camelKey path | Rick Waldron | 2013-03-01 | 1 | -8/+0 |
| | | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | Fixes #13548. .data should not miss attr() set data-* with hyphenated ↵ | Rick Waldron | 2013-03-01 | 1 | -0/+8 |
| | | | | property names | ||||
* | No ticket: Squeeze data | Richard Gibson | 2013-02-26 | 1 | -47/+35 |
| | |||||
* | Fix #13494: Fallback defineProperties to jQuery.extend. Close gh-1182. | Richard Gibson | 2013-02-26 | 1 | -36/+28 |
| | | | | Android<4 (ancient WebKit) doesn't have full ES5 support. | ||||
* | No ticket: move jQuery.expando to core | Richard Gibson | 2013-02-25 | 1 | -4/+0 |
| | |||||
* | Refactor: Data.prototype.access. Thanks to @RubyLouvre and @gibson042. ↵ | Rick Waldron | 2013-02-13 | 1 | -16/+25 |
| | | | | Closes #1167 | ||||
* | Optimized Data rewrite | Rick Waldron | 2013-02-11 | 1 | -60/+92 |
| | |||||
* | Ref fd43865c: restore correct logic | Richard Gibson | 2013-02-04 | 1 | -1/+1 |
| | |||||
* | Match the codebase standard, .split(" ") => .match( core_rnotwhite ) || ↵ | Rick Waldron | 2013-02-03 | 1 | -2/+3 |
| | | | | | | []… no matter how awful it is >:| Signed-off-by: Rick Waldron <waldron.rick@gmail.com> |