aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Tagging the 1.2.1 release.1.2.1John Resig2007-09-171-1/+1
|
* Added fix for bug #1567 - uppercase nodeName test in .add().John Resig2007-09-151-1/+1
|
* Fixed animating to 0% (Bug #1586).John Resig2007-09-151-2/+2
|
* Forgot the 'var' statement, causing variables to leak. (Bug #1592)John Resig2007-09-151-2/+2
|
* Added .eq(Number) back in - I'm convinced that it's more useful than the ↵John Resig2007-09-152-1/+7
| | | | .slice() replacement. lt/gt are still gone, though.
* Added a fix for bug #1612, where :contains() was failing on XML documents, ↵John Resig2007-09-151-1/+1
| | | | in IE.
* Convert relative animations to use -= and += (instead of just - and +, which ↵John Resig2007-09-151-7/+4
| | | | conflicted with normal absolute animations). (Fixes bug #1607) Also fixed a bug in queue.
* etooled the jQuery constructor, makes it work better for embedding (Bug ↵John Resig2007-09-151-20/+19
| | | | #1585). Also took the opportunity to do some renaming in the constructor and init.
* Fixed an issue with the suite expecting a different result for the changed ↵John Resig2007-09-151-3/+3
| | | | triggerHandler behavior.
* Fixed bug #1594, #1565, #1598 - all of which were concerning the improper ↵John Resig2007-09-152-10/+29
| | | | execution of embedded scripts in IE and Safari.
* Added a fix for bug #1580, where the query string was appended to the POST ↵John Resig2007-09-152-13/+20
| | | | data, instead of being left alone.
* Bug #1584, ajaxStop/complete calls weren't called for JSONP requests.John Resig2007-09-151-0/+1
|
* Fix for bug #1600 - multiple selects were being serialized incorrectly.John Resig2007-09-152-5/+5
|
* Make sure that the right event type is always triggered (was causing ↵John Resig2007-09-141-0/+3
| | | | problems with UI's event triggering).
* Fixed some bugs in how .queue() works (it wasn't handling the argument order ↵John Resig2007-09-141-2/+2
| | | | correctly).
* fix clone(true) for IEBrandon Aaron2007-09-131-4/+10
|
* clean ant task shouldn't delete the new test folderBrandon Aaron2007-09-131-10/+10
|
* Absolutely position animations, damn my twichy fingers for commiting too soon.Sean Catchpole2007-09-121-1/+4
|
* Animate should absolutely position if a number is passed (Ex: -700)Sean Catchpole2007-09-121-1/+1
|
* Updated test.js for the runtest build target to reflect the path changes for ↵Paul Mclanahan2007-09-121-5/+5
| | | | the test scripts.
* safari2 should just check the browser and versionBrandon Aaron2007-09-111-5/+5
|
* Include scroll offsets for everything but inline and table-row elementsBrandon Aaron2007-09-111-1/+1
|
* Couple of fixes to the offset methodBrandon Aaron2007-09-111-2/+2
|
* Fixed a bug that was occurring in the packed version of jQuery.John Resig2007-09-101-19/+19
|
* Tagging the 1.2 release.1.2John Resig2007-09-101-1/+1
|
* Made the expando code attach properties to an anonymous object, as opposed ↵John Resig2007-09-101-2/+7
| | | | to the global window object, and fixed a bug where .removeAttribute() tried to fire even if it didn't exist.
* Fixed a bug in .dir() where it would return non-element nodes.John Resig2007-09-101-1/+2
|
* Fixed spelling mistake.John Resig2007-09-091-1/+1
|
* Added an extra check for removing a named cache property - calling it when ↵John Resig2007-09-091-8/+10
| | | | it didn't exist caused an exception.
* Landing a version of $(document)/$(window) .width()/.height(). It won't win ↵John Resig2007-09-091-4/+14
| | | | any awards, but it'll hold us over for this release.
* Added .prevAll() and .nextAll() functionality.John Resig2007-09-092-4/+6
|
* So, apparently, I never committed the second half of the new field value ↵John Resig2007-09-091-13/+42
| | | | code. This allows you to set values on groups of checkboxes, radio buttons, and selects.
* Fixed some line ending issues.John Resig2007-09-091-5/+8
|
* Errors were occuring with getScript, if you called it too early.John Resig2007-09-091-2/+3
|
* Moved the fx queueing over to the new expando system.John Resig2007-09-091-8/+5
|
* .stop() wouldn't resume any queued animations.John Resig2007-09-091-1/+1
|
* Landing the new expando management code. Completely overhauls how data is ↵John Resig2007-09-085-48/+109
| | | | | | | | | | | | | | | | | | | | | | | associated with elements. Plugins will be most interested in: - jQuery.data(elem) -> Unique ID for the element - jQuery.data(elem, name) -> Named data store for the element - jQuery.data(elem, name, value) -> Saves a value to the named data store - jQuery.removeData(elem) -> Remove the expando and the complete data store - jQuery.removeData(elem, name) -> Removes just this one named data store jQuery's .remove() and .empty() automatically clean up after themselves. Once an element leaves a DOM document their events are no longer intact. Thus, statements like so: {{{ $("#foo").remove().appendTo("#bar"); }}} should be written like so: {{{ $("#foo").appendTo("#bar"); }}} in order to avoid losing the bound events.
* Reintroduced .offset() as a default include, added original author credits.John Resig2007-09-083-1/+6
|
* Landing the .clone() rewrite by Brandon (also includes the new event cloning ↵John Resig2007-09-081-33/+14
| | | | functionality .clone(true)).
* Disabled the automatic inclusion of offset.jsJohn Resig2007-09-082-3/+1
|
* Removed the test suite generation code.John Resig2007-09-081-14/+0
|
* Added the new .offset() method, directly imported from Dimensions (heavily ↵John Resig2007-09-083-2/+92
| | | | | | | | worked over by both Brandon and John). Original source: http://brandonaaron.net/jquery/issues/dimensions/new_offset/jquery.offset.js
* Added .hasClass() (Simply just passes through to .is()).John Resig2007-09-081-0/+4
|
* Finished up some of the reorganization.John Resig2007-09-087-5/+7
|
* Reorganzing the jQuery source (first phase).John Resig2007-09-0829-16/+16
|
* Added a new :animated selector - only selects elements that are currently ↵John Resig2007-09-081-1/+4
| | | | being animated.
* Massive FX rewrite. Full list of changes:John Resig2007-09-071-166/+218
| | | | | | | | | | | | - You can now animate non-px values (em and %, for example) - You can animate things things that previously broke (like font-size) - You can now write fx plugins (to add in the ability to animate colors, for example) - Advanced queueing controls were added (.queue(), .dequeue(), and {queue:false}) - Step was re-tooled to work with the new fx plugin scheme - Added the ability to do relative animations - Made it so that you can do simultaneous animations on a single element - A complete refactoring of jQuery.fx, improving naming, and usability
* Fix for bug #760 (fontSize returns different values in IE). This was part of ↵John Resig2007-09-071-0/+15
| | | | a larger issue where IE returned non-pixel values from it's computed style - this normalizes it (thanks to a fix by Dean Edwards).
* Fixed a bug in event - "native" is a reserved word in Safari 2.John Resig2007-09-071-2/+2
|
* Forgot to update the $.param() tests.John Resig2007-09-051-5/+5
|