aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of github.com:jquery/jqueryBrandon Aaron2010-03-274-19/+44
|\
| * Mobile WebKit browsers don't support accessing the scroll position of the ↵jeresig2010-03-251-7/+28
| | | | | | | | document/window.
| * Need to expose the isLocal change globally as well.jeresig2010-03-241-1/+1
| |
| * Temporarily disable ajax tests when running in TestSwam.jeresig2010-03-241-0/+4
| |
| * Use custom events for testing unbind instead of the, potentially ↵jeresig2010-03-241-11/+11
| | | | | | | | conflicting, error event.
| * Adjust isPlainObject test to run in an iframe.jeresig2010-03-241-1/+1
| |
* | Merge branch 'master' of github.com:jquery/jqueryBrandon Aaron2010-03-2324-128/+222
|\|
| * Make sure the offset tests work without a built jQuery file.jeresig2010-03-237-7/+64
| |
| * Update other remote test URLs as well.jeresig2010-03-231-4/+4
| |
| * Strip off filename and query string for JSONP Remote test.jeresig2010-03-231-1/+1
| |
| * Update the TestSwarm URL to point to the new jQuery swarm location.jeresig2010-03-231-1/+1
| |
| * Changed the order of the tests to run in the same order in which they're ↵jeresig2010-03-232-10/+11
| | | | | | | | specified in the Makefile (fixed a dimensions test bug that popped up as a result).
| * Handle auto-running of the TestSwarm injection script in the test suite.jeresig2010-03-231-0/+10
| |
| * Made it so that you no longer need to build jQuery in order to run the test ↵jeresig2010-03-2314-115/+141
| | | | | | | | suite (but you'll still need a checkout of QUnit and Sizzle, at least).
* | Fixed an issue with setting offset of absolutely positioned element that has ↵Brandon Aaron2010-03-223-9/+29
| | | | | | | | no position values ("auto"). Fixes #5781.
* | Fix setting only one property at a time in .offset({})Brandon Aaron2010-03-221-5/+8
| |
* | Added unit tests for setting offset one property at a time and added radix ↵Brandon Aaron2010-03-221-7/+12
|/ | | | to parseInt calls
* Switch to using String.prototype.trim from String.trim as it's more-widely ↵jeresig2010-03-111-2/+3
| | | | available.
* Rewrote the live/delegate submit tests to be more generic.jeresig2010-03-091-20/+6
|
* Make sure that special remove and teardown events get called when .die() is ↵jeresig2010-03-093-39/+91
| | | | used. Additionally made sure that default actions are triggered when namespaced events are used. Fixes #6202 and #6250.
* Removing the mention of buliding the docs from the README. Thanks to ↵jeresig2010-03-091-4/+0
| | | | 'phihag' in the forum for the heads-up.
* Landing a faster trim method. Based upon the work by Travis Hardiman and ↵jeresig2010-03-093-24/+36
| | | | DBJDBJ. More details here: http://forum.jquery.com/topic/faster-jquery-trim Fixes #2279, #4452, and #4835.
* No need to use .call() anymore since we switched from .apply() for appendTo, ↵jeresig2010-03-051-1/+1
| | | | etc. Thanks to Robert in 2c08004f6d4e7f11a875190e132d204a25cb9418 for the heads-up.
* I take that back! It was a bug, but the cache had to be triggered and a ↵jeresig2010-03-051-5/+6
| | | | collection of cached nodes had to be passed in (an odd case to be sure). Fixes #6227.
* Attempted to fix #6227, not entirely sure if it's a problem as I'm having a ↵jeresig2010-03-052-2/+10
| | | | hard time reproducing it. Regardless, the change is harmless and potentially even speeds up appendTo, etc. slightly.
* Added in Ben Alman's proposed event.namespace property (the property holds ↵jeresig2010-03-022-16/+36
| | | | the namespaces specified in a call to trigger). Additionally fixes namespaces with .live(). Fixes #6208 and #6209.
* Make sure that we don't try to remove data from an applet. Re-Fixes #1675.jeresig2010-03-021-0/+4
|
* Add in the new level information to the closest(Array) test.jeresig2010-03-021-6/+6
|
* We no longer support globally-triggered events on plain objects. This is a ↵jeresig2010-03-021-13/+4
| | | | trade-off to having good garbage collection on the objects.
* Moving more properties onto jQuery.ajax, also copy them back to the jQuery ↵jeresig2010-03-021-9/+12
| | | | object for backwards compatibility.
* Remove the need for the return in sizzle-jquery and just remove the attempt ↵jeresig2010-03-012-3/+1
| | | | to expose Sizzle completely. jQuery is 100% passing JSLint ('make lint') now.
* Added in integrated JSLint checking against the jQuery source. Just run ↵jeresig2010-03-015-3/+5548
| | | | 'make lint' to see the result.
* More changes to get jQuery in line with JSLint.jeresig2010-03-019-185/+190
|
* We don't want to increment the Ajax counter if there isn't a global event.jeresig2010-03-011-3/+1
|
* Land some additional tweaks related to running through JSLint.jeresig2010-03-015-11/+10
|
* Fixed some cases where expression, expression was used and shouldn't be.jeresig2010-03-011-3/+8
|
* Made some code tweaks related to running jQuery through JSLint (thanks to ↵jeresig2010-03-015-38/+45
| | | | Lorin Larson for the JSLint run).
* Adding unit tests to make sure .scrollTop() and .scrollLeft() work cross-frame.brandonaaron2010-02-281-1/+9
|
* Use correct window reference in offset to work properly cross-frame. Fixes ↵brandonaaron2010-02-272-6/+47
| | | | #6190.
* No reason to double-bind the beforeunload event. Fixes #6113.jeresig2010-02-271-2/+1
|
* Attach data directly to plain objects, no reason to use the central ↵jeresig2010-02-272-13/+28
| | | | jQuery.cache. Fixes #6189.
* Merge branch 'master' of github.com:jquery/jqueryjeresig2010-02-271-1/+2
|\
| * Make sure events exist before trying to access them in jQuery.event.handle ↵brandonaaron2010-02-271-1/+2
| | | | | | | | and removed unnecessary var statement. Fixes #6163.
* | Adding in .bind(name, false), .unbind(name, false) support - an easy way to ↵jeresig2010-02-273-5/+37
| | | | | | | | just stop bubbling and the default action on an element. Fixes #6188.
* | Make it so that you can pass in event data to .click(), et. al. Fixes #6187.jeresig2010-02-262-2/+15
|/
* Make sure that undefined is always returned for undefined data properties. ↵jeresig2010-02-262-7/+17
| | | | Fixes #6166.
* Make sure that unbinding on a plain javascript object works correctly. Fixes ↵jeresig2010-02-262-2/+35
| | | | #6184.
* Make sure that the correct type is set for live mouseenter/mouseleave ↵jeresig2010-02-261-0/+1
| | | | events. Fixes #6169.
* Make sure that live events bubble unless explicitly told not to, like a ↵jeresig2010-02-263-36/+56
| | | | normal event. Fixes #6182.
* Updating the source version to 1.4.3pre.jeresig2010-02-131-1/+1
|