aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | Simplify the logic in $.type, thanks to jdalton for the suggesiton in ↵John Resig2010-08-271-4/+2
| | | | | | | | 5d2be7e299131a31cffbd73edea59cde30445608.
* | Added some tweaks to $.type to handle null and undefined. Added a bunch of ↵John Resig2010-08-271-1/+5
| | | | | | | | unit tests as well.
* | Only attempt to use the IE technique for setting opacity if the filter ↵John Resig2010-08-261-1/+1
| | | | | | | | property exists (otherwise fallback to the standards-compatible technique).
* | Adding in a jQuery.type(obj) method (a simple map to using ↵John Resig2010-08-251-5/+9
| | | | | | | | Object.prototype.toString.call). Fixes #3330.
* | Tweaked logic for working around Blackberry 4.7 makeArray(RegExp) issue. ↵John Resig2010-08-251-1/+3
| | | | | | | | Fixes #6930.
* | Make sure that missing attributes return undefined in Blackberry 4.7. Fixes ↵John Resig2010-08-241-0/+6
| | | | | | | | #6938.
* | .val() on empty options returns the text value rather than the value in ↵John Resig2010-08-231-1/+4
| | | | | | | | Blackberry 4.7. Fixes #6932.
* | Fixing getting/setting classes and makeArray(RegExp) for Blackberry 4.7. ↵John Resig2010-08-232-2/+4
| | | | | | | | Fixes #6930, #6931.
* | Make sure that .data() events don't bubble, per the discussion in ↵John Resig2010-07-271-2/+7
| | | | | | | | 2e10af143b7eafb7142524f6534a62aee1910bd1. Fixes #6832.
* | Fix for issues discussed in 9faab0b74fd316c2161612236d9ea8a01f3c78f8. Goes ↵Dave Reed2010-07-231-4/+6
| | | | | | | | towards fixing #6808.
* | Ticket 6808. Updated per code review comments by jeresigInfinitiesLoop2010-07-231-6/+3
| |
* | Ticket #6808. Changes data() so on plain objects, it uses a function to ↵InfinitiesLoop2010-07-231-4/+25
| | | | | | | | contain the cache ID to avoid it being JSON serialized.
* | Ticket #6804. Adds a changeData event.InfinitiesLoop2010-07-201-0/+1
|/
* Fixing request data param issue. Thanks to mislav for the patch. Fixes #5123.jeresig2010-06-141-1/+1
|
* Tweak spacing from last commit.jeresig2010-06-141-13/+15
|
* Fix for http://dev.jquery.com/ticket/6451malsup2010-06-151-10/+18
|
* Expose jQuery.uuid (use with caution) and make sure the expando property is ↵John Resig2010-04-242-7/+11
| | | | used in the events module.
* Removed extra semicolon leftover from recent tweaking.jeresig2010-03-311-1/+1
|
* Merge branch 'master' of github.com:jquery/jqueryBrandon Aaron2010-03-2312-94/+100
|\
| * Made it so that you no longer need to build jQuery in order to run the test ↵jeresig2010-03-2312-94/+100
| | | | | | | | 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-221-6/+18
| | | | | | | | no position values ("auto"). Fixes #5781.
* | Fix setting only one property at a time in .offset({})Brandon Aaron2010-03-221-5/+8
|/
* Switch to using String.prototype.trim from String.trim as it's more-widely ↵jeresig2010-03-111-2/+3
| | | | available.
* Make sure that special remove and teardown events get called when .die() is ↵jeresig2010-03-092-29/+21
| | | | used. Additionally made sure that default actions are triggered when namespaced events are used. Fixes #6202 and #6250.
* Landing a faster trim method. Based upon the work by Travis Hardiman and ↵jeresig2010-03-092-18/+24
| | | | 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.
* Attempted to fix #6227, not entirely sure if it's a problem as I'm having a ↵jeresig2010-03-051-1/+1
| | | | 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-021-5/+11
| | | | 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
|
* 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-011-2/+0
| | | | to expose Sizzle completely. jQuery is 100% passing JSLint ('make lint') now.
* More changes to get jQuery in line with JSLint.jeresig2010-03-018-162/+169
|
* 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).
* Use correct window reference in offset to work properly cross-frame. Fixes ↵brandonaaron2010-02-271-4/+11
| | | | #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-271-10/+17
| | | | 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-272-5/+18
| | | | | | | | 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-261-2/+4
|/
* Make sure that undefined is always returned for undefined data properties. ↵jeresig2010-02-261-1/+1
| | | | Fixes #6166.
* Make sure that unbinding on a plain javascript object works correctly. Fixes ↵jeresig2010-02-261-2/+6
| | | | #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-262-11/+23
| | | | normal event. Fixes #6182.
* No need to run trim on every class iteration in addClass, thanks for the ↵jeresig2010-02-131-2/+3
| | | | heads-up Leeoniya.
* Found a better detect for deleting an expando, added back in removeAttribute ↵jeresig2010-02-133-12/+17
| | | | as it does work in IE.
* Clean up expando removal code - only try to delete the expando from an ↵jeresig2010-02-133-29/+19
| | | | element if it's possible.