aboutsummaryrefslogtreecommitdiffstats
path: root/src/traversing
Commit message (Collapse)AuthorAgeFilesLines
* Build: Update eslint-config-jquery, fix linting violationsMichał Gołębiowski-Owczarek2020-05-182-2/+2
| | | | | Closes gh-4696 Ref jquery/eslint-config-jquery#15 Ref jquery/eslint-config-jquery#16
* Core: Migrate from AMD to ES modules 🎉Michał Gołębiowski-Owczarek2019-11-184-31/+11
| | | | | | | | | | | | | | | | | | | | | | 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-3/+2
| | | | | | | | | | | 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
* Filter: Use direct filter in winnowSaptak Sengupta2018-01-171-12/+2
| | | | | | | for both simple and complex selectors Fixes gh-3272 Closes gh-3910
* Core: deprecate jQuery.isFunctionJason Bedard2018-01-151-2/+3
| | | | Fixes gh-3609
* Traversing: Let .not(arraylike) pass non-element nodesDave Methvin2016-08-101-7/+12
| | | | | Fixes gh-3226 Closes gh-3261
* Build: Update eslint config and fix associated errorsOleg Gaidarenko2016-07-151-5/+7
|
* Build: ESLint detailsOleg Gaidarenko2016-06-111-1/+0
| | | | | | Use eslint pragmas, fix new errors, etc Closes gh-3148
* Build: Put all AMD modules in "src/" in strict modeMichał Gołębiowski2016-04-254-0/+8
| | | | Fixes gh-3073
* Traversing: restore jQuery push behavior in .findTimmy Willison2016-01-201-3/+4
| | | | | Fixes gh-2370 Close gh-2848
* Traversing: .not/.filter consistency with non-elementsMartijn W. van der Lee2016-01-131-1/+1
| | | | | Fixes gh-2808 Close gh-2809
* Traversing: Don't expose jQuery.dir & jQuery.siblingMichał Gołębiowski2015-09-082-0/+35
| | | | | | | | jQuery.dir & jQuery.sibling are undocumented internal APIs; they shouldn't be exposed. Fixes gh-2512 Closes gh-2525
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-072-14/+14
| | | | Fixes gh-2056
* Selector: add jQuery.uniqueSort; deprecate jQuery.uniqueTimmy Willison2015-05-041-1/+1
| | | | Fixes gh-2228
* Core: Remove deprecated context and selector propertiesDave Methvin2015-01-111-4/+1
| | | | | Fixes gh-1908 Closes gh-2000
* Core: Standardize indexOf comparisonsRichard Gibson2015-01-101-1/+1
| | | | | | | | not present: `< 0` present: `> -1` at index: `=== N` Closes gh-1984
* Traversing: Check all pairwise element combinations for .find( els )Richard Gibson2014-01-171-4/+3
| | | | | Ref b8d0d54a3c4960794a1b492957abeb56eddd1e48 Fixes #14701
* Reduce size by reordering variable declarationsChris Antaki2013-12-161-5/+6
| | | | Close gh-1421
* Separate jQuery.fn.init into its own module (for lighter core dependencies ↵Timmy Willison2013-09-092-0/+106
across all modules)