aboutsummaryrefslogtreecommitdiffstats
path: root/src/wrap.js
Commit message (Collapse)AuthorAgeFilesLines
* Core: Migrate from AMD to ES modules 🎉Michał Gołębiowski-Owczarek2019-11-181-9/+5
| | | | | | | | | | | | | | | | | | | | | | 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 & PhantomJSMichał Gołębiowski-Owczarek2019-04-291-5/+4
| | | | | | | | | | | 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: deprecate jQuery.isFunctionJason Bedard2018-01-151-5/+6
| | | | Fixes gh-3609
* Build: Put all AMD modules in "src/" in strict modeMichał Gołębiowski2016-04-251-0/+2
| | | | Fixes gh-3073
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-071-16/+16
| | | | Fixes gh-2056
* Wrap: Support .unwrap( selector) for selective unwrappingDave Methvin2015-03-301-6/+5
| | | | | Fixes gh-1744 Closes gh-2003
* Manipulation: make wrapAll funarg execute only onceOleg Gaidarenko2014-12-241-6/+3
| | | | | Fixes gh-1843 Closes gh-1912
* Wrap: Declare a dependency on the manipulation moduleTJ VanToll2014-06-021-0/+1
| | | | | Fixes #15121 Closes gh-1589
* Separate jQuery.fn.init into its own module (for lighter core dependencies ↵Timmy Willison2013-09-091-0/+1
| | | | across all modules)
* Break jQuery.access out into its own module to separate it from core; Adjust ↵Timmy Willison2013-09-091-0/+1
| | | | 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 separatelyTimmy Willison2013-09-081-0/+2
|
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-0/+5
|
* Fix #13741. Make wrap/unwrap methods optional. Close gh-1222.Dave Methvin2013-04-061-0/+69