aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* jquery core: closes #2930. Normalizing attr() to return undefined, even when ↵Ariel Flesler2008-05-241-5/+7
| | | | getting DOM attributes.
* jquery core: casting numbers received by val() to string.Ariel Flesler2008-05-241-0/+3
|
* jquery core: saving some bytes and fixing indentation inside jQuery.prop.Ariel Flesler2008-05-231-11/+11
|
* jquery fx: removing a needless comment after the last commit.Ariel Flesler2008-05-161-1/+0
|
* jquery fx: removing 2 unnecessary isFunction calls, options.complete is ↵Ariel Flesler2008-05-161-2/+2
| | | | ALWAYS a function.
* jquery core: Closes #2709, avoiding a bug on IE 6 when using globalEval and ↵Ariel Flesler2008-05-161-1/+3
| | | | a base node is found.
* jquery core: saving some bytes in $.fn.val by using $.makeArray.Ariel Flesler2008-05-161-3/+1
|
* jquery core: updating a comment, thanks to Scott for spotting it.Ariel Flesler2008-05-161-1/+1
|
* jquery ajax: Closes #2567, additional setting for $.ajax called ↵Ariel Flesler2008-05-161-2/+6
| | | | 'dataFilter'. It's an optional function that receives the ajax response, and returns the sanitized version.
* jqueryjquery ajax: closes #1289. Renamed 'xml' and 'r' to 'xhr'.Ariel Flesler2008-05-151-39/+39
|
* Reverted back to using the num helper method in offset.jsBrandon Aaron2008-05-151-4/+6
|
* Added some unit tests for position method. Fixed issue with position in IE.Brandon Aaron2008-05-151-9/+9
|
* jquery core: SHOULD fix #2802. Caching document.defaultView, instead of ↵Ariel Flesler2008-05-151-8/+7
| | | | defaultView.getComputedStyle as it fails on Safari 2.
* jquery ajax: caching repetive conversions/checks for settings.type in $.ajax.Ariel Flesler2008-05-151-8/+9
|
* jquery ajax: fixed #2865 and #2570. Not passing username to xml.open if it's ↵Ariel Flesler2008-05-151-1/+5
| | | | null, or it open a login popup on some Opera's.
* jquery dimensions & offset: moving the local function 'num' to core, so it ↵Ariel Flesler2008-05-152-5/+6
| | | | can be safely used by both modules.
* jquery core: closes #1480, isFunction is even tougher.Ariel Flesler2008-05-141-1/+1
|
* jquery ajax: closes #2842.Ariel Flesler2008-05-141-0/+1
|
* jquery core: fixed deep extend of objects. Closes #1562 & #2820.Ariel Flesler2008-05-141-2/+5
|
* jquery offset: reducing more the code size.Ariel Flesler2008-05-141-8/+10
|
* jquery offset: reducing the code size.Ariel Flesler2008-05-141-10/+10
|
* jquery dimensions: reducing the code size.Ariel Flesler2008-05-141-5/+4
|
* jquery ajax: renaming jQuery.ajax.re to remote.Ariel Flesler2008-05-131-4/+4
|
* jquery ajax: absolute urls were assumed to be cross domain. Closes #2816.Ariel Flesler2008-05-131-1/+5
|
* Closes #2510Ariel Flesler2008-05-131-6/+6
|
* jquery: removing unnecessary trailing and leading spaces & tabs.Ariel Flesler2008-05-137-242/+242
|
* jquery event & fx: tidying some comments.Ariel Flesler2008-05-132-3/+6
|
* jquery core: don't let .attr() set style for xml.Ariel Flesler2008-05-131-1/+1
|
* jquery core: #2548, #2170, #2188, #2099, #1170, #2558, #2521, #2119, #1271, ↵Ariel Flesler2008-05-131-61/+63
| | | | | | | | | | | | | | | #2453, #2537. mass refactoring of $.attr (#2548) * Changes - undefined was returned for falsy values. - expando attributes are used when possible. - one $.isXmlDoc instead of 2. - $.attr( style, ... ) goes thru less useless checks. - reduced code size of recurrent accessed variables/checks. - $.props doesn't need redundant sets of key value anymore. - added cellSpacing to $.props (#2521)
* jquery fx & event: replaced the use of .apply(), where .call() could had ↵Ariel Flesler2008-05-122-7/+7
| | | | been used.
* jquery core: Applied #1318 to jQuery.grepAriel Flesler2008-05-121-1/+1
|
* jquery core: declared undefined locally, to speed up references, and allow ↵Ariel Flesler2008-05-111-1/+4
| | | | munging all their names.
* fix small typo in commentEd Engelhardt2008-05-111-1/+1
|
* jquery core: closes #2811, $.fn.add now calls $.unique internally, also it ↵Ariel Flesler2008-05-081-5/+5
| | | | was failing for array-like f.e: window.
* jquery event: fixed $.fn.load, closes #2819.Ariel Flesler2008-05-081-2/+5
|
* jquery core: closes #2771Ariel Flesler2008-05-081-7/+6
| | | | | | $.inArray now makes a === check because of IE. $.inArray is used in $.fn.index, this is shorter, and breaks the loop when possible. $.fn.index can receive a jquery object, and the first element is used
* jquery event: removing 3 unnecessary lines since the addition of $.event.proxy.Ariel Flesler2008-05-081-3/+0
|
* Making sure originalTarget gets copied over from the original event objectBrandon Aaron2008-05-071-1/+1
|
* jquery core: Reverting the changes added at [5480]Ariel Flesler2008-05-071-2/+2
|
* jquery core: makeArray was parsing forms into array of elements.Ariel Flesler2008-05-061-5/+5
|
* jquery core: removing needless 'else' and 'new' in $.fn.init.Ariel Flesler2008-05-061-13/+8
|
* jquery ajax: support for dynamic data arguments, see #2806; added ↵Jörn Zaefferer2008-05-061-1/+1
| | | | test/data/echoQuery.php for easier testing of sent query strings
* jquery core: enhancements to jquery.map, closes #2803Ariel Flesler2008-05-061-7/+3
|
* jquery core: small code reduction.Ariel Flesler2008-05-061-3/+3
|
* jquery core: code reduction at $.each and $.curCSS.Ariel Flesler2008-05-061-19/+21
|
* jquery selector: reverting [5343], check #1960.Ariel Flesler2008-05-061-22/+16
|
* core: Fixed #2605: .data() now accepts null as a value.Scott González2008-05-031-3/+3
|
* core: Fixed #2605: .data() now accepts null as a value.Scott González2008-05-031-1/+1
|
* core: Fixed #2600: jQuery.extend no longer skips over null properties.Scott González2008-05-021-1/+1
|
* jquery fx: adding jQuery.fx.def as default speed for animationsAriel Flesler2008-05-021-2/+3
|