The official jQuery user interface library.
Go to file
2011-06-02 14:25:25 +02:00
build Builds: used ant parallel task to run the two closure compiler steps and the yui css compressor step in parallel. The http get requests for documentation are also run in parallel. Reduced build time by about 40%. Fixed #7404 - build.xml can run quicker. 2011-05-20 21:17:30 +10:00
demos Widget demo: Some improvements based on Scott's comments. 2011-06-02 14:25:25 +02:00
external QUnit update 2011-05-18 15:14:46 +02:00
tests Tooltip: Added tests for ui object in open and close events. 2011-05-30 18:51:29 -04:00
themes/base Resizable: Remove workaround for handles not working in IE when transparent with overlapping content. Fixes #7397 - Resizable: icon not showing. Fixes #7390 - Resizable: https domain reports 'unsecured items' in IE7. Reopens #7233 - Resizable: resizable handles fail to work in IE if transparent and content overlaps. 2011-05-20 09:53:50 -04:00
ui Tooltip: Pass the tooltip element in the open and close events. 2011-05-30 18:42:06 -04:00
.gitignore Adding a .gitignore file with some presets 2010-03-21 21:11:38 +01:00
AUTHORS.txt Updated AUTHORS.txt with URLs to website and Github, thanks Ralph 2010-03-22 03:39:32 +01:00
GPL-LICENSE.txt removed extra level ui folder 2008-06-07 17:35:27 +00:00
jquery-1.5.1.js Switched to latest stable jQuery 1.5.1 2011-03-02 20:49:20 -05:00
MIT-LICENSE.txt Updated copyright year. 2011-01-17 09:13:18 -05:00
README.md README: Fixed code samples to be (markdown) indented properly with 4 spaces instead of 2. 2011-05-24 07:43:44 -07:00
version.txt Updating the master version to 1.9pre 2011-05-20 10:12:12 -04:00

jQuery UI - Interactions and Widgets for the web

jQuery UI provides interactions like Drag and Drop and widgets like Autocomplete, Tabs and Slider and makes these as easy to use as jQuery itself.

If you want to use jQuery UI, go to jqueryui.com to get started. Or visit the Using jQuery UI Forum for discussions and questions.

If you are interested in helping developing jQuery UI, you are in the right place. To discuss development with team members and the community, visit the Developing jQuery UI Forum.

For committers

When looking at pull requests, first check for proper commit messages.

Unless everything is fine and you can merge directly via GitHub's interface, fetch the remote first:

git remote add [username] [his-fork.git] -f

If you want just one commit and edit the commit message:

git cherry-pick -e [sha-of-commit]

If it should go to the stable brach, cherry-pick it to stable:

git checkout 1-8-stable
git cherry-pick -x [sha-of-commit]