aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* traversing: Optimise .add by not using makeArrayTimo Tijhof2013-12-302-33/+116
| | | | | | (cherry picked from commit b39ee05b69336d5a6230287ab8bd48c48e5b206f) Closes gh-1430
* Release script: _tracMilestone -> tracMilestoneTimmy Willison2013-12-211-1/+1
|
* exports/global: Do not attach global variables for most CommonJS environmentsTimmy Willison2013-12-202-5/+8
| | | | | | | For CommonJS environments where the global already has a document, it is expected that if a global is needed, the user can attach the global. Fixes #14645.
* Gruntfile: fix watch taskTimmy Willison2013-12-201-1/+1
|
* Release script: minor formatting issue.Timmy Willison2013-12-201-1/+1
|
* Release script: jquery-release integrationTimmy Willison2013-12-202-385/+148
| | | | | Conflicts: build/release.js
* Remove hyphen from pre versionsTimmy Willison2013-12-202-2/+2
| | | | | | | | | - It is intentionally invalid semver as pre versions should never be released - UI and Mobile already do this Conflicts: bower.json package.json
* Update AUTHORS.txt using git log --format="%aN <%aE>"Timmy Willison2013-12-201-14/+44
|
* Selector: update SizzleRichard Gibson2013-12-205-16/+22
| | | | | Fix #14584 (cherry picked from commit 29c8003347e8768e26077c6d040203d662009220)
* Build: add build option for setting the AMD name.Timmy Willison2013-12-192-5/+28
| | | | Fixes #14016.
* Build: Add the ability to remove global exposure.Timmy Willison2013-12-195-24/+41
| | | | | | | | Ref #14016 Conflicts: build/tasks/build.js src/core.js
* Use the exact versions dependenciesOleg2013-12-191-15/+17
| | | | | | And remove unused "which" package Cherry picked from the commit 09ede3d33b1a43c399bc9549c634af634513a81d
* Offset: Fix comment typo, thanks @AurelioDeRosaDave Methvin2013-12-181-1/+1
|
* Readme: Fix typo, thanks @tcortDave Methvin2013-12-181-1/+1
| | | | (cherry picked from commit 84190105c0f2acb39f33810678c36e4536bd1692)
* 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. (cherry-picked from 7deee6af72bfcf328fa09a28a1e68159cc58513f) 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. (cherry-picked from 2d7315051193212fca6e7d64a3de87d96977c418)
* 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 (cherry-picked from fd0bce07584b73fb755574c4d462e0b175d1c6b6)
* CONTRIBUTING: Fixed link to style guideScott González2013-12-171-1/+1
| | | | (cherry-picked from 846771081c038f523612087d76deb3c853e252fd)
* Manage bower dependencies with grunt-bowercopyTimmy Willison2013-12-0625-50/+17955
| | | | | | | | | | | | | | | | 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. Conflicts: bower.json test/index.html
* Fix #14579: attribute selectors with trailing spaces after an unquoted valueRichard Gibson2013-11-271-1/+1
| | | | (cherry picked from commit ed20e7c645064822f4070a0c60195e4bcdaba683)
* 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 (cherry picked from commit d2aa969206aa1b7738b911cdaf29038f249b5066)
* Add unit tests for .html( number ). Close gh-1447.Jakob Stoeck2013-11-261-3/+6
| | | | (cherry picked from commit ed291938c287d34fe1183e588e12372e540eb5e7)
* Fixes #14535: update Sizzle to 1.10.13Timmy Willison2013-11-261-1/+1
| | | | (cherry picked from commit c389c2e6ba698e95c683ad113d728e757a4da29a)
* Change window to global in the most outer IIFE parameters. (cherry-picked ↵Michał Gołębiowski2013-11-171-6/+6
| | | | | | | | | from dc649a33e081c7beb083b04956731aa410eb6b3f) 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
| | | | | Conflicts: package.json
* Updating the source version to 1.11.0-pre✓™Dave Methvin2013-11-152-2/+2
|
* Updating version to 1.11.0-beta2.Dave Methvin2013-11-152-2/+2
|
* 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
|
* Keep bower_components in .gitignore. (cherry-picked from ↵Michał Gołębiowski2013-11-151-0/+1
| | | | 21c218eabb933095d933c9fe3fa29dcd0aef35fe)
* Release script: create tag after building CDN filesTimmy Willison2013-11-151-5/+6
|
* Add es3: true to test/.jshintrc. Make tests conform to that jsHint setting.Michał Gołębiowski2013-11-153-2/+3
|
* Ref 27b22f4e: Remove oldIE-unfriendly trailing commaRichard Gibson2013-11-151-1/+1
|
* Ref 27b22f4e: Don't try to outsmart ApacheRichard Gibson2013-11-141-1/+3
|
* Fix #14503: Cast to string before setting XHR header. Close gh-1427.hongymagic2013-11-143-7/+28
|
* Ref #14180, let focusin/out work on non-element targets.Dave Methvin2013-11-142-2/+15
| | | | | | | (cherry picked from commit c2aca17d457d302cb1683f925b9e5ee93f0984ea) Conflicts: src/event.js
* Fix #14475. Use IE11-friendly detect for proper XHR object.Dave Methvin2013-11-141-7/+3
| | | | We don't seem to have test cases for local file access.
* 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-2/+2
| | | | | Conflicts: bower.json
* Modify release script to create a headless tag for bower and publish to NPMTimmy Willison2013-11-131-54/+162
| | | | | Conflicts: build/release.js
* Fix #14036. Remove user/pass from ajaxLocation. Close gh-1340.njhamann2013-11-132-1/+2
| | | | (cherry picked from commit eb1a2afc9fb1d990d10358aab0e17bc0ce1d1db3)
* Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369.Dave Methvin2013-11-123-7/+67
| | | | | (cherry picked from commit ebdb467761d756d4e52608a0df4a4d9b17da8092) (conflicts with .data() resolved manually)
* Fix #14492: More correct jQuery.parseJSON. Close gh-1419.Richard Gibson2013-11-123-29/+102
|
* 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. (cherry-picked from 7d5a12376d18e0ec70241e653721ce9977123d34)
* Fix #14415. Remove the source map comment in the release script. Close ↵Michał Gołębiowski2013-11-101-5/+3
| | | | gh-1424. (cherry-picked from 562145e887cc42ce8c9c9cd2c6e946ff01e6731d)
* Grunt: put .sizecache.json in build/, not dist/. (see ↵Michał Gołębiowski2013-11-101-1/+1
| | | | 6095be1260c5c0e7dfe88380501188d4c50975eb)
* No ticket. Restore some parsing tests in core. (cherry-picked from ↵Michał Gołębiowski2013-11-101-5/+8
| | | | 650f325d8e5e9092cd8ca7c1a7ab62c4bba582cf)