The official jQuery user interface library.
Go to file
2012-03-10 14:16:13 +01:00
build Build: Modify uglify.js to include a newline charakter after the copyright comment, makes diffing against new build a little bit more efficient 2012-03-10 14:16:13 +01:00
demos Accordion: Removed mouseover demo. We shouldn't demo bad UX choices. 2012-02-29 10:42:20 -05:00
external Update QUnit to latest, reverting the bad reset 'patch' 2012-02-29 18:36:40 +01:00
tests Merge branch 'data-naming' 2012-03-01 15:19:57 +01:00
themes/base Accordion: Removed width: 100% on accordion wrapper which was used to fix an animation bug that no longer exists with the new animation code. Fixes #8140 - nested accordion is oversized. 2012-02-27 09:34:00 -05:00
ui Resizable: Update aspectRatio to use calculated aspectRatio in case of: containment - parent; aspectRatio - true. Fixes #8158 - Resizable: aspectRatio: true isn't handled properly. 2012-03-02 06:13:37 -05:00
.gitignore First iteration on grunt-based build. lint, qunit, concat, min and zip all work, but all have various limiations. 2012-03-02 16:45:10 +01: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 Build/grunt: Simplify css_min basic task, concat helper already takes care of executing directives 2012-03-10 13:53:53 +01:00
jquery-1.7.1.js Upgrade jQuery to 1.7.1. 2011-11-22 08:43:09 -05:00
MIT-LICENSE.txt Updated copyright year. 2011-01-17 09:13:18 -05:00
package.json Build/grunt: Integrate CSSLint 2012-03-10 13:45:16 +01:00
README.md Readme: Add contributor instructions, for someone not looking at site or wiki first. 2011-07-15 21:00:37 -04:00
version.txt Build/grunt: Add back version.txt. Will remove that later along with the old build files, until then its useful to compare the new system against the old. 2012-03-09 16:21:45 +01: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]