Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Effects: Remove tests for jQuery.Animation & jQuery.Tween | Michał Gołębiowski | 2015-11-17 | 1 | -5/+1 |
| | | | | | | | | | | We'll officially support those APIs in jQuery 3.0 but we don't want to have to support them in 1.12/2.2. The code is left untouched, only tests (& official support) are removed. Refs b3b2d6c3dd51fbdc69e1942e9af75cc99a1834c2 Refs cdaed15c7ea1bbfdde5a5bea691c583ce7961526 | ||||
* | Revert "Deferred: Backwards-compatible standards interoperability" | Oleg Gaidarenko | 2015-11-13 | 1 | -3/+1 |
| | | | | This reverts commit 555a50d340706e3e1e0de09231050493d0ad841e. | ||||
* | Revert "CSS: Make show/hide/toggle methods a module" | Oleg Gaidarenko | 2015-11-11 | 1 | -1/+0 |
| | | | | This reverts commit 67d7a2eefee768b59eb3d51cb1fb2c671873e58a. | ||||
* | Build: Add "deprecated" to the Testswarm module list | Dave Methvin | 2015-10-20 | 1 | -0/+1 |
| | | | | | | Ref #1740 Yeah. | ||||
* | CSS: Make show/hide/toggle methods a module | Dave Methvin | 2015-10-18 | 1 | -0/+1 |
| | | | | | | | | 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 | ||||
* | Tests: Add simple tests for Android 2.3 | Michał Gołębiowski | 2015-09-08 | 1 | -0/+8 |
| | | | | | | Fixes gh-2505 Closes gh-2509 Refs gh-2483 | ||||
* | Build: Don't install jsdom 3 on Node.js 0.10 & 0.12 by default | Michał Gołębiowski | 2015-09-08 | 1 | -3/+19 |
| | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | Effects: Finish should call progress | Thomas Tortorini | 2015-09-08 | 1 | -0/+5 |
| | | | | | Fixes gh-2283 Closes gh-2292 | ||||
* | Build: put back "lint" command to the "dev" list | Oleg Gaidarenko | 2015-09-08 | 1 | -1/+1 |
| | | | | | | Also fix lint error in `data` module. It seems this command was removed from the list during merge | ||||
* | Build: correct jscs paths | Oleg Gaidarenko | 2015-09-07 | 1 | -3/+2 |
| | |||||
* | Build: Update jscs and lint files | Oleg Gaidarenko | 2015-09-07 | 1 | -4/+10 |
| | | | | Fixes gh-2056 | ||||
* | Build: Add a comment explaining why the es3 option is needed | Michał Gołębiowski | 2015-08-03 | 1 | -2/+6 |
| | | | | | | | | | | 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 | ||||
* | Effects: Adding unit tests for jQuery.Animation | Corey Frang | 2015-06-26 | 1 | -2/+3 |
| | | | | Closes gh-2326 | ||||
* | Effects: Add tests for jQuery.Tween | Corey Frang | 2015-06-26 | 1 | -2/+3 |
| | |||||
* | Core: Make jQuery objects iterable | Michał Gołębiowski | 2015-06-13 | 1 | -0/+12 |
| | | | | | | | | | | 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 | ||||
* | Build: remove bower.json lint target | Oleg Gaidarenko | 2015-06-11 | 1 | -4/+0 |
| | | | | Ref 26eca143c2dd857b9e3d1c446a467fed16e903d2 | ||||
* | Core: Test all factory use cases from intro.js | Michał Gołębiowski | 2015-04-27 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | Deferred: Backwards-compatible standards interoperability | Richard Gibson | 2015-03-20 | 1 | -1/+3 |
| | | | | | Fixes gh-1722 Closes gh-1996 | ||||
* | Release: remove sourcemap comment from all copies of minified file | Timmy Willison | 2015-01-30 | 1 | -1/+1 |
| | | | | Fixes gh-1707 | ||||
* | Build: Rearrange grunt/npm tasks into a build/dist/test pattern | Richard Gibson | 2015-01-11 | 1 | -19/+7 |
| | | | | | Ref 76df9e4e389d80bff410a9e5f08b848de1d21a2f Closes gh-1980 | ||||
* | Build: Remove dates from copyright notice | Anne-Gaelle Colom | 2015-01-03 | 1 | -2/+1 |
| | | | | Closes gh-1983 | ||||
* | Build: Don't assume the browser environment; smoke test on Node w/ jsdom | Michał Gołębiowski | 2014-12-26 | 1 | -1/+16 |
| | | | | | Fixes gh-1950 Closes gh-1949 | ||||
* | Sizzle: update to 2.1.1 | Timmy Willison | 2014-12-15 | 1 | -1/+1 |
| | |||||
* | Build: update source map options for the new grunt jshint | Timmy Willison | 2014-07-17 | 1 | -2/+2 |
| | |||||
* | Build: update grunt-jscs-checker and pass with the new rules | Timmy Willison | 2014-07-17 | 1 | -7/+25 |
| | |||||
* | Build: drop bower; use npm for front-end deps | Timmy Willison | 2014-07-17 | 1 | -6/+4 |
| | | | | | Fixes #15186 Closes gh-1620 | ||||
* | Build: update Sizzle to 2.0.0 | Timmy Willison | 2014-07-01 | 1 | -1/+1 |
| | |||||
* | Build: update Sizzle to 1.11.1 and include license | Timmy Willison | 2014-06-25 | 1 | -0/+1 |
| | |||||
* | Build: Move all external libraries to external directory | Scott González | 2014-06-24 | 1 | -13/+13 |
| | | | | Closes gh-1593 | ||||
* | Build: Remove unused Sizzle test files | Scott González | 2014-06-24 | 1 | -5/+1 |
| | |||||
* | Ajax: move ajax event aliases to their own file | Timmy Willison | 2014-06-02 | 1 | -1/+1 |
| | | | | Fixes #15126 | ||||
* | Build: run jshint and jscs on release scripts | Timmy Willison | 2014-05-23 | 1 | -2/+2 |
| | |||||
* | Build: Remove json check for jscs config | Oleg Gaidarenko | 2014-04-23 | 1 | -4/+0 |
| | |||||
* | Build: Remove Sizzle from run names passed to the testswarm task | Michał Gołębiowski | 2014-04-15 | 1 | -1/+1 |
| | |||||
* | Build: Add lint task | Oleg Gaidarenko | 2014-04-15 | 1 | -2/+2 |
| | |||||
* | Build: Use jscs to check test helpers | Oleg Gaidarenko | 2014-04-15 | 1 | -0/+3 |
| | | | | Also fix issues found by jscs | ||||
* | Sizzle: update committed dependencies | Timmy Willison | 2014-01-13 | 1 | -1/+5 |
| | |||||
* | Build: Happy New Year! Thanks @marlonlandaverde | Dave Methvin | 2014-01-09 | 1 | -1/+1 |
| | |||||
* | Gruntfile: fix watch task | Timmy Willison | 2013-12-20 | 1 | -1/+1 |
| | |||||
* | Build: Upgrade to grunt-contrib-jshint 0.7.1 and squash subtasks | Michał Gołębiowski | 2013-12-18 | 1 | -15/+6 |
| | | | | | | | | | 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 | ||||
* | Manage bower dependencies with grunt-bowercopy | Timmy Willison | 2013-12-06 | 1 | -8/+19 |
| | | | | | | | | | | | | 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. | ||||
* | Use grunt and bower packages as local dependencies. Close gh-1433. | Timmy Willison | 2013-11-14 | 1 | -0/+12 |
| | |||||
* | Remove workarounds for the uglify task mishandling banners when used with ↵ | Michał Gołębiowski | 2013-11-09 | 1 | -29/+10 |
| | | | | | | | source maps. The issue was fixed in grunt-contrib-uglify: https://github.com/gruntjs/grunt-contrib-uglify/issues/22 | ||||
* | Check Gruntfile and tasks for code style | Oleg | 2013-11-08 | 1 | -1/+3 |
| | |||||
* | Add load-grunt-tasks package dependency | Sindre Sorhus | 2013-11-07 | 1 | -8/+1 |
| | | | | Close gh-1405 | ||||
* | Fix #12757 - use jscs to check the style guide | Oleg | 2013-11-07 | 1 | -11/+21 |
| | | | | Close gh-1396 | ||||
* | Only set uglify options if not already the default | Timmy Willison | 2013-10-15 | 1 | -10/+2 |
| | |||||
* | No ticket: Clean up uglifyjs compress options. Close gh-1382. | Timo Tijhof | 2013-10-15 | 1 | -3/+10 |
| | | | | (cherry picked from commit e15627022f0c5e13a972baffb41f6f52ca4d3ec3) | ||||
* | Preparations for npm/bower publishing | Timmy Willison | 2013-10-15 | 1 | -1/+1 |
| | |||||
* | Add bower install script and release scripts to jshint and pass lint | Timmy Willison | 2013-10-07 | 1 | -1/+1 |
| |