| Commit message (Expand) | Author | Age | Files | Lines |
* | Switched to use 'in' for the setInterval/window check as it also skirts aroun... | John Resig | 2010-08-27 | 1 | -1/+1 |
* | Blackberry 4.6 is capable of finding elements that are no longer in the DOM v... | John Resig | 2010-08-27 | 1 | -1/+3 |
* | Use the native isArray whenever possible. See perf test by jdalton here: http... | John Resig | 2010-08-27 | 1 | -1/+1 |
* | Simplify the logic in $.type, thanks to jdalton for the suggesiton in 5d2be7e... | John Resig | 2010-08-27 | 1 | -4/+2 |
* | Added some tweaks to $.type to handle null and undefined. Added a bunch of un... | John Resig | 2010-08-27 | 1 | -1/+5 |
* | Only attempt to use the IE technique for setting opacity if the filter proper... | John Resig | 2010-08-26 | 1 | -1/+1 |
* | Adding in a jQuery.type(obj) method (a simple map to using Object.prototype.t... | John Resig | 2010-08-25 | 1 | -5/+9 |
* | Tweaked logic for working around Blackberry 4.7 makeArray(RegExp) issue. Fixe... | John Resig | 2010-08-25 | 1 | -1/+3 |
* | Make sure that missing attributes return undefined in Blackberry 4.7. Fixes #... | John Resig | 2010-08-24 | 1 | -0/+6 |
* | .val() on empty options returns the text value rather than the value in Black... | John Resig | 2010-08-23 | 1 | -1/+4 |
* | Fixing getting/setting classes and makeArray(RegExp) for Blackberry 4.7. Fixe... | John Resig | 2010-08-23 | 2 | -2/+4 |
* | Make sure that .data() events don't bubble, per the discussion in 2e10af143b7... | John Resig | 2010-07-27 | 1 | -2/+7 |
* | Fix for issues discussed in 9faab0b74fd316c2161612236d9ea8a01f3c78f8. Goes to... | Dave Reed | 2010-07-23 | 1 | -4/+6 |
* | Ticket 6808. Updated per code review comments by jeresig | InfinitiesLoop | 2010-07-23 | 1 | -6/+3 |
* | Ticket #6808. Changes data() so on plain objects, it uses a function to conta... | InfinitiesLoop | 2010-07-23 | 1 | -4/+25 |
* | Ticket #6804. Adds a changeData event. | InfinitiesLoop | 2010-07-20 | 1 | -0/+1 |
* | Fixing request data param issue. Thanks to mislav for the patch. Fixes #5123. | jeresig | 2010-06-14 | 1 | -1/+1 |
* | Tweak spacing from last commit. | jeresig | 2010-06-14 | 1 | -13/+15 |
* | Fix for http://dev.jquery.com/ticket/6451 | malsup | 2010-06-15 | 1 | -10/+18 |
* | Expose jQuery.uuid (use with caution) and make sure the expando property is u... | John Resig | 2010-04-24 | 2 | -7/+11 |
* | Removed extra semicolon leftover from recent tweaking. | jeresig | 2010-03-31 | 1 | -1/+1 |
* | Merge branch 'master' of github.com:jquery/jquery | Brandon Aaron | 2010-03-23 | 12 | -94/+100 |
|\ |
|
| * | Made it so that you no longer need to build jQuery in order to run the test s... | jeresig | 2010-03-23 | 12 | -94/+100 |
* | | Fixed an issue with setting offset of absolutely positioned element that has ... | Brandon Aaron | 2010-03-22 | 1 | -6/+18 |
* | | Fix setting only one property at a time in .offset({}) | Brandon Aaron | 2010-03-22 | 1 | -5/+8 |
|/ |
|
* | Switch to using String.prototype.trim from String.trim as it's more-widely av... | jeresig | 2010-03-11 | 1 | -2/+3 |
* | Make sure that special remove and teardown events get called when .die() is u... | jeresig | 2010-03-09 | 2 | -29/+21 |
* | Landing a faster trim method. Based upon the work by Travis Hardiman and DBJD... | jeresig | 2010-03-09 | 2 | -18/+24 |
* | No need to use .call() anymore since we switched from .apply() for appendTo, ... | jeresig | 2010-03-05 | 1 | -1/+1 |
* | Attempted to fix #6227, not entirely sure if it's a problem as I'm having a h... | jeresig | 2010-03-05 | 1 | -1/+1 |
* | Added in Ben Alman's proposed event.namespace property (the property holds th... | jeresig | 2010-03-02 | 1 | -5/+11 |
* | Make sure that we don't try to remove data from an applet. Re-Fixes #1675. | jeresig | 2010-03-02 | 1 | -0/+4 |
* | Moving more properties onto jQuery.ajax, also copy them back to the jQuery ob... | jeresig | 2010-03-02 | 1 | -9/+12 |
* | Remove the need for the return in sizzle-jquery and just remove the attempt t... | jeresig | 2010-03-01 | 1 | -2/+0 |
* | More changes to get jQuery in line with JSLint. | jeresig | 2010-03-01 | 8 | -162/+169 |
* | We don't want to increment the Ajax counter if there isn't a global event. | jeresig | 2010-03-01 | 1 | -3/+1 |
* | Land some additional tweaks related to running through JSLint. | jeresig | 2010-03-01 | 5 | -11/+10 |
* | Fixed some cases where expression, expression was used and shouldn't be. | jeresig | 2010-03-01 | 1 | -3/+8 |
* | Made some code tweaks related to running jQuery through JSLint (thanks to Lor... | jeresig | 2010-03-01 | 5 | -38/+45 |
* | Use correct window reference in offset to work properly cross-frame. Fixes #6... | brandonaaron | 2010-02-27 | 1 | -4/+11 |
* | No reason to double-bind the beforeunload event. Fixes #6113. | jeresig | 2010-02-27 | 1 | -2/+1 |
* | Attach data directly to plain objects, no reason to use the central jQuery.ca... | jeresig | 2010-02-27 | 1 | -10/+17 |
* | Merge branch 'master' of github.com:jquery/jquery | jeresig | 2010-02-27 | 1 | -1/+2 |
|\ |
|
| * | Make sure events exist before trying to access them in jQuery.event.handle an... | brandonaaron | 2010-02-27 | 1 | -1/+2 |
* | | Adding in .bind(name, false), .unbind(name, false) support - an easy way to j... | jeresig | 2010-02-27 | 2 | -5/+18 |
* | | Make it so that you can pass in event data to .click(), et. al. Fixes #6187. | jeresig | 2010-02-26 | 1 | -2/+4 |
|/ |
|
* | Make sure that undefined is always returned for undefined data properties. Fi... | jeresig | 2010-02-26 | 1 | -1/+1 |
* | Make sure that unbinding on a plain javascript object works correctly. Fixes ... | jeresig | 2010-02-26 | 1 | -2/+6 |
* | Make sure that the correct type is set for live mouseenter/mouseleave events.... | jeresig | 2010-02-26 | 1 | -0/+1 |
* | Make sure that live events bubble unless explicitly told not to, like a norma... | jeresig | 2010-02-26 | 2 | -11/+23 |