The official jQuery user interface library.
Go to file
2012-04-20 11:20:50 -04:00
build Build: Removed ant build. 2012-04-18 16:31:30 -04:00
demos Position: Simplify default demo by removing drag functionality on positioned elements. Fixes #5380 - Position Demo breaks when dragging an element. 2012-04-15 14:27:15 -04:00
external Update QUnit. 2012-03-21 13:24:31 -04:00
tests Resizabe tests: Use equal() instead of equals(). 2012-04-20 11:20:50 -04:00
themes/base Resizable: Apply zIndex option to all handles. Partial Fix for #7960- Modal dialog does not disable resizables on the page. 2012-04-19 20:55:02 -04:00
ui Use .jshintrc files. 2012-04-20 11:19:27 -04:00
.gitignore Build: Removed ant build. 2012-04-18 16:31:30 -04:00
.jshintrc Use .jshintrc files. 2012-04-20 11:19:27 -04:00
AUTHORS.txt Add Hans Hillen to AUTHORS.txt 2011-07-19 11:04:52 -04:00
GPL-LICENSE.txt removed extra level ui folder 2008-06-07 17:35:27 +00:00
grunt.js Use .jshintrc files. 2012-04-20 11:19:27 -04:00
jquery-1.7.2.js Upgrade jQuery to 1.7.2. 2012-03-22 09:45:22 -04:00
MIT-LICENSE.txt Updated copyright year. 2012-03-08 10:53:08 -05:00
package.json Build: Update grunt to 0.3.9. Fixes #8257 - Minified files are missing terminating semicolon. 2012-04-18 16:41:53 -04:00
README.md Readme: Add contributor instructions, for someone not looking at site or wiki first. 2011-07-15 21:00:37 -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 contributors

If you want to help and provide a patch for a bugfix or new feature, please take a few minutes and look at our Getting Involved guide, in particular check out the Coding standards and Commit Message Style Guide.

In general, fork the project, create a branch for a specific change and send a pull request for that branch. Don't mix unrelated changes. You can use the commit message as the description for the pull request.

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]