aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Whitespace.Scott González2013-02-261-1/+2
| | | | (cherry picked from commit b55bfb140f4ccf871a38ec52f21f7ca698515e52)
* Optimisation: Use String instead of window.String. Close gh-1176.Timo Tijhof2013-02-261-1/+1
| | | | | Follows-up 22e28b01e60e87b2454f88ca128fb84916b13564. (cherry picked from commit 31478b90128a60585c087bee57d31148677a99cd)
* Fix #13471. $().on(".xyz"...) should avoid later crash.Dave Methvin2013-02-261-0/+5
| | | | | | If the event type is an empty string we end up hanging in .off() which makes for mighty hard debugging. Instead treat it as a no-op. Docs seem clear this is not allowed.
* No ticket: move jQuery.expando to coreRichard Gibson2013-02-252-4/+4
|
* No ticket: reduce support.jsRichard Gibson2013-02-251-52/+49
|
* Fix #13505: Yet another detached add patchRichard Gibson2013-02-241-0/+0
|
* No ticket: Restore support for Android<4.0Richard Gibson2013-02-231-0/+0
|
* Fix #13499: selector with leading ID matching only a nameRichard Gibson2013-02-221-0/+0
|
* No ticket: Reduce size in anticipation of Sizzle-free buildsRichard Gibson2013-02-222-3/+4
|
* No ticket: Update SizzleRichard Gibson2013-02-171-0/+0
|
* Fix #13265 #13332: Allow .parent/.closest with text nodes. Close gh-1146.Richard Gibson2013-02-131-5/+9
|
* No ticket: keep jquery.min.js.gz under 32KRichard Gibson2013-02-121-27/+25
|
* Fix #13401: replaceWith(""). Close gh-1163.Mark Raddatz2013-02-081-9/+11
| | | | (cherry picked from commit 6a0ee2d9ed34b81d4ad0662423bf815a3110990f)
* Ref #13316: Sync all test documents on full vs. minified source.Richard Gibson2013-02-081-1/+1
|
* Update Sizzle: detached node sorting in Webkit. Fixes #13331.Timmy Willison2013-02-051-0/+0
|
* 2013!Dave Methvin2013-02-041-1/+1
|
* Fix #13356. Clean up after load/ready handlers. Close gh-1152.Oleg2013-02-041-13/+24
|
* Fix #13310. Get the right display value for disconnected nodes. Close gh-1155.Oleg2013-02-041-4/+13
|
* Fix #13089. Only apply zoom to IE6/7 body.Dave Methvin2013-02-031-3/+6
|
* Fix #13335. Remove "use strict".Dave Methvin2013-02-012-2/+6
|
* event: Stricter type checking in trigger - Fixes #13360 - Closes gh-1153Andrew Plummer2013-01-311-2/+2
| | | | | | | | | | | Squashed commit of the following: commit 5935a362c75ecef04d5ec9775cbcaf2165921e8d Author: Andrew Plummer <plummer.andrew@gmail.com> Date: Fri Feb 1 02:40:42 2013 +0900 Using "hasOwnProperty" to check for direct properties "type" and "namespace" on events before triggering.
* Fix #13355. Tweak Uglify options and var order for gzip. Close gh-1151.Oleg2013-01-3111-57/+57
| | | | | Change uglify-js options for compressor Change variables initialization sequence for some declarations
* Change variables initialization sequence for some declarationsOleg2013-01-315-21/+21
|
* Minor updates. All parameters of an internal function are for internal use only.Timmy Willison2013-01-301-11/+11
|
* Revert change to visible/hidden selectors until 1.10 and 2.1. Reopens ↵Timmy Willison2013-01-301-1/+1
| | | | #13132, #10406.
* Fix #13349. No need to sort simple .find() cases.Dave Methvin2013-01-291-4/+5
|
* Fix #13150, .has() w/o args checks for any callbacks. Close gh-1111.adamcoulombe2013-01-271-2/+3
|
* Fix #12656. Make event shorthands excludable.Dave Methvin2013-01-272-27/+26
|
* Fix #12846. Restore overflow when animation is stopped.Dave Methvin2013-01-261-1/+1
| | | | (Cherry picked from a6c358d)
* Fix #13281: update SizzleRichard Gibson2013-01-241-0/+0
|
* Fix #13315: compare typeof node.method to var instead of literal "undefined" ↵Richard Gibson2013-01-246-10/+14
| | | | for safer uglification
* Don't try and convert data for 204 No Content responses. Fixes #13292. Fixes ↵byroot2013-01-241-3/+8
| | | | #13261.
* Ignore file inputs when serializing forms. File input serialization is ↵Timmy Willison2013-01-231-1/+1
| | | | handled by plugins. Fixes #13306.
* Fix failing tests, add support for empty spans in Opera. Supplements #13132, ↵Timmy Willison2013-01-211-1/+4
| | | | #10406.
* Treat elements as hidden when either offsetWidth OR offsetHeight is 0. Fixes ↵Timmy Willison2013-01-211-1/+1
| | | | #13132, #10406.
* Never use the XML as parsed by the XHR instance. Use raw text instead and ↵jaubourg2013-01-211-8/+1
| | | | let the ajax conversion logic do the trick. -20 min/gzipped. Fixes #13276. Unit test added.
* Update Sizzle: fixes native slice usageTimmy Willison2013-01-181-0/+0
|
* Fix jQuery #13251: use slice instead of substringRichard Gibson2013-01-172-1/+1
|
* Ref 8f72967e: use acceptData to determine when it is safe to add event handlersRichard Gibson2013-01-161-2/+2
| | | | (cherry picked from commit 50290b8ffb05c504d3866a619f282bf795bc01f6)
* Fix #8335: Avoid memory leak by never setting data on non-element ↵danilsomsikov2013-01-161-0/+5
| | | | | | non-document nodes. Ref gh-1127. (cherry picked from commit cc324abf739669bd2a4669742c994b86c4ad467b)
* Fix #13233: re-allow .replaceWith of text nodes. Close gh-1137.Richard Gibson2013-01-161-8/+2
|
* Fix #13182: update SizzleRichard Gibson2013-01-161-0/+0
|
* Fix #13208: only check elements for delegation matchesRichard Gibson2013-01-161-1/+2
|
* Fix #13183: Wrong animation initial value calc. Close gh-1136.Mike Sherov2013-01-152-3/+3
|
* Fix #13203: delegated events with selector matching Object.prototype propertyRichard Gibson2013-01-131-1/+3
| | | | (cherry picked from commit 31b95797155077e4e670c0bbb2c57815f89769a1)
* No ticket: sync with master @ b75b9ef8Richard Gibson2013-01-131-3/+2
|
* Fix #13180: don't delegate into SVG <use>Richard Gibson2013-01-131-1/+2
|
* reduce sizeRichard Gibson2013-01-131-13/+13
|
* jQuery.event.handlers delegate matching hook pointRichard Gibson2013-01-131-36/+45
|
* Add a commentOleg2013-01-131-0/+2
|