mobile
click here to add a description
click here to add a homepage
Justin's initial mobile proposal.
Removed the revision info and fixed the date pull to work against git log instead of SVN.
Removing the old speed perf directory (the current one is in the main 'speed' directory).
Only need Java if you want to build a minified version of jQuery.
Removed the 'lite' build option (no longer used) and updated the README.
Cleaned out the build directory - a lot of old files that weren't being used anymore.
Removing some old text files.
Added the submodule init/update to the Makefile for 'make test' and updated the README to be more current.
Pull in QUnit using a submodule. In order to build jQuery (and run the tests) you'll need to do 'git submodule init' and 'git submodule update' after checkout.
We don't want to filter out the qunit file.
Fixed the cleaning method to support namespaced elements. Thanks to einaros for the patch recommendation. Fixes #5358.
Fixed == change in ready.
Updated the jQuery suite to use the updated QUnit CSS styling.
Updated the jQuery test suite to use the new QUnit file names.
Moved the jQuery-specific test suite CSS into a separate file.
Adapted the jQuery test suite to handle the toolbar moving inline.
Updated the jQuery suite to use the new 'qunit-' prefix on specific elements.
Fixed the q() method to use same instead of isSet.
Switched from using QUnit's isObj/isSet to the more robust same method.
Moved some jQuery-specific test methods into the core module.
Moved the init test script off into a separate file.
Adding in .unwrap() support, thanks to Ben Alman! Fixes #5191.
Removed the trailing endline from the version.
Full steam ahead! We're going for 1.4.
A follow-up to [6578] (which stopped adding expandos to elements that didn't have data). That broke jQuery.unique() (so we're now using the unique from Sizzle). Using Sizzle's unique (which also sorts in document order) changed how add, andSelf, parents, nextAll, prevAll, and siblings work. after and before were changed to not use .add() (in order to guarantee their position in the jQuery set). Also, jQuery.data(elem) was updated to return that element's data object (instead of its ID).
Getting $.param working well; Patch by ben_alman
Probably not the optimal solution, but tests pass.
jquery event: closes #5250. bind(), unbind() and one() support Object Literals (needs some refactor though)
data should not add expando unless actually adding data
Missing a var on a for loop, caused a variable to be leaked.