aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Use the exact versions dependenciesOleg2013-12-191-15/+17
| | | | | | And remove unused "which" package Closes gh-1458
* Offset: Fix comment typo, thanks @AurelioDeRosaDave Methvin2013-12-181-1/+1
|
* Readme: Fix typo, thanks @tcortDave Methvin2013-12-181-1/+1
|
* Build: Upgrade to grunt-contrib-jshint 0.7.1 and squash subtasksMichał Gołębiowski2013-12-182-16/+7
| | | | | | | | | 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
* Build: Use absolute paths in .gitignore and .npmignore.Michał Gołębiowski2013-12-182-9/+11
| | | | | .gitignore/.npmignore treat all its paths as relative to *every* directory in the repository. In most cases that’s not what’s desired.
* Ajax: don’t test jQuery.ajax() on beforeunload in Chrome 31Michał Gołębiowski2013-12-181-4/+11
| | | | | | | Chrome 31 doesn't fire Ajax requests in beforeunload event handler. There is no way for us to workaround it and it's been fixed in Chrome 32 so let's just blacklist Chrome 31 as long as it's in TestSwarm. See https://code.google.com/p/chromium/issues/detail?id=321241
* CONTRIBUTING: Fixed link to style guideScott González2013-12-171-1/+1
|
* Reduce size by reordering variable declarationsChris Antaki2013-12-164-16/+17
| | | | Close gh-1421
* Revert "Ajax: Fix #14424. Use ActiveX in IE9+ on local files, close gh-1434."Dave Methvin2013-12-152-10/+1
| | | | | | This reverts commit 498e0e6c9bf486a0b1f16b455d65fcbc6c43867e. We can't use the ActiveX XHR because it doesn't support events.
* Manage bower dependencies with grunt-bowercopyTimmy Willison2013-12-0626-54/+18307
| | | | | | | | | | | | 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.
* Fix #14579: attribute selectors with trailing spaces after an unquoted valueRichard Gibson2013-11-271-1/+1
|
* Ajax: Use weak ETag header in testsCorey Frang2013-11-261-2/+5
| | | | | | See http://en.wikipedia.org/wiki/HTTP_ETag#Strong_and_weak_validation Close gh-1448
* Add unit tests for .html( number ). Close gh-1447.Jakob Stoeck2013-11-261-3/+6
|
* Effects: Integrate sinon fake timers into tests. Close gh-1377.John Paul2013-11-244-291/+211
|
* Change window to global in the most outer IIFE parameters.Michał Gołębiowski2013-11-171-5/+5
| | | | | | | In the most outer IIFE it’s not yet known if the global is window or not. Using the window variable to denote the global was misleading in that case, especially that the code didn’t make such assumption, requiring to provide a Web-like window separately. Renaming window to global clears the confusion.
* Fixes #14549. Execute the factory immediately when CommonJS is used in the ↵Timmy Willison2013-11-151-10/+14
| | | | browser.
* Fixes #14548. Add main property to package.jsonTimmy Willison2013-11-151-0/+1
|
* Ref #14503: Cherry-pick tests.hongymagic2013-11-152-6/+21
| | | | | | (cherry picked from commit 27b22f4ef5f3f291204f0e0f9f414ac503f6c8a8) (cherry picked from commit 8dc0f2ea84e1861d8d8dfa7699268368c659f8e9) (cherry picked from commit 936126f10de193e2bb1c8280dbc2361ca5d62e29)
* Release script: Add dist files in multiple commits for a clean final commit ↵Timmy Willison2013-11-151-3/+15
| | | | with a small diff
* Release script: Add .npmignore and keep .gitignore when creating the tagTimmy Willison2013-11-152-20/+14
|
* Updating the source version to 2.1.0-pre✓™Dave Methvin2013-11-152-2/+2
|
* Updating version to 2.1.0-beta2.Dave Methvin2013-11-152-2/+2
|
* Keep bower_components in .gitignore.Michał Gołębiowski2013-11-151-0/+1
|
* Release script: create tag after building CDN filesTimmy Willison2013-11-151-5/+6
|
* Ref #14180, let focusin/out work on non-element targets.Dave Methvin2013-11-142-2/+15
|
* Ajax: Fix #14424. Use ActiveX in IE9+ on local files, close gh-1434.Dave Methvin2013-11-142-1/+10
| | | | | We can't feature detect ActiveX in IE11, but we can just call it and catch whatever error occurs, then try normal XHR.
* Event: Fix #14544. Remove elem from event handle, close gh-1400.Ilya Kantor2013-11-141-7/+2
| | | | | | | This also reduces memory leaks if the element is removed without cleaning events (e.g with native DOM operations). Not pickable into the 1.x branch because oldIE still needs this.
* Fixes #14535: update Sizzle to 1.10.13Timmy Willison2013-11-141-1/+1
|
* Update sizzle location in release scriptTimmy Willison2013-11-141-1/+1
|
* Use grunt and bower packages as local dependencies. Close gh-1433.Timmy Willison2013-11-1412-44/+59
|
* Update Sizzle: remove the use of version rangesTimmy Willison2013-11-141-1/+1
|
* Modify release script to create a headless tag for bower and publish to NPMTimmy Willison2013-11-131-50/+158
|
* Fix #14036. Remove user/pass from ajaxLocation. Close gh-1340.njhamann2013-11-132-1/+3
|
* ajax: Fix #14207. file protocol returns status 0, see #8605.Dave Methvin2013-11-131-2/+2
|
* Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369.Dave Methvin2013-11-123-7/+68
|
* Ref 71b2ac52: Disallow 2.x bypass of environmental helper methodsRichard Gibson2013-11-121-13/+0
|
* Fix #14492: More correct jQuery.parseJSON. Close gh-1419.Richard Gibson2013-11-123-8/+76
| | | | | | | | (cherry picked from commit 60a6178131afec97b68c9a45bc24459f7b8bd905) Conflicts: src/ajax/parseJSON.js
* Merge branches 'master' and 'master' of github.com:jquery/jqueryRichard Gibson2013-11-120-0/+0
|
* No ticket. Remove the unnecessary guard in addGetHookIf. Close gh-1426.Michał Gołębiowski2013-11-111-9/+1
| | | | | | | | | In 1.x if the support test executes before doc ready, it may not be able to return a result yet. In such a case, we protect ourselves from future breakages, allowing only for the ones before doc ready. Since in 2.x lazy support tests attach test elements to docElem, not body, such a guard is unnecessary.
* Fix #14340. Remove remnants of oldIE from unit tests. Close gh-1425.Michał Gołębiowski2013-11-1110-131/+56
|
* No ticket. Remove version sniffing from test/unit/support.js, browsers got ↵Michał Gołębiowski2013-11-111-5/+3
| | | | updated.
* No ticket. Remove the pre-uglify task form build/tasks/build.js. Fix custom ↵Michał Gołębiowski2013-11-101-1/+1
| | | | builds.
* Fix #14415. Remove the source map comment in the release script. Close gh-1424.Michał Gołębiowski2013-11-101-5/+3
|
* No ticket. Restore some parsing tests in core.Michał Gołębiowski2013-11-101-5/+8
|
* Remove workarounds for the uglify task mishandling banners when used with ↵Michał Gołębiowski2013-11-093-76/+11
| | | | | | | 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 styleOleg2013-11-081-1/+3
|
* Don't execute focus tests in FirefoxOleg2013-11-081-72/+75
| | | | Close gh-1423
* Use full version of jQuery 1.9.1Oleg2013-11-085-8/+9603
| | | | Had some weird failures in IE with xhr build of 1.9.1
* Add "keywords" to bower.jsonSindre Sorhus2013-11-071-1/+6
| | | | Close gh-1407
* Add load-grunt-tasks package dependencySindre Sorhus2013-11-072-8/+2
| | | | Close gh-1405