aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* jquery core: forgot to remove a deprecated warning.Ariel Flesler2008-10-291-2/+0
|
* jquery core: improves #3248. Functions are supported by isFunction.Ariel Flesler2008-10-291-1/+1
|
* jquery fx: closes #3496. $.fx.off = true; turns off animations.Ariel Flesler2008-10-221-1/+1
|
* jquery event: extra for #3498. Using the new mouse(enter|leave) shortcuts in ↵Ariel Flesler2008-10-221-1/+1
| | | | $.fn.hover.
* jquery event: closes #3498, adding $.fn.mouseenter & $.fn.mouseleave.Ariel Flesler2008-10-211-2/+2
|
* jquery fx: closes #3495. Animations are synchronous when duration is 0.Ariel Flesler2008-10-181-6/+4
|
* jquery event: closes #3355. Added stopImmediatePropagation() to events.Ariel Flesler2008-10-181-1/+13
|
* jquery core: closes #3485. Fixing a memory leak on IE.Ariel Flesler2008-10-181-2/+6
|
* jquery core: fix for [5828]. Put 'function' instead of 'string'.Ariel Flesler2008-08-141-1/+1
|
* jquery core: closes #3154. makeArray uses typeof instead of attribute ↵Ariel Flesler2008-08-131-1/+1
| | | | sniffing for strings.
* jquery ajax: closes #3249. Slight modification on serializeArray, shorter ↵Ariel Flesler2008-08-131-2/+1
| | | | and faster code, and allows a custom form object.
* jquery core: closes #3248, #3079, #3026, #3176, #3202, #3129. ↵Ariel Flesler2008-08-121-2/+4
| | | | jQuery.makeArray doesn't support functions anymore. Voiding the conflict with Scriptaculous 1.7.x.
* jquery ajax: misc optimization for $.fn.load().Ariel Flesler2008-08-111-3/+2
|
* jquery core: closes #3241. The 'length' property isn't set to jQuery's ↵Ariel Flesler2008-08-111-3/+0
| | | | prototype anymore.
* jquery core: small size optimizations for val().Ariel Flesler2008-08-101-7/+6
|
* jquery ajax: closes #3231. The ajax setting 'dataFilter' can also parse the ↵Ariel Flesler2008-08-071-6/+10
| | | | response.
* jquery ajax: extends #3087. The xhr factory is now an ajax setting called ↵Ariel Flesler2008-08-071-8/+7
| | | | 'xhr' instead of a method (jQuery.getAjaxTransport).
* jquery ajax: closes #3087, #2167, #2128. The ajax transport creation process ↵Ariel Flesler2008-08-041-3/+10
| | | | is exposed to allow overriding.
* jquery event: closes #3127. jQuery.event.special built-in methods were ↵Ariel Flesler2008-07-281-62/+37
| | | | optimized. The mouse(enter|leave) special case is only added for non-IE browsers.Thanks to Mike Helgeson for his help.
* jquery selector: closes #3023. The attribute filter accepts ':'.Ariel Flesler2008-07-281-1/+1
|
* jquery selector: closes #2939. $('[style]') wasn't being handled well.Ariel Flesler2008-07-281-1/+1
|
* jquery core: closes #2652. val() supports option elements, also simplified ↵Ariel Flesler2008-07-231-1/+4
| | | | the code.
* jquery core: closes #2968. Simplified isFunction, dropping support for DOM ↵Ariel Flesler2008-07-231-2/+3
| | | | methods and functions like alert() on IE.
* jquery core: closes #3179. Fallback browser version for non supported browsers.Ariel Flesler2008-07-231-1/+1
|
* jquery core: closes #3159. remove() would unbind form.elements instead of a ↵Ariel Flesler2008-07-151-1/+1
| | | | form.
* jquery event: closes #3112. It wasn't possible to bind 'data' to special events.Ariel Flesler2008-07-091-5/+5
|
* jquery core: Closes #3033. Removed support for .. selector on jQuery.find.Ariel Flesler2008-07-091-1/+1
|
* jquery fx: closes #3128. Saved some bytes when creating custom animations, ↵Ariel Flesler2008-07-031-20/+13
| | | | using macros. Thanks Mike Helgeson.
* jquery event: Optimization to global unbinding on window unload. Thanks Mike ↵Ariel Flesler2008-07-011-3/+6
| | | | Helgeson.
* jquery event: closes #3107. Optimization to global event triggering. Thanks ↵Ariel Flesler2008-07-011-1/+4
| | | | Mike Helgeson.
* jquery core: closes #3102, #3051. $.fn.eq() accepts a stringified integer.Ariel Flesler2008-06-301-1/+1
|
* jquery event: fixed a typo in a comment.Ariel Flesler2008-06-271-1/+1
|
* core: revertd last change, breaks width/height logic in css()Paul Bakaus2008-06-241-1/+1
|
* core: changed jQuery.css to num (uses curCSS) in the height/width methods ↵Paul Bakaus2008-06-241-1/+1
| | | | with dramatically increases performance for height/width
* fx: 1) patch from Ariel removes the need of adding properties like ↵Paul Bakaus2008-06-241-10/+6
| | | | scrollTop and scrollLeft specifically to fx.step - The priority order is style[prop] ? style[prop] : elem[prop], 2) fixed the height/width case - it wasn't possible to animate obj.height/obj.width if there wasn't a style attr.
* jquery ajax: renamed $.fx.speeds.def to _default to match $.fx.step._default ↵Ariel Flesler2008-06-201-2/+2
| | | | naming convention.
* jquery ajax: making Paul's last change([5735]) shorter.Ariel Flesler2008-06-201-1/+2
|
* fx: animate() can now animate any property on a generic object or native ↵Paul Bakaus2008-06-201-7/+5
| | | | wrapper (i.e. window.outerWidth)
* jquery ajax: added a comment explaining the last commit.Ariel Flesler2008-06-171-0/+1
|
* jquery ajax: closes #3052. Additional check on httpData() to keep ↵Ariel Flesler2008-06-171-1/+1
| | | | compatibility with older code (form plugin).
* jquery ajax: Fixes #3045. The protocol wasn't being checked to see if a ↵Ariel Flesler2008-06-171-3/+4
| | | | script is required for cross domain requests.
* jquery core: closes #3053. clean() wasn't parsing 0's. So html( 0 ) was ↵Ariel Flesler2008-06-171-4/+4
| | | | failing failing.
* jquery core: closes #3034. Ids with '-' weren't handled by quickExpr.Ariel Flesler2008-06-131-1/+1
|
* core: fixed #2993: .offsetParent() will now return the body element in all ↵Scott González2008-06-061-1/+1
| | | | browsers for fixed position elements.
* jquery ajax: passing the settings object to httpData instead of just the ↵Ariel Flesler2008-06-051-4/+4
| | | | dataFilter, so that when called it retains the object as "this".
* jquery event: caching the props array and fixing the loop that goes thru it. ↵Ariel Flesler2008-05-281-3/+7
| | | | It was accessing an invalid index.
* jquery ajax: small (misc) improvement to $.param.Ariel Flesler2008-05-281-4/+8
|
* jquery ajax: Closes #1516. load() can get a string of data (not only a hash) ↵Ariel Flesler2008-05-271-1/+1
| | | | and it'll be a GET request.
* jquery core: adding rowSpan to jQuery.props.Ariel Flesler2008-05-271-1/+2
|
* core: fixed offset method for FF3 - FF3 seems to have problems reporting the ↵Paul Bakaus2008-05-251-1/+1
| | | | correct values with getBoundingClientRect on the body element