| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
This reverts commit fa610da68440530e73bba296a1f982f94dfeac99.
|
|
|
|
|
|
|
|
|
| |
This commit increases the gzipped size by 90 bytes so a better solution
is needed but, at the same time, it disables the very optimizations
that are causing strict mode violations in Firefox 45, Safari 9 & IE 10.
Refs 76084372c29a59b3fa790ea4d2687f0767514999
Refs mishoo/UglifyJS2#1052
|
|
|
|
|
|
|
|
|
| |
- Make jQuery.ready promise-compatible
- Gives up sync guarantee for post-ready callbacks
Fixes gh-1778
Fixes gh-1823
Close gh-2891
|
|
|
|
| |
Fixes gh-2841
|
| |
|
| |
|
|
|
|
|
| |
Fixes gh-2577
Closes gh-2881
|
|
|
|
|
|
|
|
|
|
|
|
| |
All deps were updated except:
* jsdom - tests using a Symbol polyfill are hacky and break with newer jsdom;
we need to re-do them properly first
* qunitjs - versions 1.19.0 & 1.20.0 introduce race conditions to the tests,
making the fail randomly
Those two packages will be updated once issues related to them get resolved.
Fixes gh-2877
|
| |
|
| |
|
|
|
|
|
| |
Fixes gh-2653
Close gh-2711
|
|
|
|
|
|
| |
Ref #1740
Yeah.
|
|
|
|
|
|
|
|
| |
Unit test changes some uses of .show() and .hide() to .css( "display", ... ),
there was already an implicit assumption in several of the existing tests.
Fixes gh-2193
Close gh-2648
|
|
|
|
|
|
| |
Fixes gh-2505
Closes gh-2509
Refs gh-2483
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
jsdom 3 requires Python & Visual Studio on Windows which is a significant
barrier to contributors. Newer jsdom versions don't require pre-compiling
but work only on io.js. This commit installs the new jsdom everywhere (it
does install in old Node.js, it just won't work) and executes Node-related
tests only on newer Nodes or if a working jsdom version is installed. The
latter can be achieved by running the `old_jsdom` task.
Node.js is merging with io.js soon so this will become a smaller problem over
time.
One drawback is our Jenkins setup runs on Node 0.10 so it won't be running
Node tests anymore. We have Travis set up on io.js, though so all PRs
have those tests run. When the new LTS Node.js arrives (as it soon merges
with io.js) we should update our Jenkins infrastructure so that it runs on this
new version.
Fixes gh-2519
Closes gh-2526
|
|
|
|
|
| |
Fixes gh-2283
Closes gh-2292
|
|
|
|
|
|
| |
Also fix lint error in `data` module.
It seems this command was removed from the list during merge
|
| |
|
|
|
|
| |
Fixes gh-2056
|
|
|
|
|
|
|
|
|
|
| |
It might not be obvious to everyone that IE 9 & Android 4.0 are not
ES5-compliant browsers (by a large margin) so it's better to add a support
comment. This requires slight changes in parsing the config file
as it's not a pure JSON anymore. JSHint understands such files without
problems.
Closes gh-2520
|
|
|
|
| |
Closes gh-2326
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Make iterating over jQuery objects possible using ES 2015 for-of:
for ( node of $( "<div id=narwhal>" ) ) {
console.log( node.id ); // "narwhal"
}
Fixes gh-1693
|
|
|
|
| |
Ref 26eca143c2dd857b9e3d1c446a467fed16e903d2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
There is a lot of logic in intro.js; now we test four cases:
1. (implicitly, via QUnit tests) A real browser with window being the global
2. Browserify where there are both global & window variables.
3. Node with jsdom where window is passed manually to the jQuery factory.
4. Pure Node with incorrect window passed; jQuery should throw then.
Previously the second & fourth case was not tested and the third was tested
in a way that interfered with the main test environment.
We now also test if in the Browserify case we're not creating a jQuery global
by default.
Fixes gh-2181
Closes gh-2234
|
|
|
|
|
| |
Fixes gh-1722
Closes gh-1996
|
|
|
|
| |
Fixes gh-1707
|
|
|
|
|
| |
Ref 76df9e4e389d80bff410a9e5f08b848de1d21a2f
Closes gh-1980
|
|
|
|
| |
Closes gh-1983
|
|
|
|
|
| |
Fixes gh-1950
Closes gh-1949
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Fixes #15186
Closes gh-1620
|
| |
|
| |
|
|
|
|
| |
Closes gh-1593
|
| |
|
|
|
|
| |
Fixes #15126
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Also fix issues found by jscs
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
grunt-contrib-jshint 0.7.1 allows the jshintrc option to be set to true to have
it read the appropriate config file based on the file being checked. The only
place where we can’t use it is the check for dist/jquery.js that has the onevar
option removed.
Fixes #14504
|
|
|
|
|
|
|
|
|
|
|
|
| |
Tracked bower dependencies are located at "src/sizzle" and "test/libs".
The source-destination mapping is in the Gruntfile.
When updating a bower dependency, update the version in bower.json, run
`grunt bower`, and then commit the result. When adding a dependency,
update the bowercopy task accordingly.
Fixes #14615.
Closes gh-1452.
|
| |
|