aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Simplify replaceWith method. Closes gh-1276Oleg2013-09-171-21/+11
|
* Correct code style in comment lineOleg2013-09-131-1/+1
|
* No ticket: fix code style inconsistencies. Closes gh-1361Oleg2013-09-1315-31/+32
|
* Ref #14313: NaN detection. Close gh-1352.Richard Gibson2013-09-122-3/+6
| | | | (cherry picked from commit 0bc0a69026ce4c1ac570a729d3c975a4a55d0ff4)
* charAt -> string indexing. Close gh-1359.Mike Sidorov2013-09-122-2/+2
|
* Flip the switch on checkOnTimmy Willison2013-09-111-1/+1
|
* Correct the checkClone support test for Safari 5.1 and mobile webkitsTimmy Willison2013-09-111-14/+11
|
* Fix support test for checkClone. Fixes Safari 5.1 manip failures.Timmy Willison2013-09-112-2/+4
|
* Fix contextTimmy Willison2013-09-111-1/+1
|
* The cssHook from addGetHookIf wasn't actually getting addedTimmy Willison2013-09-113-8/+7
|
* Modules can assume the presence of their parentsTimmy Willison2013-09-101-1/+0
|
* No ticket. Abstract conditional hook definition.Michał Gołębiowski2013-09-113-40/+52
|
* Remove offset dependency from css. Move curCSS and getStyles to their own ↵Timmy Willison2013-09-106-85/+111
| | | | modules. -39 bytes. Close gh-1360.
* Map Sizzle to a path with config to allow users to put Sizzle wherever they wantTimmy Willison2013-09-101-1/+1
|
* Ensure display: inline-block when animating width/height on inline elements. ↵Timmy Willison2013-09-101-3/+10
| | | | Fixes #14344.
* Separate jQuery.fn.init into its own module (for lighter core dependencies ↵Timmy Willison2013-09-0918-213/+250
| | | | across all modules)
* Apply consistent ordering in all modules. -38 bytes. Order modules like ↵Timmy Willison2013-09-099-838/+837
| | | | functions > jQuery.extend > jQuery.fn.extend.
* All non-var modules should not indent in their AMD wrappers (just for ↵Timmy Willison2013-09-098-131/+143
| | | | prettier builds). No functionality changes.
* Break jQuery.access out into its own module to separate it from core; Adjust ↵Timmy Willison2013-09-0913-122/+149
| | | | CommonJS+AMD build support to include non-var dependencies. Convert modules with more than a few dependencies to use CJS+AMD syntax.
* Reorder css.js logicallyTimmy Willison2013-09-091-177/+177
|
* Add AMD+CommonJS capabilities to the build script (for modules with long ↵Timmy Willison2013-09-092-16/+14
| | | | unreadable dependency lists)
* Fix loading tests with AMD (new support module needed core)Timmy Willison2013-09-091-1/+2
|
* Always return jQuery in modules that can be included separatelyTimmy Willison2013-09-0814-2/+24
|
* Move parsing methods to their own files (separates manipulation dependency ↵Timmy Willison2013-09-087-58/+82
| | | | from core)
* No ticket. Update support comments to reflect current state of affairs.Michał Gołębiowski2013-09-074-5/+5
|
* No ticket. Restore checking individual src/**/*.js files by jsHint.Michał Gołębiowski2013-09-0621-25/+26
|
* No ticket. Optimize the marginRight hook: run the support test once only.Michał Gołębiowski2013-09-061-7/+14
|
* With all of the ready calls removed internally, ready was never kicked off. ↵Timmy Willison2013-09-061-0/+3
| | | | Add a call in the ready module to ensure ready is checked.
* Fix #10814. Make support tests lazy and broken out to components.Michał Gołębiowski2013-09-0618-184/+246
|
* Fix #14084: attach the test div to documentElement, not body.Michał Gołębiowski2013-09-051-47/+37
|
* Ref #14313: Further code and test improvementsRichard Gibson2013-09-031-7/+5
|
* Fix #14313: Optimize jQuery.merge for size. Close gh-1344.Amey Sakhadeo2013-08-301-6/+2
|
* Pass all tests (and load Sizzle fixture correctly) when loading with AMDTimmy Willison2013-08-292-3/+7
|
* Fix for custom attr handles duck-punching the boolean attr handleTimmy Willison2013-08-281-18/+15
| | | | | Conflicts: src/attributes/attr.js
* Remove trailing comma in define array. Close gh-1336.Guy Bedford2013-08-201-2/+2
|
* No ticket. Add a support note about defaultPrevented missing in Android < 4.0Michał Gołębiowski2013-08-191-1/+4
|
* Fix #14150: revert to ownerDocument.defaultView.getComputedStyle. Close gh-1311.Chris Price2013-08-191-1/+1
|
* Fix #14164: assign className in addClass/removeClass only if changed. Close ↵Jeremy Dunck2013-08-191-4/+13
| | | | gh-1331.
* When converting the source to AMD, don't forget to AMDTimmy Willison2013-08-162-2/+9
|
* Specify support as a dependency wherever it is used. Optimize module order ↵Timmy Willison2013-08-159-11/+20
| | | | to save 15 bytes.
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-1563-1180/+1598
|
* Removed an unneeded variable. Closes gh-1321.terrycojones2013-08-081-3/+2
|
* No need to remove if they ain't nuthin tharTimmy Willison2013-07-241-1/+1
|
* Update devDependencies, adjust .jshintrc to jsHint 2.x, use .jshintignore. ↵Michał Gołębiowski2013-07-111-1/+0
| | | | Close gh-1283.
* Include Sizzle and Qunit with bower. Fixes #14118.Timmy Willison2013-07-101-0/+0
|
* Remove `undefined` var declarationsTimmy Willison2013-07-082-1/+1
|
* Support CommonJS environments by accentuating the need for a window with a ↵Timmy Willison2013-07-043-26/+40
| | | | document. Fixes #13768.
* Update Sizzle to version 1.10.3-preTimmy Willison2013-07-041-0/+0
|
* Fixes #13976: Garbage input should not cause error in buildFragment. Close ↵ruado19872013-07-011-1/+1
| | | | gh-1284
* Fixes #14049: don't append px to CSS order value. Close gh-1300.Jason Merino2013-07-011-0/+1
|