aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Updating the source version to 1.6.1preJohn Resig2011-05-101-1/+1
|
* Tagging the 1.6.1rc1 release.1.6.1rc1John Resig2011-05-101-1/+1
|
* Updating QUnit.John Resig2011-05-101-0/+0
|
* Updating Sizzle.John Resig2011-05-101-0/+0
|
* More formatting tweaking.John Resig2011-05-101-2/+2
|
* Merge branch 'master' of github.com:jquery/jqueryJohn Resig2011-05-101-0/+0
|\
| * Update QUnittimmywil2011-05-101-0/+0
| |
* | Update sizzle.John Resig2011-05-101-0/+0
|/
* Fix tabs in delegate test.John Resig2011-05-102-4/+4
|
* Make sure that data properties with hyphens are always accessed/set using ↵John Resig2011-05-102-4/+9
| | | | camelCase. Fixes #9124.
* Make sure that mouseenter/mouseleave fire on the correct element when doing ↵John Resig2011-05-102-3/+18
| | | | delegation. Fixes #9069.
* Landing pull request 374. .animate() Callbacks should fire in correct order ↵louisremi2011-05-102-5/+18
|\ | | | | | | | | | | | | | | (unit test included). Fixes #9100. More Details: - https://github.com/jquery/jquery/pull/374 - https://github.com/jquery/jquery/issues/9100
| * oops consolelouisremi2011-05-101-1/+0
| |
| * oops unit testlouisremi2011-05-091-0/+17
| |
| * .animate() Callbacks should fire in correct order (fix #9100 + unit test)louisremi2011-05-091-5/+2
| |
* | Landing pull request 370. Fixes #8763.Sahab Yazdani2011-05-101-1/+1
| | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/370 - https://github.com/jquery/jquery/issues/8763
* | Adds unit/support.js to unit tests. Still have to test for #8763 has to be ↵jaubourg2011-05-105-33/+85
| | | | | | | | done in its own file however, since Firefox refuses to notify global errors in the iframe (attachEvent, window.onerror and script.onerror all fail).
* | Add fallback to prop for the window and document. Switch value to use the ↵timmywil2011-05-102-28/+55
| | | | | | | | property instead of the attribute for back compat.
* | Fixes #9104. Returning null or undefined in a pipe callback shouldn't end up ↵jaubourg2011-05-092-3/+11
| | | | | | | | throwing an exception. Silly, silly, me.
* | Fixes #9109. When jQuery is loaded in the body, then the fake body element ↵jaubourg2011-05-092-2/+36
| | | | | | | | used in support has to be inserted before the document's body for boxModel to be properly detected (got the hint by looking at the code in jQuery mobile). Test page added so that we can keep checking this.
* | Remove value check from formHook; other elements can use value hooktimmywil2011-05-072-4/+3
| |
* | Call extend on prop to avoid changing original properties so that ↵timmywil2011-05-072-8/+14
| | | | | | | | per-property easing is not lost in multiple animations with the same props
* | Set val before hide/show check and fix easing setting; also update ↵timmywil2011-05-073-35/+36
| | | | | | | | | | | | attributes test for autofocus - The object passed should not change so it can be used in future animates, updated src and tests accordingly.
* | Fix per-property easing. Fixes #9067Daniel Pihlstrom2011-05-072-7/+18
| |
* | Landing pull request 372. Test for numeric properties was using wrong ↵gnarf2011-05-072-5/+32
| | | | | | | | | | | | | | variable. Fixes #9074. More Details: - https://github.com/jquery/jquery/pull/372
* | Reduce the boolean list only to those that have corresponding IDLs that ↵timmywil2011-05-072-11/+18
| | | | | | | | | | | | don't require being added to propFix; only set the IDL if it exists - See http://jsfiddle.net/timmywil/u5NLn/ for how boolean attributes are handled in every browser.
* | Global found in valHook for select(get)timmywil2011-05-071-1/+2
| |
* | Global found in dataAttr functiontimmywil2011-05-061-1/+1
| |
* | Check empty string instead of specified as specified is inconsistent on the ↵timmywil2011-05-062-3/+5
| | | | | | | | name attribute. Fixes #9148.
* | tmp was global in the new fn.promise. Fixes #9147.timmywil2011-05-061-1/+2
| |
* | Reduce boolean attribute list to only content attributestimmywil2011-05-061-1/+1
| | | | | | | | - Removed IDL-only boolean attributes as well as officially deprecated attributes that we've not supported before
* | Update boolean attribute list to contain all boolean attributes listed in w3ctimmywil2011-05-051-1/+1
| |
* | Add support for the contenteditable attributetimmywil2011-05-052-3/+8
| |
* | Construct boolHook and rboolean regex to deal with boolean attributes. Fixes ↵timmywil2011-05-051-39/+47
| | | | | | | | | | | | | | | | | | | | | | | | #9129. Fixes #9123. - Construct regex for all attributes which are boolean attributes by specification. + This allows us to do what users expect with enumerated attributes and allows us to no longer complicate the issue. + People are just too confused with passing "true" instead of true when they should, so we won't have to worry about that anymore. - Modularize code for dealing with boolean attributes into a separate hook to keep attr short and fast.
* | Set the property corresponding to a boolean attribute when setting to true. ↵timmywil2011-05-042-3/+8
| | | | | | | | | | | | Fixes #9103. - Once boolean properties had been modified natively, setting the attribute no longer set the current value
* | Run property names through propFix in removeProptimmywil2011-05-041-0/+1
| |
* | Set corresponding property to false when removing boolean attributes. Fixes ↵timmywil2011-05-042-1/+12
| | | | | | | | #9094
* | Update boolean check to avoid crashes, add all name fixes to propFix ↵timmywil2011-05-042-66/+95
| | | | | | | | (properties are case-sensitive in all browsers), add tests for prop
* | If no hook is provided, and a boolean property exists, use that to return an ↵John Resig2011-05-032-11/+43
| | | | | | | | attribute-style value for boolean attributes. Fixes #9079.
* | Fix problem with appending multiple string arguments in IE 6. Fixes #9072.John Resig2011-05-032-5/+16
| |
* | Updating release note script.John Resig2011-05-031-2/+2
| |
* | Fix setting value attributes on option elements. Fixes #9071.timmywil2011-05-032-2/+4
| |
* | Fix QUnit Header linkstimmywil2011-05-021-1/+1
| |
* | Avoid changing html in two places; add minified jQuery as an option to the ↵timmywil2011-05-024-268/+13
| | | | | | | | main test page
* | Add a test page for running the test suite against a fully built and ↵timmywil2011-05-021-0/+264
| | | | | | | | compressed jQuery. Fixes #7650.
* | Less aggressive semicolon insertion for the minified file.John Resig2011-05-021-1/+1
| |
* | Ensure that an endline is in place at the end of the minified jQuery file.John Resig2011-05-021-1/+1
| |
* | Update the UglifyJS code.John Resig2011-05-023-90/+222
| |
* | Fix bug with handling minor releases after major releases in the build script.John Resig2011-05-021-1/+1
| |
* | Updating the source version to 1.6.1preJohn Resig2011-05-021-1/+1
| |