| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
The `default` export is treated differently across tooling when transpiled
to CommonJS - tools differ on whether `module.exports` represents the full
module object or just its default export. Switch `src/` modules to named
exports for tooling consistency.
Fixes gh-5262
Closes gh-5292
|
|
|
|
|
|
| |
The API has been deprecated in 3.5.0 so it can be removed in 4.0.0.
Ref gh-4461
Closes gh-4695
|
|
|
|
|
|
|
|
| |
A new `src/deprecated` directory makes it possible to exclude some deprecated
APIs from a custom build when their respective "parent" module is excluded
without keeping that module outside of the `src/deprecated` directory or
the `src/deprecated.js` file.
Closes gh-4572
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Ref gh-4461
|
|
|
|
|
| |
Fixes gh-4363
Closes gh-4461
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit requires all function parameters to be used, not just the last one.
In cases where that's not possible as we need to match an external API, there's
an escape hatch of prefixing an unused argument with `_`.
This change makes it easier to catch unused AMD dependencies and unused
parameters in internal functions the API of which we may change at will, among
other things.
Unused AMD dependencies have been removed as part of this commit.
Closes gh-4381
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Fixes gh-4056
Closes gh-4364
|
|
|
|
|
|
|
|
| |
The camelCase implementation used by the data module no longer turns `-ms-foo`
into `msFoo` but to `MsFoo` now. This is because `data` is supposed to be
a generic utility not specifically bound to CSS use cases.
Fixes gh-3355
Closes gh-4365
|
|
|
|
|
| |
Fixes gh-3605
Close gh-3895
|
|
|
|
|
| |
Fixes gh-2960
Closes gh-3888
|
|
|
|
| |
Fixes gh-3214
|
|
|
|
| |
Fixes gh-3609
|
|
|
|
|
| |
Fixes gh-2958
Close gh-3885
|
|
|
|
|
| |
Fixes gh-2959
Close gh-3884
|
|
|
|
|
| |
- Add back camelCase to the public object (deprecate not remove)
Ref #3384
|
|
|
|
|
| |
Fixes gh-3629
Close gh-3702
|
|
|
|
|
| |
Close gh-3576
Fixes gh-3573
|
|
|
|
|
| |
Ref ac9e3016
Close gh-3560
|
|
|
|
|
| |
Fixes gh-3475
Closes gh-3505
|
|
|
|
|
| |
Fixes gh-3288
Close gh-3306
|
|
|
|
|
| |
Fixes gh-2961
Closes gh-3278
|
|
|
|
| |
Fixes gh-3073
|
|
|
|
|
| |
Fixes gh-2800
Closes gh-2948
|
| |
|
|
|
|
|
| |
Fixes gh-2288
Closes gh-2624
|
|
|
|
| |
Fixes gh-2056
|
|
|
|
|
| |
Fixes gh-1749
Closes gh-1822
|
|
|
|
| |
functions > jQuery.extend > jQuery.fn.extend.
|
| |
|
|
|
|
| |
(cherry picked from commit e3777b64377947b7222a2050aee7f2ec371faef9)
|
| |
|
| |
|
|
|
|
|
|
| |
Closes gh-982.
Signed-off-by: Timmy Willison <timmywillisn@gmail.com>
|
| |
|
| |
|
|
|
|
| |
https://github.com/jquery/2012-dev-summit/issues/24
|
| |
|
| |
|
| |
|
|
jQuery.browser and removes use in test/unit/ajax.js. Fixes #11965
|