aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix #10773. Improve parameter handling in removeAttr.Oleg2011-11-141-3/+3
|
* Catch more cases where special events were incorrectly removed.Dave Methvin2011-11-131-20/+15
| | | | We can't take the blow-it-all-away shortcut because something in the middle of the list may be a mapped special event. On the bright side, -22!
* use for loop instead of jQuery.each in getWH()Mike Sherov2011-11-101-11/+13
|
* Avoid collateral damage when removing bindType/delegateType special events.Dave Methvin2011-11-101-15/+14
|
* Ensure the hover event doesn't match hovercraft. Witchcraft, maybe.Dave Methvin2011-11-101-1/+1
|
* Move clearing the support vars to before the offset doc ready call in case ↵timmywil2011-11-101-6/+6
| | | | | | the offset tests are run synchronously. Fixes #10737. - Adding a test for this would probably slow the manipulation tests significantly, but it's simple enough.
* The special.handle hook is for origType, not the mapped type.Dave Methvin2011-11-091-9/+7
|
* Fix #10705. Don't bail too soon in `.off()` event string processing.Dave Methvin2011-11-091-3/+3
|
* Removing .unbind in favor of .off in jQuery.readyDaniel Herman2011-11-091-1/+1
|
* Fix #10712. Deal with focus/blur morphing to focusin/focusout.Dave Methvin2011-11-081-5/+10
|
* Fix #10717, .trigger("load") on images can't bubble to window.Dave Methvin2011-11-081-0/+5
| | | | This means no manually triggered event named "load" can bubble, so avoid that name for delegated custom events.
* Have Deferred.always return the object onto which it is currently attached ↵jaubourg2011-11-091-1/+2
| | | | to enable true chainability. Fixes #10723. Unit tests added.
* Take 2 on "Fix ajax to always expect an Error object, per #10646."Dave Methvin2011-11-081-2/+2
| | | | | | We can't use jQuery.error to rethrow anymore since it constructs a new Error from its supposedly-string arg. Also, older IE stringifies Error objects into "[object Error]" so I've loosened the unit test criteria. This reverts commit 586fb059190ecacd89e3cd211c78e776792d2f2b.
* Revert "Catch one more place where a plain-text error was thrown."Dave Methvin2011-11-081-1/+1
| | | | This reverts commit cc4a999648d2623972e6dabad0e6c4b1bb60458a.
* Update Sizzle. Adds document to acceptable nodeTypes for .text(). Fixes #10724.timmywil2011-11-081-0/+0
|
* Catch one more place where a plain-text error was thrown.Dave Methvin2011-11-081-1/+1
|
* Refactor clone a bit to only create one clone on any given codepathtimmywil2011-11-081-6/+4
|
* Merge branch 'master' of github.com:jquery/jqueryDave Methvin2011-11-083-5/+6
|\
| * Update Sizzletimmywil2011-11-081-0/+0
| |
| * Remove test of the invalid object for IE9's sake; Rewrite the appropriate ↵timmywil2011-11-082-5/+6
| |\ | | | | | | | | | support test for html5 clone caching. Fixes #10682
| | * Fixes jQuery.fragments cache and adds tests. Fixes #10682Rick Waldron2011-11-051-1/+1
| | |
* | | Fix ajax to always expect an Error object, per #10646.Dave Methvin2011-11-081-2/+2
|/ /
* | Fix busted rnoshimcache. Correctly clone detached unknown elems. Fixes ↵Rick Waldron2011-11-071-11/+24
| | | | | | | | | | | | | | | | #10667, #10670. - \s => |, Removes 4 bytes from gzipped build - Adds tests for clone attributes, children and events
* | Replace .bind with .on when building event aliasesDaniel Herman2011-11-071-1/+1
| |
* | Update Sizzletimmywil2011-11-071-0/+0
| |
* | Fix #10646. Throw an Error object from `.error()` for IE's sake.Dave Methvin2011-11-071-1/+1
| |
* | Fix #10690. Make sure `.isNumeric()` can't get a `Date`.Dave Methvin2011-11-071-1/+1
| | | | | | | | Also add tests for custom objects with a `.toString()` method.
* | Fix #10676. Remove `wheelDelta` from the event props list.Dave Methvin2011-11-071-1/+1
| | | | | | | | A cross-browser solution is best handled in a plugin such as jquery-mousewheel.js .
* | Fix #10701, .preventDefault if an inline handler returns false.Dave Methvin2011-11-071-2/+3
| | | | | | | | Baby unicorns are slapped each time you use inline handlers, so do it sparingly.
* | Add back unit in the width/height step function. Fixes #10669.timmywil2011-11-071-1/+1
| |
* | Since we fixed .is(POS) let's use it and save bytes.Dave Methvin2011-11-061-16/+12
| | | | | | | | Also, creates a single jQuery object and reuses it in the delegation-test loop to make it more performancy.
* | It seems the convention is to use `self` for caching `jQuery ( this )` ↵Justin2011-11-061-3/+3
| | | | | | | | instead of using `$this`.
* | Removed irrelevant comment.Matt Mueller2011-11-061-2/+0
| |
* | Removing a stale line of code in `.data()`Corey Frang2011-11-061-10/+12
| |
* | Fix #10177. Pass correct index to function-parameter of `.wrap`Toby Brain2011-11-061-2/+4
| |
* | Chrome 10 slice bug has been fixed; remove workaround.Berker Peksag2011-11-061-7/+2
| | | | | | | | | | See: http://code.google.com/p/v8/issues/detail?id=1050 Discussion: jquery/jquery@52a0238.
* | Coerce eq() argument all the time. Fixes #10616Rick Waldron2011-11-061-1/+2
| |
* | User internalKey instead of jQuery.expando. Fixes #10675Rick Waldron2011-11-061-7/+7
| |
* | Streamline getComputedStyle per @JustinDrake's observation.Dave Methvin2011-11-061-5/+2
| |
* | Remove forever-alone regexps in event.jsDave Methvin2011-11-061-5/+1
|/ | | | These should have been removed during the event refactor.
* Correct typo in support.js assigning margin-top with cssText. Fixes #10638.timmywil2011-11-021-1/+1
|
* Add return in the offset support tests if the body is not present in ↵timmywil2011-11-011-0/+6
| | | | frameset docs
* Fix a failing effects test in IE; minor style changes in effectstimmywil2011-11-012-16/+21
|
* Revert "Landing pull request 530. Fixes coniditional path for tr, td ↵timmywil2011-10-311-1/+1
| | | | | | defaultDisplay() calls. Fixes #10416." Fixes #10622. This reverts commit 22f2e8b3dc18dede5f1ccb28cbdf8cb5bcde115f.
* Merge branch 'bug_10613_2'timmywil2011-10-312-41/+35
|\
| * jQuery.support.supportsFixedPosition -> jQuery.support.fixedPosition; Remove ↵timmywil2011-10-312-20/+8
| | | | | | | | jQuery.offset.supportProps and reference support in offset
| * Reduce bytes and minor adjustmentstimmywil2011-10-311-6/+7
| |
| * Construct a new container so that styles on the body are not affectedtimmywil2011-10-311-8/+14
| |
| * Run offset support tests at doc ready. Fixes #10613.timmywil2011-10-311-29/+28
| |
* | Renaming 'runner' to 'hooks' - makes it a little more obvious whats happeningCorey Frang2011-10-312-7/+7
|/