| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
Changes:
* Increase search depth when finding for the real offset parent
* Ignore offset for statically positioned offset parent
* Add tests for the position of an element in a table
Closes gh-4861
|
|
|
|
|
|
|
|
|
| |
There are two main reasons for why some of those dependencies are no longer
needed:
1. `jQuery.contains` which is now a part of `core`.
2. `jQuery.find.attr` no longer exists, native `getAttribute` is used instead.
Closes gh-5383
Ref gh-5379
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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-3609
|
| |
|
|
|
|
| |
This reverts commit 3befe5911af0cf516896482bb9ddf197c8cb8a8e.
|
|
|
|
|
| |
Fixes gh-3629
Close gh-3702
|
|
|
|
|
|
|
|
| |
Thanks @anseki
Fixes gh-3080
Fixes gh-3107
Closes gh-3096
Closes gh-3487
|
|
|
|
| |
- nodeName was included at the wrong spot in dependency lists
|
|
|
|
|
| |
Fixes gh-3475
Closes gh-3505
|
|
|
|
| |
Fixes gh-3449
Closes gh-3456
|
|
|
|
| |
Fixes gh-3267
Closes gh-3367
|
|
|
|
| |
Fixes gh-3073
|
| |
|
|
|
|
|
| |
The changes follow the spec proposed in:
https://github.com/jquery/contribute.jquery.org/issues/95#issuecomment-69379197
|
|
|
|
| |
All support comments were checked for Edge applicability.
|
|
|
|
|
|
|
|
|
|
| |
Support comments that were lacking the final IE/Edge version that exhibits
the bug were checked & updated. Links to the Chromium bug tracker were updated.
Code in tests related to unsupported browsers (like Android 2.3 in non-basic
tests) has been removed.
Fixes gh-2868
Closes gh-2949
|
|
|
|
|
|
|
|
|
|
|
|
| |
This reverts commit 2d715940b9b6fdeed005cd006c8bf63951cf7fb2.
This commit provoked new issues: gh-2836, gh-2828.
At the meeting, we decided to revert offending commit
(in all three branches - 2.2-stable, 1.12-stable and master)
and tackle this issue in 3.x.
Fixes gh-2828
|
|
|
|
|
|
| |
Fixes gh-2319
Closes gh-2702
Ref gh-2701
|
|
|
|
| |
Fixes gh-2056
|
|
|
|
|
|
|
|
| |
Support comments that mentioned only Safari < 7 were checked & updated
to account for bugs existing in newer versions as well; Safari 6 support
test results were removed.
Refs gh-2482
|
| |
|
|
|
|
|
| |
Fixes gh-2310
Close gh-2396
|
|
|
|
| |
This reverts commit 0d11c1182f2012cd6eb06ce1e3fa5a495af9bee3.
|
|
|
|
|
| |
Fixes gh-1708
Close gh-1714
|
|
|
|
| |
Fixes gh-2114
|
|
|
|
| |
Fixes gh-2115
|
|
|
|
|
| |
Fixes gh-1784
Close gh-2043
|
|
|
|
|
|
|
|
|
|
|
|
| |
* It seems, check for html element (and previously for body element)
was redundant
* Simplify "return" statement
* Add comment about potential errors that didn't find themselves
in real life app
Closes gh-1968
|
|
|
|
|
| |
Fixes gh-1950
Closes gh-1949
|
|
|
|
|
| |
Fixes gh-1945
Closes gh-1959
|
|
|
|
|
| |
Fixes gh-1848
Closes gh-1853
|
|
|
|
|
|
|
|
| |
That includes Opera 12.x, Firefox<29, Safari<6.0 and some hacks
for old Blackberry.
Closes gh-1820
Refs gh-1815
|
| |
|
| |
|
| |
|
|
|
|
| |
Closes gh-1577
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
modules. -39 bytes. Close gh-1360.
|
|
|
|
| |
across all modules)
|
|
|
|
| |
functions > jQuery.extend > jQuery.fn.extend.
|
|
|
|
| |
CommonJS+AMD build support to include non-var dependencies. Convert modules with more than a few dependencies to use CJS+AMD syntax.
|