diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..b7ca95b
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,5 @@
+# Auto detect text files and perform LF normalization
+* text=auto
+
+# JS files must always use LF for tools to work
+*.js eol=lf
diff --git a/.github/workflows/typesense.yaml b/.github/workflows/typesense.yaml
new file mode 100644
index 0000000..baac02b
--- /dev/null
+++ b/.github/workflows/typesense.yaml
@@ -0,0 +1,26 @@
+name: typesense
+on:
+ # Or after a deployment
+ push:
+ branches:
+ - main
+ # Or manually
+ workflow_dispatch:
+
+jobs:
+ typesense:
+ name: Update Typesense
+ if: ${{ github.repository_owner == 'jquery' }} # skip on forks
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Docsearch Scraper
+ shell: bash
+ run: |
+ docker run \
+ -e TYPESENSE_API_KEY=${{ secrets.TYPESENSE_ADMIN_KEY }} \
+ -e TYPESENSE_HOST="${{ secrets.TYPESENSE_HOST }}" \
+ -e TYPESENSE_PORT="443" \
+ -e TYPESENSE_PROTOCOL="https" \
+ -e CONFIG="$(cat docsearch.config.json | jq -r tostring)" \
+ typesense/docsearch-scraper:0.8.0
diff --git a/.gitignore b/.gitignore
index 3689b05..633f1bd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,3 @@
-node_modules
-dist
-config.json
\ No newline at end of file
+/dist/
+/node_modules/
+config.js*
diff --git a/.mailmap b/.mailmap
new file mode 100644
index 0000000..b20d04d
--- /dev/null
+++ b/.mailmap
@@ -0,0 +1,2 @@
+Michał Gołębiowski-Owczarek
+Timo Tijhof
diff --git a/.nvmrc b/.nvmrc
new file mode 100644
index 0000000..3c03207
--- /dev/null
+++ b/.nvmrc
@@ -0,0 +1 @@
+18
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..f9f6f08
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,5 @@
+Welcome! Thanks for your interest in contributing to jqueryui.com. You're **almost** in the right place. More information on how to contribute to this and all other jQuery Foundation projects is over at [contribute.jquery.org](https://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [to our websites](https://contribute.jquery.org/web-sites/).
+
+You may also want to take a look at our [commit & pull request guide](https://contribute.jquery.org/commits-and-pull-requests/) and [style guides](https://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](https://contribute.jquery.org/cla).
+
+You can find us on [IRC](https://irc.jquery.org), specifically in #jqueryui-dev and #jquery-content should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](https://contribute.jquery.org/open-source/).
diff --git a/Gruntfile.js b/Gruntfile.js
new file mode 100644
index 0000000..0b0b25a
--- /dev/null
+++ b/Gruntfile.js
@@ -0,0 +1,276 @@
+var exec = require( "child_process" ).exec,
+ fs = require( "fs" ),
+ jqueryContent = require( "grunt-jquery-content" );
+
+module.exports = function( grunt ) {
+
+grunt.loadNpmTasks( "grunt-jquery-content" );
+
+grunt.initConfig({
+ "build-posts": {
+ page: "page/**"
+ },
+ "build-resources": {
+ all: "resources/**"
+ },
+ wordpress: (function() {
+ var config = require( "./config" );
+ config.dir = "dist/wordpress";
+ return config;
+ })()
+});
+
+grunt.registerTask( "build-download", function() {
+ function writeFiles() {
+ var frontend = require( "download.jqueryui.com" ).frontend({
+ host: "https://download.jqueryui.com",
+ env: "production"
+ }),
+ download = frontend.download,
+ themeroller = frontend.themeroller,
+ wordpressDir = grunt.config( "wordpress.dir" ),
+ resourceCount = 0;
+
+ grunt.file.write( wordpressDir + "/posts/page/download.html",
+ "\n" + download.index() );
+
+ grunt.file.write( wordpressDir + "/posts/page/themeroller.html",
+ "\n" + themeroller.index() );
+
+ grunt.file.expand( { filter: "isFile" }, dir + "/app/dist/**" ).forEach(function( file ) {
+ grunt.file.copy( file,
+ file.replace( dir + "/app/dist", wordpressDir + "/resources" ) );
+ resourceCount++;
+ });
+
+ grunt.log.writeln( "Wrote download.html, themeroller.html and " +
+ resourceCount + " resources." );
+ }
+
+ var path = require( "path" ),
+ dir = path.dirname( require.resolve( "download.jqueryui.com" ) ),
+ done = this.async();
+
+ if ( grunt.option( "noprepare" ) ) {
+ writeFiles();
+ return done();
+ }
+
+ // At this point, the download builder repo is available, so let's initialize it
+ grunt.log.writeln( "Initializing download module, might take a while..." );
+ // TODO: Prefer --omit=dev but can't because `grunt prepare` runs grunt-check-modules,
+ // which fails if a dev dependency is missing.
+ // Since the builder sets `NODE_ENV=production`, we need to set `--omit=''` explicitly
+ // or it'd skip installing dev dependencies.
+ exec( "npm install --omit=''", {
+ cwd: "node_modules/download.jqueryui.com"
+ }, function( error, stdout, stderr ) {
+ if ( error ) {
+ grunt.log.error( stdout );
+ grunt.log.error( stderr );
+ return done( error );
+ }
+
+ exec( "node_modules/.bin/grunt prepare --stack", {
+ cwd: "node_modules/download.jqueryui.com"
+ }, function( error, stdout, stderr ) {
+ if ( error ) {
+ grunt.log.error( stdout );
+ grunt.log.error( stderr );
+ return done( error );
+ }
+
+ writeFiles();
+ done();
+ });
+ });
+});
+
+// Build demos
+//
+// grunt build-demos[:optionalJqueryUiPath]
+//
+grunt.registerTask( "build-demos", function() {
+ function sortByTitle( a, b ) {
+ if ( a.filename === "default" ) {
+ return -1;
+ }
+ if ( b.filename === "default" ) {
+ return 1;
+ }
+ return a.title.toLowerCase() > b.title.toLowerCase() ? 1 : -1;
+ }
+
+ var demosDir, jqueryCore, repoDir, pkg, subdir,
+ path = require( "path" ),
+ cheerio = require( "cheerio" ),
+ targetDir = grunt.config( "wordpress.dir" ) + "/resources/demos",
+ highlightDir = targetDir + "-highlight",
+ demoList = {};
+
+ if ( this.args.length ) {
+ repoDir = this.args[ 0 ];
+ } else {
+
+ // We hijack the jquery-ui checkout from download.jqueryui.com
+ this.requires( "build-download" );
+ repoDir = require( "download.jqueryui.com" ).JqueryUi.getStable().path;
+ }
+ repoDir = path.resolve( repoDir );
+
+ demosDir = path.join( repoDir, "demos" );
+ pkg = require( path.join( repoDir, "package" ) );
+ jqueryCore = fs.readFileSync( path.join( repoDir, "external/jquery/jquery.js" ) )
+ .toString().match( /jQuery JavaScript Library v([0-9.]*)/ )[ 1 ];
+
+ // Copy all demos files to /resources/demos
+ grunt.file.recurse( demosDir, function( abspath, rootdir, subdir, filename ) {
+ if ( filename.startsWith( "." ) ) {
+ return;
+ }
+
+ if ( filename === "index.html" ) {
+ return;
+ }
+
+ var content, $,
+ destDir = `${ targetDir }${ subdir ? `/${ subdir }` : "" }/`,
+ dest = destDir + filename,
+ highlightDest = `${ highlightDir }${ subdir ? `/${ subdir }` : "" }/${ filename }`;
+
+ if ( /html$/.test( filename ) ) {
+ content = replaceResources( grunt.file.read( abspath ) );
+
+ $ = cheerio.load( content );
+ content = deAmd( $, destDir );
+
+ if ( !( /(\/)/.test( subdir ) ) ) {
+ if ( !demoList[ subdir ] ) {
+ demoList[ subdir ] = [];
+ }
+ demoList[ subdir ].push({
+ filename: filename.substr( 0, filename.length - 5 ),
+ title: $( "title" ).text().replace( /[^\-]+\s-\s/, "" ),
+ description: $( ".demo-description" ).remove().html()
+ });
+
+ // Save modified demo
+ content = $.html();
+ grunt.file.write( dest, content );
+
+ // Create syntax highlighted version
+ $ = cheerio.load( " " );
+ $( "code" ).text( content );
+ grunt.file.write( highlightDest, jqueryContent.syntaxHighlight( $.html() ) );
+ } else {
+ content = $.html();
+ grunt.file.write( dest, content );
+ }
+ } else {
+ grunt.file.copy( abspath, dest );
+ }
+ });
+
+ for ( subdir in demoList ) {
+ demoList[ subdir ].sort( sortByTitle );
+ }
+
+ // Create list of all demos
+ grunt.file.write( targetDir + "/demo-list.json", JSON.stringify( demoList, null, "\t" ) );
+
+ function deAmd( $, destDir ) {
+ var i18n, external,
+ bootstrap = $( "script[src='../bootstrap.js']" ),
+ require = $( "script[src='../../external/requirejs/require.js']" ),
+ extra = bootstrap.attr( "data-modules" );
+
+ // Replace the src on the first tag with core
+ require.replaceWith(
+ "" +
+ "\n\t"
+ );
+
+ if ( extra ) {
+ i18n = extra.match( /\S+/g ).filter( function( value ) {
+ return /i18n/.test( value );
+ } );
+ external = extra.match( /\S+/g ).filter( function( value ) {
+ return /external/.test( value );
+ } );
+ if ( i18n.length ) {
+ i18n.forEach( function( file ) {
+ grunt.file.copy( repoDir + "/ui/" + file + ".js", destDir + file + ".js" );
+ bootstrap.before( "\n\t" );
+ } );
+ }
+ if ( external.length ) {
+ external.forEach( function( file ) {
+ grunt.file.copy( repoDir + "/" + file + ".js", targetDir + "/" + file + ".js" );
+ bootstrap.before( "\n\t" );
+ } );
+ }
+ }
+
+ bootstrap
+ .replaceWith( "" );
+ }
+
+ function replaceResources( source ) {
+
+ // ../../ui/themes/* -> CDN
+ source = source.replace(
+ / " );
+
+ // ../demos.css -> /resources/demos/style.css
+ source = source.replace(
+ / /,
+ " " );
+
+ return source;
+ }
+});
+
+grunt.registerTask( "copy-taxonomies", function() {
+ grunt.file.copy( "taxonomies.json",
+ grunt.config( "wordpress.dir" ) + "/taxonomies.json" );
+});
+
+grunt.registerTask( "create-quickdownload", function() {
+
+ // We hijack the jquery-ui checkout from download.jqueryui.com
+ this.requires( "build-download" );
+
+ var done = this.async(),
+ path = require( "path" );
+
+ exec( "grunt build-packages:" + path.resolve( "resources/download" ) + " --stack", {
+ cwd: "node_modules/download.jqueryui.com"
+ }, function( error, stdout, stderr ) {
+ if ( error ) {
+ grunt.log.error( stdout );
+ grunt.log.error( stderr );
+ return done( error );
+ }
+
+ grunt.log.write( stdout );
+ done();
+ });
+});
+
+grunt.registerTask( "build", [
+ "build-posts",
+ "build-resources",
+ "build-download",
+ "build-demos",
+ "copy-taxonomies"
+]);
+
+};
diff --git a/LICENSE-MIT.txt b/LICENSE.txt
similarity index 63%
rename from LICENSE-MIT.txt
rename to LICENSE.txt
index 3a7f10e..90d1df0 100644
--- a/LICENSE-MIT.txt
+++ b/LICENSE.txt
@@ -1,8 +1,13 @@
-Copyright (c) 2012 jQuery Foundation, http://jquery.org/
+Copyright jQuery Foundation and other contributors, https://jquery.org/
This software consists of voluntary contributions made by many
individuals. For exact contribution history, see the revision history
-and logs, available at http://github.com/jquery/jqueryui.com
+available at https://github.com/jquery/jqueryui.com
+
+The following license applies to all parts of this software except as
+documented below:
+
+====
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -22,3 +27,18 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+====
+
+Copyright and related rights for sample code are waived via CC0. Sample
+code is defined as all source code displayed within the prose of the
+documentation.
+
+CC0: http://creativecommons.org/publicdomain/zero/1.0/
+
+====
+
+All files located in the node_modules directory are externally
+maintained libraries used by this software which have their own
+licenses; we recommend you read them, as their terms may differ from the
+terms above.
diff --git a/README.md b/README.md
index 40c2473..bccafbe 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,12 @@
-jqueryui.com
-============
+# jqueryui.com
-## Deploying
+## Building and Deploying
-### Requirements
-* libxml2
-* libxslt
+To build and deploy your changes for previewing in a [`jquery-wp-content`](https://github.com/jquery/jquery-wp-content) instance, follow the [workflow instructions](https://contribute.jquery.org/web-sites/#workflow) from our documentation on [contributing to jQuery Foundation web sites](https://contribute.jquery.org/web-sites/).
-The `xmllint` and `xsltproc` utilities need to be in your path. If you are on Windows, you can get libxml2 and libxslt from GnuWin32 .
+Prerequisites:
+* `apt-get install -y libxml2-utils xsltproc imagemagick`
+* Create `config.json`
-### Build
-
-1. `npm install`
-2. `cp config-sample.json config.json`
-3. Edit config.json per https://github.com/scottgonzalez/grunt-wordpress#config
-4. `grunt deploy`
+Build the dist directory locally:
+* `npx grunt build`
diff --git a/config-sample.json b/config-sample.json
index b954b6f..8392266 100644
--- a/config-sample.json
+++ b/config-sample.json
@@ -1,5 +1,5 @@
{
- "url": "dev.jqueryui.com",
+ "url": "vagrant.jqueryui.com",
"username": "admin",
"password": "secret"
}
diff --git a/docsearch.config.json b/docsearch.config.json
new file mode 100644
index 0000000..f1b797e
--- /dev/null
+++ b/docsearch.config.json
@@ -0,0 +1,63 @@
+{
+ "index_name": "jqueryui_com",
+ "start_urls": [
+ { "url": "https://api.jqueryui.com", "selectors_key": "api", "page_rank": 20 },
+ { "url": "https://jqueryui.com", "page_rank": 10 }
+ ],
+ "sitemap_urls": [
+ "https://jqueryui.com/wp-sitemap.xml",
+ "https://api.jqueryui.com/wp-sitemap.xml"
+ ],
+ "// stop_urls": [
+ "// Exclude URLs containing '?' such as /themeroller/?..."
+ ],
+ "stop_urls": [
+ "\\?",
+ ".com/category/",
+ ".com/resources/",
+ ".com\\/\\d\\."
+ ],
+ "selectors": {
+ "default": {
+ "lvl0": {
+ "selector": "#menu-top .menu-item.current > a",
+ "global": true,
+ "default_value": "Documentation"
+ },
+ "lvl1": "#content h1",
+ "lvl2": "#content h2",
+ "lvl3": "#content h3",
+ "lvl4": "#content h4",
+ "lvl5": "#content h5",
+ "text": "#content p, #content li, #content tr"
+ },
+ "api": {
+ "lvl0": {
+ "selector": "#categories .cat-item.current-cat > a",
+ "global": true,
+ "default_value": "API"
+ },
+ "lvl1": "#content h1",
+ "lvl2": "#content h2, #content h4.name",
+ "lvl3": "#content h3, #content h4:not(.name)",
+ "lvl4": "#content h5, #content strong:first-child",
+ "text": ".entry-content p, .entry-content li"
+ }
+ },
+ "custom_settings": {
+ "token_separators": ["_", "-", "."]
+ },
+ "selectors_exclude": [
+ "header ~ article",
+ ".returns",
+ ".version-details",
+ ".section-title",
+ ".icon-link.toc-link",
+ "[class^=toclevel]",
+ "#toctitle",
+ ".desc strong:first-child",
+ "#quick-nav header h2"
+ ],
+ "min_indexed_level": 2,
+ "scrape_start_urls": false
+}
diff --git a/grunt.js b/grunt.js
deleted file mode 100644
index 726c666..0000000
--- a/grunt.js
+++ /dev/null
@@ -1,213 +0,0 @@
-module.exports = function( grunt ) {
-
-grunt.loadNpmTasks( "grunt-clean" );
-grunt.loadNpmTasks( "grunt-html" );
-grunt.loadNpmTasks( "grunt-wordpress" );
-grunt.loadNpmTasks( "grunt-jquery-content" );
-
-grunt.initConfig({
- clean: {
- folder: "dist/"
- },
- htmllint: {
- page: "page/**.html"
- },
- jshint: {
- options: {
- undef: true,
- node: true
- }
- },
- lint: {
- grunt: "grunt.js"
- },
- watch: {
- pages: {
- files: "page/**.html",
- tasks: "deploy"
- }
- },
- "build-pages": {
- all: grunt.file.expandFiles( "page/**" )
- },
- "build-resources": {
- all: grunt.file.expandFiles( "resources/**" )
- },
- wordpress: grunt.utils._.extend({
- dir: "dist/wordpress"
- }, grunt.file.readJSON( "config.json" ) )
-});
-
-grunt.registerTask( "build-download", function() {
- function writeFiles() {
- var frontend = new ( require( "download.jqueryui.com" ) )( "http://download.jqueryui.com" ),
- resources = grunt.file.expandFiles( dir + "/app/**" ),
- download = frontend.download,
- themeroller = frontend.themeroller;
-
- grunt.file.write( grunt.config( "wordpress.dir" ) + "/posts/page/download.html",
- "\n" + download.index() );
-
- grunt.file.write( grunt.config( "wordpress.dir" ) + "/posts/page/themeroller.html",
- "\n" + themeroller.index() );
-
- resources.forEach(function( file ) {
- grunt.file.copy( file, file.replace( dir + "/app", grunt.config( "wordpress.dir" ) ) );
- });
-
- grunt.log.write( "Wrote download.html, themeroller.html and " + resources.length + " resources." );
- }
- var path = require( "path" ),
- dir = path.dirname( require.resolve( "download.jqueryui.com" ) ),
- done = this.async();
-
- if ( grunt.option( "noprepare" ) ) {
- writeFiles();
- done();
- return;
- }
-
- // at this point, the download builder repo is available, so let's initialize it
- grunt.log.writeln( "Initializing download module, might take a while..." );
- grunt.utils.spawn({
- cmd: "grunt",
- args: [ "prepare" ],
- opts: {
- cwd: "node_modules/download.jqueryui.com"
- }
- }, function( error, result, stringResult ) {
- if ( error ) {
- grunt.log.error( error, stringResult );
- done( false );
- return;
- }
- writeFiles();
- done();
- });
-});
-
-grunt.registerTask( "build-demos", function() {
- // We hijack the jquery-ui checkout from download.jqueryui.com
- this.requires( "build-download" );
-
- var path = require( "path" ),
- jsdom = require( "jsdom" ).jsdom,
- downloadModulePath = path.dirname( require.resolve( "download.jqueryui.com" ) ),
- repoDir = downloadModulePath + "/tmp/jquery-ui",
- versions = grunt.file.readJSON( downloadModulePath + "/config.json" ),
- demosDir = repoDir + "/demos",
- distDir = repoDir + "/dist",
- targetDir = grunt.config( "wordpress.dir" ) + "/resources/demos",
- highlightDir = targetDir + "-highlight",
- demoList = {};
-
- // Copy all demos files to /resources/demos
- grunt.file.recurse( demosDir, function( abspath, rootdir, subdir, filename ) {
- if ( filename === "index.html" ) {
- return;
- }
-
- var content, document, description, title,
- dest = targetDir + "/" + subdir + "/" + filename,
- highlightDest = highlightDir + "/" + subdir + "/" + filename;
-
- if ( /html$/.test( filename ) ) {
- content = replaceResources( grunt.file.read( abspath ) );
-
- if ( !( /(\/)/.test( subdir ) ) ) {
- document = jsdom( content, null, {
- features: {
- FetchExternalResources: [],
- ProcessExternalResources: false
- }
- });
- description = document.getElementsByClassName( "demo-description" )[0];
- if ( description ) {
- description.parentNode.removeChild( description );
- }
- title = document.getElementsByTagName( "title" )[0];
- if ( !demoList[ subdir ] ) {
- demoList[ subdir ] = {};
- }
- demoList[ subdir ][ filename.substr( 0, filename.length - 5 ) ] = {
- title: title.innerHTML.replace( /[^\-]+\s-\s/, '' ),
- description: description ? description.innerHTML : ""
- };
-
- // Save modified demo
- content = "\n" + document.innerHTML;
- grunt.file.write( dest, content );
-
- // Create syntax highlighted version
- document.innerHTML = " ";
- document.getElementsByTagName( "code" )[0].appendChild(
- document.createTextNode( content ) );
- grunt.file.write( highlightDest,
- grunt.helper( "syntax-highlight", { content: document.innerHTML } ) );
- } else {
- grunt.file.write( dest, content );
- }
- } else {
- grunt.file.copy( abspath, dest );
- }
- });
-
- // Create list of all demos
- grunt.file.write( targetDir + "/demo-list.json", JSON.stringify( demoList ) );
-
- // Copy externals into /resources/demos/external
- grunt.file.expandFiles( repoDir + "/external/**" ).forEach(function( filename ) {
- grunt.file.copy( filename, targetDir + "/external/" + path.basename( filename ) );
- });
-
- function replaceResources( source ) {
- // ../../jquery-x.y.z.js -> CDN
- source = source.replace(
- /
-
-jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. Whether you're building highly interactive web applications or you just need to add a date picker to a form control, jQuery UI is the perfect choice.
-
-There's a lot of work that goes into making jQuery UI the most succesful UI library for the Web. Between API design, visual design, implementation, ticket triage, bug fixing, developer relations, infrastructure, and everything else, most of the work is done by volunteers. We'd like to recognize the most prominent contributors below, for a full list of all contributors, see the authors list .
-
-jQuery UI Team
-
-
-Scott González is a web developer living in Raleigh, NC. As project lead, he puts a lot of effort into keeping jQuery UI efficient, consistent, and accessible, as well as adjusting the roadmap to meet the every-changning needs of the community. Scott also works with browser vendors and standards bodies to make the Web a better place for everyone, not just jQuery users.
-
-
-Jörn is a freelance web developer, consultant and trainer, residing in Cologne, Germany. Jörn evolved jQuery’s testsuite into QUnit, a JavaScript unit testing framework, and maintains it. He created and maintains a number of popular plugins. As a jQuery UI development lead, he focuses on the development of new plugins, widgets and utilities.
-
-
-Corey is the President of Momentum Workshop, Inc. and is active in the jQuery community on IRC, and Stack Overflow . He is currently working on the effects and animations for jQuery UI and hopes that his work will "effect" your websites positively.
-
-
-Kris is a Senior Software Engineer on the AeroGear team at Red Hat . He has contributed a number of bug fixes to the jQuery UI project and most recently did a lot of work to finalize the Menu widget.
-
-
-
-Contributors (Past & Present)
-
-
-David Bolter
-Rich Caloggero
-
-Colin Clark
-Michelle D'Souza
-
-Aaron Eisenberger
-
-
-
-Hans Hillen
-
-
-
-
-Eduardo Lundgren
-
-
-
-
-
-
-
-
-
diff --git a/page/about.md b/page/about.md
new file mode 100644
index 0000000..e6f1864
--- /dev/null
+++ b/page/about.md
@@ -0,0 +1,95 @@
+
+
+jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. Whether you're building highly interactive web applications or you just need to add a date picker to a form control, jQuery UI is the perfect choice.
+
+## Vision and Goals
+
+### Collaborative design process
+
+The process for designing and planning the future of the jQuery UI library should be open, transparent and in the hands of the community. We welcome input from anyone interested in engaging with the team, from hard-core developers to visual and interaction designers, accessibility experts, product managers, business people, end users and more.
+
+### Flexible styling and themes
+
+Widgets should provide hooks to enable developers to customize both behavioral and presentational aspects. Transition animations should be optional and customizable. Class names used on internal elements should be meaningful to jQuery UI users and enable styling either through [ThemeRoller](https://jqueryui.com/themeroller/) or hand-written CSS via the [jQuery UI CSS Framework](https://learn.jquery.com/jquery-ui/theming/). As much as possible, style attributes should be separated into the plugin's CSS, not within the scripts in order to make customization simple and clear. Widgets styles should be coded with proportional (em-based or % based) sizing and should re-flow horizontally to fill the space provided.
+
+### Elegant visual and interaction design
+
+All widgets should be designed for simplicity, ease of use and aesthetics. We aim to synthesize best practice examples from mobile and desktop OS, web applications and a bit of common sense to create a robust and flexible set of UI widgets that is visually coherent and consistent in behavior. Features should be pared down to focus on what is practical and commonly needed with a system for extending features through customization.
+
+### Elegant API
+
+The jQuery UI API is designed to be as simple and intuitive as the jQuery API. You find elements using a query selector, then call a succinct method on the resultant set. There are suitable defaults to cover the most common use cases, so quite often it's not necessary to specify any non-default options. All options are optional.
+
+### Progressive enhancement
+
+Since we're developing non-native HTML controls, widgets should be built in such a way that users on browsers and devices that are unable to support JavaScript can still interact with the website or application. Most of the current set of UI widgets follow the best practice of progressive enhancement and we're working to extend that pattern to widgets that don't. In most cases, advanced components can be generated from HTML primitives (i.e. slider from select menu, radio set, or text input), and as the UI library paired with the most popular JavaScript library in the world, we should lead by example in this area. Any UI widget that sits within the flow of a form should be able to store data using semantic HTML elements so the form can be submitted or serialized normally. jQuery UI components should follow the unobtrusive practices put forth by jQuery itself, and should attempt to be forward-looking in its attempts to normalize across browsers and devices (test for features/bugs, not browser sniffing).
+
+### Deep accessibility support
+
+Widgets should also be accessible to JavaScript-capable users who have disabilities such as blindness or deafness (should we ever venture into the arena of audio/video integration, for instance). We attempt to make components accessible through the use of semantic HTML elements within components and following the guidelines specified in the WAI-ARIA spec. Any image-based actions within widgets should provide text equivalents (close icons, expand/collapse icons, etc. should have title attributes at the least).
+
+### Internationalization and localization
+
+Given the global audience for jQuery UI, we should embrace the ability to make our plugins work in a variety of languages and cultures. By abstracting language away from the core plugin code and providing options for supporting cultural differences (right to left reading orientation, date and currency formats, iconography, etc.) we can build in the flexibility needed for a global community.
+
+## jQuery UI Team
+
+There's a lot of work that goes into making jQuery UI the most successful UI library for the Web. Between API design, visual design, implementation, ticket triage, bug fixing, developer relations, infrastructure, and everything else, most of the work is done by volunteers. We'd like to recognize the most prominent contributors below, for a full list of all contributors, see the [authors list](https://github.com/jquery/jquery-ui/blob/master/AUTHORS.txt).
+
+### [Alex Schmitz](http://arschmitz.me/) — Project Lead
+
+Alex is the Project Lead for jQuery UI, jQuery Mobile, and Hammer.js and is a team member on the Chassis CSS Framework, and PEP ( Pointer Events Polyfill ) projects, in addition he assists the jQuery Infrastructure and Content Teams. Alex works for Clipper Digital as the Senior front end architect. Alex is a passionate and vocal advocate of accessibility, open source technology, and the future of mobile web.
+
+### [Jörn Zaefferer](http://bassistance.de/) — Development Lead
+
+Jörn is a freelance web developer, consultant and trainer, residing in Cologne, Germany. Jörn evolved jQuery’s testsuite into QUnit, a JavaScript unit testing framework, and maintains it. He created and maintains a number of popular plugins. As a jQuery UI development lead, he focuses on the development of new plugins, widgets and utilities.
+
+### [Felix Nagel](http://www.felixnagel.com/)
+
+Felix is a [freelance web developer](http://www.felixnagel.com/portfolio/) specializing in TYPO3 CMS and Symfony2 development. He is currently living in Dresden, Germany. Felix has built the [Selectmenu](https://jqueryui.com/selectmenu/) widget and is currently working on the [Datepicker](https://jqueryui.com/datepicker/) widget.
+
+### [Mike Sherov](http://mike.sherov.com)
+
+Mike is a Senior Software Engineer at [Behance](http://blog.behance.net/dev), from Plainview, New York. Mike is involved in bug fixing, testing, and code quality efforts across the jquery suite of projects. He focuses his efforts around the CSS/JS interactions and interacts with standards bodies and browser vendors to move the web forward.
+
+### [Rafael Xavier de Souza](http://rafael.xavier.blog.br/)
+
+Xavier rewrote Globalize on top of CLDR and is now its project lead. He also rewrote and maintains jQuery UI's download builder and ThemeRoller. He has a B.S. in Computer Science from University of Sao Paulo, Brazil. He was a Software Engineer at IBM, where he lead the brazilian team of Q&A and Performance at Linux Technology Center.
+
+## Contributors (Past & Present)
+
+### Aaron Eisenberger
+### [Adam J. Sontag](http://www.adamjsontag.com)
+### [Alex Dovenmuehle](https://github.com/Adovenmuehle)
+### [Ca-Phun Ung](http://www.yelotofu.com/)
+### [Chi Cheng](http://chicheng.me/)
+### [Cody Lindley](http://www.codylindley.com/)
+### Colin Clark
+### [Corey Frang](http://gnarf.net/)
+### [Dan Heberden](https://twitter.com/danheberden)
+### David Bolter
+### [David Petersen](http://blog.petersendidit.com/)
+### Eduardo Lundgren
+### Hans Hillen
+### [Keith Wood](http://keith-wood.name/)
+### [Klaus Hartl](http://stilbuero.de/)
+### [Kris Borchers](http://krisborchers.com/)
+### [Maggie Costello Wachs](http://www.filamentgroup.com/)
+### [Marc Grabanski](http://marcgrabanski.com/)
+### Michelle D'Souza
+### [Patty Toland](http://www.filamentgroup.com/)
+### [Paul Bakaus](http://paulbakaus.com/)
+### [Paul Irish](http://paulirish.com/)
+### [Ralph Whitbeck](http://ralphwhitbeck.com/)
+### Rich Caloggero
+### [Richard D. Worth](http://rdworth.org/)
+### [Scott González](http://nemikor.com/)
+### [Scott Jehl](http://www.filamentgroup.com/)
+### [Thomas Klose](http://www.thomasklose.com/)
+### [TJ VanToll](http://tjvantoll.com)
+### [Todd Parker](http://www.filamentgroup.com/)
diff --git a/page/accordion.html b/page/accordion.html
index 40512f5..a60bfac 100644
--- a/page/accordion.html
+++ b/page/accordion.html
@@ -5,7 +5,9 @@
}
}
+Displays collapsible content panels for presenting information in a limited amount of space.
+
Want to learn more about the accordion widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/addClass.html b/page/addClass.html
index b5dd48b..3a06cc6 100644
--- a/page/addClass.html
+++ b/page/addClass.html
@@ -5,7 +5,9 @@
}
}
-
+Adds class(es) to elements while animating all style changes.
+
+
Want to learn more about the .addClass() method? Check out
-the API documentation .
+the API documentation .
diff --git a/page/animate.html b/page/animate.html
index dc0035e..40d0ecf 100644
--- a/page/animate.html
+++ b/page/animate.html
@@ -5,10 +5,12 @@
}
}
-
+Animate the properties of elements between colors.
+
+
jQuery UI bundles the jQuery Color plugins which provides color animations as
well as many utility functions for working with colors.
-Want to learn more about color animtions? Check out the
+
Want to learn more about color animations? Check out the
jQuery Color documentation .
diff --git a/page/autocomplete.html b/page/autocomplete.html
index eac3107..330a7bf 100644
--- a/page/autocomplete.html
+++ b/page/autocomplete.html
@@ -5,7 +5,9 @@
}
}
+Enables users to quickly find and select from a pre-populated list of values as they type, leveraging searching and filtering.
+
Want to learn more about the autocomplete widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/browser-support.md b/page/browser-support.md
new file mode 100644
index 0000000..ce9d926
--- /dev/null
+++ b/page/browser-support.md
@@ -0,0 +1,59 @@
+
+
+## Current Active Support
+
+jQuery UI 1.14.x supports the following browsers:
+
+* Chrome: Current
+* Firefox: Current
+* Safari: Current
+* Edge: Current
+
+Any problem with jQuery UI in the above browsers should be reported as a bug in jQuery UI.
+
+*Current* denotes that we support the current stable version of the browser.
+
+jQuery UI 1.13.x was the last version line to support IE 11 & Edge Legacy 18.
+
+----
+
+## Unsupported Browsers
+
+While jQuery UI *might* run without major issues in older browser versions, we do not actively test jQuery UI in them and generally do not fix bugs that may appear in them.
+
+Similarly, jQuery UI does not fix bugs in pre-release versions of browsers, such as beta or dev releases. If you find a bug with jQuery UI in a pre-release of a browser, you should report the bug to the browser vendor.
+
+----
+
+## jQuery Core Browser Support
+
+jQuery UI supports several versions of jQuery Core. The version of jQuery being used may further limit which browsers jQuery UI will run in. See [jQuery's browser support](https://jquery.com/browser-support/) for a list of supported browsers by version.
+
+----
+
+## Assistive Technology
+
+jQuery UI officially tries to support the most popular screen reader and browser combinations. We aim for full accessibility with the following combinations:
+
+* Current NVDA with current Chrome or Firefox
+* Current VoiceOver with current Safari
+* Current JAWS with current Chrome or Edge
+
+However, due to [limited resources](https://blog.jqueryui.com/2021/10/jquery-maintainers-update-and-transition-jquery-ui-as-part-of-overall-modernization-efforts/), we rely on the community to report issues in the configurations above.
+
+Unfortunately limitations and bugs in some of these assistive technologies make it hard to support all of them at the same time. We do our best to support the widest range while advocating for improved accessibility standards. See the [Screen Reader User Survey #10](https://webaim.org/projects/screenreadersurvey10/#browsercombos) for usage statistics.
+
+### Older/Other Assistive Technology
+
+We accept patches for older/other AT if:
+
+* The code is maintainable/not super hacky.
+* The changes are relatively small.
+* The changes don't break or harm accessibility for conforming AT.
+
+We value interactions over technical implementations. Diverging from the roles and attributes in the ARIA authoring practices is acceptable if the interactions remain as expected and overall accessibility is improved.
diff --git a/page/button.html b/page/button.html
index 3b10bb2..904b268 100644
--- a/page/button.html
+++ b/page/button.html
@@ -5,7 +5,9 @@
}
}
+Enhances standard form elements like buttons, inputs and anchors to themeable buttons with appropriate hover and active styles.
+
Want to learn more about the button widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/changelog.md b/page/changelog.md
index 12d2cf1..54188e3 100644
--- a/page/changelog.md
+++ b/page/changelog.md
@@ -1,7 +1,95 @@
+## [1.14.2 Changelog](/changelog/1.14.2/)
+Released on January 28, 2026
+
+## [1.14.1 Changelog](/changelog/1.14.1/)
+Released on October 30, 2024
+
+## [1.14.0 Changelog](/changelog/1.14.0/)
+Released on August 5, 2024
+
+## [1.14.0-beta.2 Changelog](/changelog/1.14.0-beta.2/)
+Released on June 14, 2024
+
+## [1.14.0-beta.1 Changelog](/changelog/1.14.0-beta.1/)
+Released on May 15, 2024
+
+## [1.13.3 Changelog](/changelog/1.13.3/)
+Released on April 26, 2024
+
+## [1.13.2 Changelog](/changelog/1.13.2/)
+Released on July 14, 2022
+
+## [1.13.1 Changelog](/changelog/1.13.1/)
+Released on January 20, 2022
+
+## [1.13.0 Changelog](/changelog/1.13.0/)
+Released on October 7, 2021
+
+## [1.13.0-rc.3 Changelog](/changelog/1.13.0-rc.3/)
+Released on September 25, 2021
+
+## [1.13.0-rc.2 Changelog](/changelog/1.13.0-rc.2/)
+Released on September 3, 2021
+
+## [1.12.1 Changelog](/changelog/1.12.1/)
+Released on September 14, 2016
+
+## [1.12.0 Changelog](/changelog/1.12.0/)
+Released on July 8, 2016
+
+## [1.12.0-rc.2 Changelog](/changelog/1.12.0-rc.2/)
+Released on April 21, 2016
+
+## [1.12.0-rc.1 Changelog](/changelog/1.12.0-rc.1/)
+Released on March 17, 2016
+
+## [1.12.0-beta.1 Changelog](/changelog/1.12.0-beta.1/)
+Released on December 23, 2015
+
+## [1.11.4 Changelog](/changelog/1.11.4/)
+Released on March 11, 2015
+
+## [1.11.3 Changelog](/changelog/1.11.3/)
+Released on February 12, 2015
+
+## [1.11.2 Changelog](/changelog/1.11.2/)
+Released on October 16, 2014
+
+## [1.11.1 Changelog](/changelog/1.11.1/)
+Released on August 13, 2014
+
+## [1.11.0 Changelog](/changelog/1.11.0/)
+Released on June 26, 2014
+
+## [1.10.4 Changelog](/changelog/1.10.4/)
+Released on January 17, 2014
+
+## [1.10.3 Changelog](/changelog/1.10.3/)
+Released on May 3, 2013
+
+## [1.10.2 Changelog](/changelog/1.10.2/)
+Released on March 14, 2013
+
+## [1.10.1 Changelog](/changelog/1.10.1/)
+Released on February 15, 2013
+
+## [1.10.0 Changelog](/changelog/1.10.0/)
+Released on January 17, 2013
+
+## [1.9.2 Changelog](/changelog/1.9.2/)
+Released on November 23, 2012
+
+## [1.9.1 Changelog](/changelog/1.9.1/)
+Released on October 25, 2012
+
## [1.9.0 Changelog](/changelog/1.9.0/)
Released on October 5, 2012
@@ -57,7 +145,7 @@ Released on January 19, 2011
Released on January 13, 2011
## [1.8.7 Changelog](/changelog/1.8.7/)
-Released on December, 2010
+Released on December 8, 2010
## [1.8.6 Changelog](/changelog/1.8.6/)
Released on October 25, 2010
@@ -77,12 +165,44 @@ Released on April 21, 2010
## [1.8 Changelog](/changelog/1.8/)
Released on March 18, 2010
-
+## [1.8rc3 Changelog](/changelog/1.8rc3/)
+Released on February 25, 2010
+
+## [1.8rc2 Changelog](/changelog/1.8rc2/)
+Released on February 16, 2010
+
+## [1.8rc1 Changelog](/changelog/1.8rc1/)
+Released on January 27, 2010
+
+## [1.8b1 Changelog](/changelog/1.8b1/)
+Released on January 20, 2010
+
+## [1.8a2 Changelog](/changelog/1.8a2/)
+Released on December 29, 2009
+
+## [1.8a1 Changelog](/changelog/1.8a1/)
+Released on August 12, 2009
+
+## [1.7.2 Changelog](/changelog/1.7.2/)
+Released on June 19, 2009
+
+## [1.7.1 Changelog](/changelog/1.7.1/)
+Released on March 18, 2009
+
+## [1.7 Changelog](/changelog/1.7/)
+Released on March 3, 2009
+
+## [1.6 Changelog](/changelog/1.6/)
+Released on April 16, 2009
+
+## [1.5.3 Changelog](/changelog/1.5.3/)
+Released on November 28, 2008
+
+## [1.5.2 Changelog](/changelog/1.5.2/)
+Released on July 9, 2008
-We're still working on importing the older changelogs. In the meantime,
-you can find the old changelogs on the old docs site:
-[docs.jquery.com/UI/Changelog](http://docs.jquery.com/UI/Changelog).
+## [1.5.1 Changelog](/changelog/1.5.1/)
+Released on June 26, 2008
-We're always looking for help, so if you're looking for an easy way to give
-back to the community, consider [forking this site](https://github.com/jquery/jqueryui.com),
-adding a chnagelog or two and sending a pull request.
+## [1.5 Changelog](/changelog/1.5/)
+Released on June 8, 2008
diff --git a/page/changelog/1.10.0.md b/page/changelog/1.10.0.md
new file mode 100644
index 0000000..cfbf5f7
--- /dev/null
+++ b/page/changelog/1.10.0.md
@@ -0,0 +1,234 @@
+
+
+Released on January 17, 2013
+
+## Build
+
+* Added: Support for pre-releases in release script. ([1f5dd8d](https://github.com/jquery/jquery-ui/commit/1f5dd8d68ef568ea4ec28c3881ba438e4f946f3f))
+
+## Core & Utilities
+
+* Removed: Use of bgiframe. ([68cab60](https://github.com/jquery/jquery-ui/commit/68cab60fa758b34c024742daa9dbc3e6bf6a0521))
+
+### UI Core
+
+* Removed: $.support.minHeight. ([0c67254](https://github.com/jquery/jquery-ui/commit/0c672543bf897c0d8c162a2daedbf3a85206f227))
+* Removed: $.ui.contains. ([#8902](https://bugs.jqueryui.com/ticket/8902), [747d853](https://github.com/jquery/jquery-ui/commit/747d8534520fc3abad81b3c171fa931149398d99))
+* Removed: $.ui.ie6. ([995eb12](https://github.com/jquery/jquery-ui/commit/995eb1261e5e6bb57cad292a56911893d539472e))
+* Removed: $.ui.isOver() and $.ui.isOverAxis(). ([#8891](https://bugs.jqueryui.com/ticket/8891), [3ec0c2e](https://github.com/jquery/jquery-ui/commit/3ec0c2e5728da9b9b9955dfe18073d3985e61a52))
+* Fixed: Patch over broken .removeData() in jQuery 1.6.1 + 1.6.2. ([886d6fe](https://github.com/jquery/jquery-ui/commit/886d6fe9fb8bcbf5e4e968bdd535a0fbcf2b88f7))
+
+### Widget Factory
+
+* Removed: Data fallbacks for widget names. ([#8801](https://bugs.jqueryui.com/ticket/8801), [d44557f](https://github.com/jquery/jquery-ui/commit/d44557f50ad7b3c512bdd8bc2ba3eed5672b3b12))
+* Removed: Use of metadata plugin. ([#7192](https://bugs.jqueryui.com/ticket/7192), [7678b90](https://github.com/jquery/jquery-ui/commit/7678b90ae843c2db48b29ed0e933764ef1d4214e))
+* Removed: widgetBaseClass property. ([#8155](https://bugs.jqueryui.com/ticket/8155), [cb030cb](https://github.com/jquery/jquery-ui/commit/cb030cbc1b9098a5eee0776328bea95d964b17ac))
+* Added: Ability to use _on() even when disabled. ([#8800](https://bugs.jqueryui.com/ticket/8800), [84cd214](https://github.com/jquery/jquery-ui/commit/84cd214486769a3527b3ab420219c8f9c78f9879))
+* Fixed: Bridge fails if widgetFullName is not supplied. ([#8775](https://bugs.jqueryui.com/ticket/8775), [75bd22e](https://github.com/jquery/jquery-ui/commit/75bd22eb731f5a81099ad97c88eede3862195fec))
+* Fixed: Calling _super() calls wrong inherited widget. ([#8876](https://bugs.jqueryui.com/ticket/8876), [8b15aaf](https://github.com/jquery/jquery-ui/commit/8b15aaf4964490a2a84e8f9d32d86ac750e0d4a2))
+* Fixed: widgetEventPrefix is incorrect when inheriting with jQuery UI 1.9.1. ([#8805](https://bugs.jqueryui.com/ticket/8805), [9e858ba](https://github.com/jquery/jquery-ui/commit/9e858ba14ac0ae26780581a34565e84e0ae108ef))
+* Fixed: ui-state-disabled blocks destroy to be triggered on remove. ([#8769](https://bugs.jqueryui.com/ticket/8769), [1cdeecc](https://github.com/jquery/jquery-ui/commit/1cdeeccab0e76495842cad9d04e686aee802777d))
+
+### Position
+
+* Removed: offset option. ([#6982](https://bugs.jqueryui.com/ticket/6982), [2582bfa](https://github.com/jquery/jquery-ui/commit/2582bfab46613da613f1a3354bc733b68a110b95))
+
+## Interactions
+
+### Draggable
+
+* Fixed: Resizable handle with inner element does not work, when its also draggable. ([#8757](https://bugs.jqueryui.com/ticket/8757), [cf9fbce](https://github.com/jquery/jquery-ui/commit/cf9fbce13931732dc4b06d491ef2a01c4921faf1))
+
+### Resizable
+
+* Removed: Pixel shifting for IE6. ([d73edff](https://github.com/jquery/jquery-ui/commit/d73edfff769603681a0889585b45062cdf98743e))
+* Added: Support for complex markup in handles. ([#8756](https://bugs.jqueryui.com/ticket/8756), [0bff32a](https://github.com/jquery/jquery-ui/commit/0bff32a2b1c2273e46dc0f70bc1058ad304ebcc5))
+* Fixed: Grid does not respect min/max dimensions. ([#8435](https://bugs.jqueryui.com/ticket/8435), [6e0a055](https://github.com/jquery/jquery-ui/commit/6e0a0553ce85997e4f37597800b440b1e4371b5b))
+* Fixed: Modal dialogs do not disable resizables on the page. ([#7960](https://bugs.jqueryui.com/ticket/7960), [0cd470b](https://github.com/jquery/jquery-ui/commit/0cd470b0d5f8c617e761c4a6c90aeea4e3f54128))
+* Fixed: alsoResize option doesn't work with containment. ([#4603](https://bugs.jqueryui.com/ticket/4603), [#5559](https://bugs.jqueryui.com/ticket/5559), [5ba267e](https://github.com/jquery/jquery-ui/commit/5ba267e7c78f0bc257383c822d241c5369e8e49d))
+* Fixed: Setting width and height when only one is changing. ([#7605](https://bugs.jqueryui.com/ticket/7605), [3974b55](https://github.com/jquery/jquery-ui/commit/3974b55ba5078799df818c78d9273e11d9796ff3))
+* Fixed: Callbacks ignore the grid. ([#5545](https://bugs.jqueryui.com/ticket/5545), [3974b55](https://github.com/jquery/jquery-ui/commit/3974b55ba5078799df818c78d9273e11d9796ff3))
+* Fixed: resize event reports unconstrained ui.size. ([#5817](https://bugs.jqueryui.com/ticket/5817), [3974b55](https://github.com/jquery/jquery-ui/commit/3974b55ba5078799df818c78d9273e11d9796ff3))
+* Fixed: Absolutely positioned element inside scrollable element is repositioned when resized. ([#3815](https://bugs.jqueryui.com/ticket/3815), [a1b32b5](https://github.com/jquery/jquery-ui/commit/a1b32b59d57c2171af9ba0ed6b35ccde28794e3b))
+
+### Selectable
+
+* Fixed: Lasso offset issue with scrolling. ([#8915](https://bugs.jqueryui.com/ticket/8915), [6953589](https://github.com/jquery/jquery-ui/commit/695358983e58c9f3d0c6b755ce89fa92adbea0ea))
+
+## Widgets
+
+### Accordion
+
+* Removed: clearStyle, autoHeight and fillSpace options. ([#5868](https://bugs.jqueryui.com/ticket/5868), [#5872](https://bugs.jqueryui.com/ticket/5872), [0cdd559](https://github.com/jquery/jquery-ui/commit/0cdd5591be15b2d605191656f3468f36f7d5a94d))
+* Removed: animated option. ([#8601](https://bugs.jqueryui.com/ticket/8601), [8d35c03](https://github.com/jquery/jquery-ui/commit/8d35c03dfdb3d4368bf38b113e25c06a82129cd5))
+* Removed: change and changestart events. ([#6841](https://bugs.jqueryui.com/ticket/6841), [#6843](https://bugs.jqueryui.com/ticket/6843), [bc44e61](https://github.com/jquery/jquery-ui/commit/bc44e61dd9e6797bb23bc3038d43436a8ba052c3))
+* Removed: activate method and support for non-number/falsey values for active option. ([#6837](https://bugs.jqueryui.com/ticket/6837), [#6853](https://bugs.jqueryui.com/ticket/6853), [d67bc41](https://github.com/jquery/jquery-ui/commit/d67bc412a869938cb85ff02e10a78befd7409a1a))
+* Removed: icons.headerSelected option. ([#6835](https://bugs.jqueryui.com/ticket/6835), [fd952c5](https://github.com/jquery/jquery-ui/commit/fd952c5a7956ac583a44475f481bdec9efa7857b))
+* Removed: navigation and navigatinFilter options. ([#5870](https://bugs.jqueryui.com/ticket/5870), [09eed56](https://github.com/jquery/jquery-ui/commit/09eed560f87a122258818292ba3743f9382753c3))
+* Removed: resize method. ([#6839](https://bugs.jqueryui.com/ticket/6839), [974e5f8](https://github.com/jquery/jquery-ui/commit/974e5f81964bb2449a5554d1bac1c82beeee9067))
+* Added: Ability to add/remove panels. ([#4672](https://bugs.jqueryui.com/ticket/4672), [d657538](https://github.com/jquery/jquery-ui/commit/d657538ed57a96b610853d69e9fbf559c5ae230f))
+
+### Autocomplete
+
+* Removed: CSS workaround for IE6. ([703d62f](https://github.com/jquery/jquery-ui/commit/703d62f2982fb6ec2e85e5bf5e96be44b0544a34))
+* Removed: Data fallback for item.autocomplete. ([#8156](https://bugs.jqueryui.com/ticket/8156), [9202bb7](https://github.com/jquery/jquery-ui/commit/9202bb7df57b159003f6a0659cbe9359fdeb8196))
+* Fixed: XSS in combobox demo. ([#8859](https://bugs.jqueryui.com/ticket/8859), [5fee6fd](https://github.com/jquery/jquery-ui/commit/5fee6fd5000072ff32f2d65b6451f39af9e0e39e))
+* Fixed: Handle detached elements for appendTo after create. ([da17a23](https://github.com/jquery/jquery-ui/commit/da17a232ca554254eabd3583805b381f6b525ec5))
+* Fixed: Autocomplete dropdown positioned incorrectly in IE. ([#8749](https://bugs.jqueryui.com/ticket/8749), [d693ce5](https://github.com/jquery/jquery-ui/commit/d693ce5324f6f3be8479ef083e4eaf3c705ef043))
+* Fixed: Autocomplete fails when appendTo is detached from the DOM. ([#8858](https://bugs.jqueryui.com/ticket/8858), [dec8445](https://github.com/jquery/jquery-ui/commit/dec844570fae5edf56876b760b9358fde2ecb5e7))
+
+### Button
+
+* Fixed: Refresh does not re-enable disabled button. ([#8828](https://bugs.jqueryui.com/ticket/8828), [93abe02](https://github.com/jquery/jquery-ui/commit/93abe02b6052143fac30393291da3fc254bde996))
+* Fixed: Incorrect state after double click in Firefox. ([#5518](https://bugs.jqueryui.com/ticket/5518), [caacf8f](https://github.com/jquery/jquery-ui/commit/caacf8f5041ad434b8e0dd1069936eb91e4c3394))
+* Fixed: Toolbar demo ugly in IE. ([#5253](https://bugs.jqueryui.com/ticket/5253), [e77edc6](https://github.com/jquery/jquery-ui/commit/e77edc60991dc0d9908e056aa05adc49b9daa7cd))
+* Fixed: Button doesn't remove active state when using keyboard. ([#8559](https://bugs.jqueryui.com/ticket/8559), [f13b5df](https://github.com/jquery/jquery-ui/commit/f13b5dfa7fdb480b818cfbf07e35088460e7b5c9))
+* Fixed: Inconsistent styling based on markup. ([#7996](https://bugs.jqueryui.com/ticket/7996), [83e2a59](https://github.com/jquery/jquery-ui/commit/83e2a59ace6f00b785dd6f46fd63b416d86e0cc2))
+* Fixed: Buttonset not applied to radio group with quotation/apostrophe in name. ([#7505](https://bugs.jqueryui.com/ticket/7505), [cc7df71](https://github.com/jquery/jquery-ui/commit/cc7df712cc4ca90f6d6db599c5ff91b690921581))
+* Fixed: Button doesn't remove hover state if they are disabled. ([#5295](https://bugs.jqueryui.com/ticket/5295), [8e1ceba](https://github.com/jquery/jquery-ui/commit/8e1ceba717b85e42a13cc1660e7c8e9e9c26c384))
+
+### Datepicker
+
+* Removed: Data event handlers. ([e21fc29](https://github.com/jquery/jquery-ui/commit/e21fc296102c2b8b159404c378cf39470da9a13e))
+* Removed: Support for setting options via custom attributes. ([7c53af0](https://github.com/jquery/jquery-ui/commit/7c53af0abc9d0c5b2ae1bcad30d01b7e2e441b75))
+* Removed: iframe cover for IE6. ([5bd1965](https://github.com/jquery/jquery-ui/commit/5bd19650a30cbfc2e7f75135e0ebf1788c4b9767))
+* Added: Belarusian locale. ([#8885](https://bugs.jqueryui.com/ticket/8885), [cff4c3c](https://github.com/jquery/jquery-ui/commit/cff4c3c4f3395d3f9837bd1affb8107d7ae65841))
+* Added: Canadian French locale. ([#8917](https://bugs.jqueryui.com/ticket/8917), [9f841df](https://github.com/jquery/jquery-ui/commit/9f841dffcc83105cc2517c7e31640848fbfff0af))
+* Added: Kyrgyz localization. ([#8787](https://bugs.jqueryui.com/ticket/8787), [1e19e5e](https://github.com/jquery/jquery-ui/commit/1e19e5e90bd801540e98c67f583a2f5aa30ffb53))
+* Added: Norwegian Bokmål and Norwegian Nynorsk locales. ([#8886](https://bugs.jqueryui.com/ticket/8886), [70f5d18](https://github.com/jquery/jquery-ui/commit/70f5d18c715ba1c759393856f0f70acfddbee07a))
+* Added: Run JSHint test in unit tests. ([20a29df](https://github.com/jquery/jquery-ui/commit/20a29dfd61f0f632c0d08aa0d1db3057668f3f7c))
+* Fixed: Datepicker allows changing year to something outside yearRange. ([#7362](https://bugs.jqueryui.com/ticket/7362), [eca5abd](https://github.com/jquery/jquery-ui/commit/eca5abd873675f5cc7b96641c723b7e35a4260bc))
+* Fixed: Datepicker should reinitialize if dpDiv is removed. ([#5679](https://bugs.jqueryui.com/ticket/5679), [7ffcaa2](https://github.com/jquery/jquery-ui/commit/7ffcaa2e3b673e7e4178293224d5a15f65cbbcf9))
+* Fixed: Faroese locale has incorrect firstDay. ([#8815](https://bugs.jqueryui.com/ticket/8815), [3d96f20](https://github.com/jquery/jquery-ui/commit/3d96f20506bd20f4cdbf5c1dc33149ad6ea5f62c))
+* Fixed: Changing disabled option doesn't work. ([#8883](https://bugs.jqueryui.com/ticket/8883), [598cdae](https://github.com/jquery/jquery-ui/commit/598cdae199fed9b3aa1700142e8e00a61fc6e61a))
+
+### Dialog
+
+* Removed: Disabling dialogs is not supported. ([0be97bf](https://github.com/jquery/jquery-ui/commit/0be97bf8c01394cd68134b104bcbf30b27859531))
+* Removed: minHeight workaround for IE6. ([5bd4b11](https://github.com/jquery/jquery-ui/commit/5bd4b11d9ba8c8cfd51f2d31ca56357191631d24))
+* Removed: Unnecessary style properties. ([2c16435](https://github.com/jquery/jquery-ui/commit/2c1643509aee3cdeb0b5b7cc86a3cfa5ceb9fb60))
+* Removed: stack option. ([#8722](https://bugs.jqueryui.com/ticket/8722), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Removed: zIndex option. ([#8729](https://bugs.jqueryui.com/ticket/8729), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Deprecated: Array and string notations for position option. ([#8824](https://bugs.jqueryui.com/ticket/8824), [a0310eb](https://github.com/jquery/jquery-ui/commit/a0310eb091f679c8ba002d57a30b53f8e7ea8ef3))
+* Added: Allow dialog to be attached to a element other than body. ([#7948](https://bugs.jqueryui.com/ticket/7948), [70b16ef](https://github.com/jquery/jquery-ui/commit/70b16ef445d8f9947fd414894d97673706ee8c6f))
+* Added: Improve accessibility - add an aria-describedby attribute on the dialog if there is nothing yet in the dialog content.([2a887e4](https://github.com/jquery/jquery-ui/commit/2a887e43213c4dbb21509b670cf5dc8ac2c67573))
+* Added: Allow Icons to be specified for Dialog buttons. ([#6830](https://bugs.jqueryui.com/ticket/6830), [9996173](https://github.com/jquery/jquery-ui/commit/999617343f7b813dc1c8d9c9048489e4d99d0470))
+* Added: Restore focus to opener. ([#8730](https://bugs.jqueryui.com/ticket/8730), [14691ae](https://github.com/jquery/jquery-ui/commit/14691ae6feea2732ec5aeae57b4275aa0e4d1beb))
+* Added: Use button widget for close button. ([83a9f21](https://github.com/jquery/jquery-ui/commit/83a9f219bf40ff834d660020bbfa7de550e48a0c))
+* Fixed: Scrollbar is difficult to use with overflow content and resize handle. ([#4575](https://bugs.jqueryui.com/ticket/4575), [1ed853f](https://github.com/jquery/jquery-ui/commit/1ed853f7bb9f58af09e55e207534ecb10bcbe286))
+* Fixed: Destroying a dialog leaves style, scrollleft, and scrolltop leftovers. ([#8119](https://bugs.jqueryui.com/ticket/8119), [d687a1b](https://github.com/jquery/jquery-ui/commit/d687a1b10d1e176a6a8dd4420f1ea3a890640da0), [3c2acc3](https://github.com/jquery/jquery-ui/commit/3c2acc322782cc08e575405f8123029342e33542), [f59f5a8](https://github.com/jquery/jquery-ui/commit/f59f5a8b12d50c87ba6e2fe47a1804a23535b3cf))
+* Fixed: Close icon does not work in dialog larger than the window in IE. ([#8838](https://bugs.jqueryui.com/ticket/8838), [60486ac](https://github.com/jquery/jquery-ui/commit/60486ac632a0a1bbbb0c7449fe17bccfae11af80))
+* Fixed: Don't use .attr( props, true ). ([a8de99c](https://github.com/jquery/jquery-ui/commit/a8de99c791ae24e558920e1756fb7d0bf9dfc166))
+* Fixed: Destroying a dialog during animated close leaves .ui-effects-wrapper in DOM. ([#5860](https://bugs.jqueryui.com/ticket/5860), [13505e5](https://github.com/jquery/jquery-ui/commit/13505e5945e5532c3d56424d50ad109c665d205f))
+* Fixed: Add option to set which element gains focus on open. ([#4731](https://bugs.jqueryui.com/ticket/4731), [b27db7e](https://github.com/jquery/jquery-ui/commit/b27db7e3b9a857b8f0890e91ae9c8a2d33bf9919))
+* Fixed: Title XSS Vulnerability. ([#6016](https://bugs.jqueryui.com/ticket/6016), [7e9060c](https://github.com/jquery/jquery-ui/commit/7e9060c109b928769a664dbcc2c17bd21231b6f3))
+* Fixed: Content grows bigger than widget on resize at document edge. ([#5559](https://bugs.jqueryui.com/ticket/5559), [5ba267e](https://github.com/jquery/jquery-ui/commit/5ba267e7c78f0bc257383c822d241c5369e8e49d))
+* Fixed: Contain focus within dialog. ([#3768](https://bugs.jqueryui.com/ticket/3768), [3a09a4a](https://github.com/jquery/jquery-ui/commit/3a09a4a0de1f485a63091ffe8188b080a561b592))
+* Fixed: Remove deprecated disableSelection() usage. ([b6cefc7](https://github.com/jquery/jquery-ui/commit/b6cefc797e1f4cbede6c0d69b0abf993244ea66c))
+* Fixed: Dialog overlays are not properly reused when multiple instances of a Dialog exist. ([#6058](https://bugs.jqueryui.com/ticket/6058), [1e8baf5](https://github.com/jquery/jquery-ui/commit/1e8baf568365f8edc833439315f76e5efe1ba9b6))
+* Fixed: Auto height does not respect the maxHeight option. ([#4820](https://bugs.jqueryui.com/ticket/4820), [d4551bc](https://github.com/jquery/jquery-ui/commit/d4551bc3b8dfbfd925700dcb9f71e7729b125889))
+* Fixed: If titlebar changes height during resize, button pane positioning changes. ([#7773](https://bugs.jqueryui.com/ticket/7773), [bdb0fbe](https://github.com/jquery/jquery-ui/commit/bdb0fbe993ab4c716f3cbc6f2c08072bf512115f))
+* Fixed: Dialog with position:fixed goes offscreen when opening after scrolling down since v 1.9.0. ([#8741](https://bugs.jqueryui.com/ticket/8741), [5986571](https://github.com/jquery/jquery-ui/commit/59865715fbec0462a0cc872195b44d3e3704a24b))
+* Fixed: Dialog does not close for first click on chrome. ([#8789](https://bugs.jqueryui.com/ticket/8789), [d179cba](https://github.com/jquery/jquery-ui/commit/d179cbaf3233ace0bc542e836c5c46e4129a9e0a))
+* Fixed: zIndex error with animated modal dialog. ([#4892](https://bugs.jqueryui.com/ticket/4892), [d07074d](https://github.com/jquery/jquery-ui/commit/d07074dc3c3b2c73ccf1ed1cb2876df31154e039))
+* Fixed: show: true and buttons break the layout. ([#6899](https://bugs.jqueryui.com/ticket/6899), [d07074d](https://github.com/jquery/jquery-ui/commit/d07074dc3c3b2c73ccf1ed1cb2876df31154e039))
+* Fixed: Modal dialog disables all input elements on page. ([#3534](https://bugs.jqueryui.com/ticket/3534), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Modal Dialog disables vertical scroll bar in Chrome & Safari. ([#4671](https://bugs.jqueryui.com/ticket/4671), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Modal Dialog's overlay disappears in IE when content is tall. ([#4995](https://bugs.jqueryui.com/ticket/4995), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Don't change z-index when already at the top. ([#5388](https://bugs.jqueryui.com/ticket/5388), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Modal dialog incorrectly cancels input events. ([#5466](https://bugs.jqueryui.com/ticket/5466), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Get rid of z-index workaround, document it instead. ([#5762](https://bugs.jqueryui.com/ticket/5762), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Checkboxes that inherit a z-index < dialog z-index don't work. ([#6267](https://bugs.jqueryui.com/ticket/6267), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Modal prevents tab key from moving focus off slider handle. ([#7051](https://bugs.jqueryui.com/ticket/7051), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Modal dialog event loss with high zindex child elements. ([#7107](https://bugs.jqueryui.com/ticket/7107), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Modal operation interrupts drag drop marker functionality on gmaps. ([#7120](https://bugs.jqueryui.com/ticket/7120), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Change event cancelled when opening modal dialog from another modal dialog. ([#8172](https://bugs.jqueryui.com/ticket/8172), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Mouse event wrongly stopped. ([#8583](https://bugs.jqueryui.com/ticket/8583), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: CKEditor in Modal Dialog is not editable. ([#4727](https://bugs.jqueryui.com/ticket/4727), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Buttons in background still working even when an active modal dialog is in open state. ([#7063](https://bugs.jqueryui.com/ticket/7063), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456))
+* Fixed: Accessibility issues. ([#7861](https://bugs.jqueryui.com/ticket/7861), [#7862](https://bugs.jqueryui.com/ticket/7862), [2a887e4](https://github.com/jquery/jquery-ui/commit/2a887e43213c4dbb21509b670cf5dc8ac2c67573), [8ee8046](https://github.com/jquery/jquery-ui/commit/8ee8046c029354501bc6d1690b3ac84edf23efd7), [83a9f21](https://github.com/jquery/jquery-ui/commit/83a9f219bf40ff834d660020bbfa7de550e48a0c))
+* Fixed: Problem on Firefox when creating dynamic element. ([#8351](https://bugs.jqueryui.com/ticket/8351))
+* Fixed: Position changes on first resize. ([#8508](https://bugs.jqueryui.com/ticket/8508))
+* Fixed: Focus close button and closing dialog with Jaws 13. ([#8963](https://bugs.jqueryui.com/ticket/8963))
+
+### Menu
+
+* Fixed: select event not firing due to mouseHandled flag reset bug. ([#8866](https://bugs.jqueryui.com/ticket/8866), [5143b7f](https://github.com/jquery/jquery-ui/commit/5143b7f672bc668963cce7dcf5dd4e2970aad8e5))
+* Fixed: Can't change icons option after init. ([#8927](https://bugs.jqueryui.com/ticket/8927), [2c3d311](https://github.com/jquery/jquery-ui/commit/2c3d311f90281e95827708e2e8d0e52832a437de))
+* Fixed: refresh() doesn't refresh existing submenus. ([#8773](https://bugs.jqueryui.com/ticket/8773), [8b3e570](https://github.com/jquery/jquery-ui/commit/8b3e57024138f1a40be762fd5d29cc390129a8ad))
+
+### Progressbar
+
+* Added: Support value: false for indeterminate progressbar. ([#7624](https://bugs.jqueryui.com/ticket/7624), [d3bc471](https://github.com/jquery/jquery-ui/commit/d3bc471688047d3c2dda3335dd642b724794070b))
+
+### Slider
+
+* Added: Moved events to named functions (to allow extended plugins to hook in). ([176e0ed](https://github.com/jquery/jquery-ui/commit/176e0ed0e67f5a0f7a334d5d7b65638017a65349))
+* Fixed: Multiple Sliders have conflict with options.values. ([#8892](https://bugs.jqueryui.com/ticket/8892), [209443d](https://github.com/jquery/jquery-ui/commit/209443d716587d896ffcdf26c0fd8c8a23437b3c))
+* Fixed: Visual issues with disabled slider in IE8. ([#6727](https://bugs.jqueryui.com/ticket/6727), [421aeaa](https://github.com/jquery/jquery-ui/commit/421aeaa08135e747ff9f2a59974c26b350cdcda7))
+* Fixed: Wrong slider UI state when disabled at init. ([#8772](https://bugs.jqueryui.com/ticket/8772), [cb748b4](https://github.com/jquery/jquery-ui/commit/cb748b4a6f32aa5748d6777e7871c96f70ad2207))
+* Fixed: Handles can overlap, only small sliver of slider is selectable. ([#3467](https://bugs.jqueryui.com/ticket/3467), [a188632](https://github.com/jquery/jquery-ui/commit/a18863205e060bf9a145bb5ed90e36d8feb3c8f7))
+
+### Spinner
+
+* Added: Spinner triggers start/spin/stop events when calling stepUp()/Down(), pageUp()/Down() methods. ([#8901](https://bugs.jqueryui.com/ticket/8901), [0d53fbf](https://github.com/jquery/jquery-ui/commit/0d53fbfd0b7651652601b3b8577225ab753aab44))
+* Fixed: Value can't be seen in dark themes. ([#8950](https://bugs.jqueryui.com/ticket/8950), [d3d1e31](https://github.com/jquery/jquery-ui/commit/d3d1e31e9fb8b264818bb711c35bdcb973687179))
+* Fixed: Can't change icons option after init. ([#8926](https://bugs.jqueryui.com/ticket/8926), [04d668b](https://github.com/jquery/jquery-ui/commit/04d668b7171e14292af9f4de1b6bfbbe1a6e990c))
+
+### Tabs
+
+* Removed: abort method. ([#7150](https://bugs.jqueryui.com/ticket/7150), [828b3c4](https://github.com/jquery/jquery-ui/commit/828b3c420cb42f02544b46bfa9208499a4947651))
+* Removed: ajaxOptions and cache options. ([#7147](https://bugs.jqueryui.com/ticket/7147), [52a184e](https://github.com/jquery/jquery-ui/commit/52a184e31c0ca5618e6d4873625bf3b7716944b3))
+* Removed: All templating features: add and remove methods; idPrefix, tabTemplate, panelTemplate options; use of title attribute. ([#7158](https://bugs.jqueryui.com/ticket/7158), [#7157](https://bugs.jqueryui.com/ticket/7157), [#7149](https://bugs.jqueryui.com/ticket/7149), [054b208](https://github.com/jquery/jquery-ui/commit/054b208a9990fd71d30285e707ad53dae5a48247))
+* Removed: Back-compat for load event. ([#8731](https://bugs.jqueryui.com/ticket/8731), [3d6c2a6](https://github.com/jquery/jquery-ui/commit/3d6c2a66d44a9283ad18e8c7c5ea701ddca82e59))
+* Removed: cookie option. ([#7162](https://bugs.jqueryui.com/ticket/7162), [0429532](https://github.com/jquery/jquery-ui/commit/0429532ad10b0708e085c4830bb930d8457d62f4))
+* Removed: enable and disable events. ([#7160](https://bugs.jqueryui.com/ticket/7160), [0fc682a](https://github.com/jquery/jquery-ui/commit/0fc682a8dadc894caefe27c5a0fccf1eca30780d))
+* Removed: fx option. ([#8320](https://bugs.jqueryui.com/ticket/8320), [723d3e0](https://github.com/jquery/jquery-ui/commit/723d3e0040c46079cedf3998f4e28edfceed7c74))
+* Removed: length method. ([#7161](https://bugs.jqueryui.com/ticket/7161), [1a7958a](https://github.com/jquery/jquery-ui/commit/1a7958a43096ced70043514055e8f62422d860fd))
+* Removed: overflow workaround for IE6. ([da1255a](https://github.com/jquery/jquery-ui/commit/da1255a392a0132711dacce7283df221621f098b))
+* Removed: select event. ([#7154](https://bugs.jqueryui.com/ticket/7154), [fb525e1](https://github.com/jquery/jquery-ui/commit/fb525e1cb10ce5959df28b0cbd29ebdc96c266f4))
+* Removed: select method. ([#7156](https://bugs.jqueryui.com/ticket/7156), [7cf2719](https://github.com/jquery/jquery-ui/commit/7cf2719d0c406c7ff17c7e784c0e1e6eb23b562a))
+* Removed: selected option. ([#7152](https://bugs.jqueryui.com/ticket/7152), [a9053d9](https://github.com/jquery/jquery-ui/commit/a9053d93008e203391206cb743e873064fc8198b))
+* Removed: show event. ([#7155](https://bugs.jqueryui.com/ticket/7155), [a1fd49f](https://github.com/jquery/jquery-ui/commit/a1fd49fb2944a7dbe76e81ba648c2b56e7c6651d))
+* Removed: spinner option. ([#7151](https://bugs.jqueryui.com/ticket/7151), [6a00d41](https://github.com/jquery/jquery-ui/commit/6a00d418bc8346df7124708125056ad4717ce89c))
+* Removed: url method. ([#7148](https://bugs.jqueryui.com/ticket/7148), [acdd191](https://github.com/jquery/jquery-ui/commit/acdd1917b2ab5a3b5469678d835107152ed5aaef))
+* Fixed: Height overflows parent with heightStyle: 'fill'. ([#8836](https://bugs.jqueryui.com/ticket/8836), [6121683](https://github.com/jquery/jquery-ui/commit/6121683d807b2da56cf6cde3240d5926421b280b))
+* Fixed: isLocal function issue in Safari 5.1.7. ([#8877](https://bugs.jqueryui.com/ticket/8877), [1e5662e](https://github.com/jquery/jquery-ui/commit/1e5662ebe5a27d5ef0b8d60730b21771a2526547))
+* Fixed: Tabs fail in Safari 5.1 when window.location contains a space. ([#8777](https://bugs.jqueryui.com/ticket/8777), [c6b52db](https://github.com/jquery/jquery-ui/commit/c6b52db892703ba14153800dbf620db509acb9e6))
+* Fixed: Remove ui-tabs-aria-controls data on destroy. ([23f7e30](https://github.com/jquery/jquery-ui/commit/23f7e30c77820904cc1813fc8b54b809b352a551))
+* Fixed: 'display: none;' attribute is not removed from tabs when destroy is called. ([#8795](https://bugs.jqueryui.com/ticket/8795), [fd48568](https://github.com/jquery/jquery-ui/commit/fd48568c402847df8af59166c33549f0d19feb4b), [b9068c1](https://github.com/jquery/jquery-ui/commit/b9068c1523f39da8a04c799eebc9adc8b83c7279))
+* Fixed: Simple manipulation demo accessibility. ([#7847](https://bugs.jqueryui.com/ticket/7847), [e3ab5f8](https://github.com/jquery/jquery-ui/commit/e3ab5f811a97c9fd79038c550aa86dcff0465d40))
+
+### Tooltip
+
+* Removed: IE6 CSS hack. ([f83f07d](https://github.com/jquery/jquery-ui/commit/f83f07dafd9c28f96a7cec49c00e4b24a4b493bf))
+* Fixed: error when parent element has no title attribute using jQuery 1.6. ([#8955](https://bugs.jqueryui.com/ticket/8955), [e4a786e](https://github.com/jquery/jquery-ui/commit/e4a786e1a4fdd85b391711688bcb9790f38b5352))
+* Fixed: Using the track option within dialogs creates JS errors. ([#8747](https://bugs.jqueryui.com/ticket/8747), [98173a3](https://github.com/jquery/jquery-ui/commit/98173a3d0ea8e2e6aeb19dda9b232cb65a0684e4))
+* Fixed: Tooltip potential setInterval() endless loop. ([#8920](https://bugs.jqueryui.com/ticket/8920), [9cbd4b4](https://github.com/jquery/jquery-ui/commit/9cbd4b42221389277cf90a6662f17c500d1a77df))
+* Fixed: XSS vulnerability in default content. ([#8861](https://bugs.jqueryui.com/ticket/8861), [f285440](https://github.com/jquery/jquery-ui/commit/f2854408cce7e4b7fc6bf8676761904af9c96bde))
+* Fixed: Does not hide consistently with dynamically loaded content. ([#8740](https://bugs.jqueryui.com/ticket/8740), [1b503a2](https://github.com/jquery/jquery-ui/commit/1b503a237e1dc47739a8a451debbc86e169851e3))
+* Fixed: Tooltip is shown, but not hidden if element has class=ui-state-disabled. ([#8758](https://bugs.jqueryui.com/ticket/8758), [498aadf](https://github.com/jquery/jquery-ui/commit/498aadf644ddca86de838dc2001267ded972df2c))
+* Fixed: Default positioning on large items off. ([#8739](https://bugs.jqueryui.com/ticket/8739), [1d9eab1](https://github.com/jquery/jquery-ui/commit/1d9eab1ead0d5a6f60e31437bb539eb3f804bacc))
+* Fixed: Tracking fails on nested elements. ([#8799](https://bugs.jqueryui.com/ticket/8799), [ca0df6b](https://github.com/jquery/jquery-ui/commit/ca0df6b9007a13dabdf7e78acb3d30bdb0928a97))
+* Fixed: Tooltip shows incorrect message in Chrome if there is input with name='title' in a form. ([#8742](https://bugs.jqueryui.com/ticket/8742), [d074efe](https://github.com/jquery/jquery-ui/commit/d074efe5289db4f5182a685046e9b9ad6186ac26))
+* Fixed: Use ui-tooltip-open instead of tooltip-open for data key. ([02694a9](https://github.com/jquery/jquery-ui/commit/02694a90f329e84ef7532d8b51e6c209207dc649))
+
+## Effects
+
+* Removed: Support for effects in $.effects[]. ([#7115](https://bugs.jqueryui.com/ticket/7115), [b8e0de2](https://github.com/jquery/jquery-ui/commit/b8e0de2444f38e69ad229f404651c9e331a9ac17))
+* Fixed: Odd behavior of css hook when setting backgroundColor to transparent in IE7/8. ([#8914](https://bugs.jqueryui.com/ticket/8914), [da01fb6](https://github.com/jquery/jquery-ui/commit/da01fb6a346e1ece3fd6dde5556a98f099e0c0e0))
+* Fixed: Class animation has broken noConflict support. ([#8860](https://bugs.jqueryui.com/ticket/8860), [c5e0961](https://github.com/jquery/jquery-ui/commit/c5e0961268577ff72f98d2ad79d8b9b98e3f75b1))
+
+## CSS Framework
+
+* Fixed: Don't show icon when only ui-icon class is present. ([#5659](https://bugs.jqueryui.com/ticket/5659), [1fe06f0](https://github.com/jquery/jquery-ui/commit/1fe06f03fac30ce76b87eab8c5a9acc72becd587))
+* Fixed: Autocomplete inside dialog causes scrollbars. ([#8793](https://bugs.jqueryui.com/ticket/8793), [48e0aa0](https://github.com/jquery/jquery-ui/commit/48e0aa0fd2782380931af43abb5bb92b73ebe4ad))
+* Fixed: Reformatted CSS to use better coding standard. ([010e09f](https://github.com/jquery/jquery-ui/commit/010e09fa62b7e71fdfaaf6b0d4e974be0704a1c8))
+* Fixed: Remove unneeded vendor prefixing. ([#8834](https://bugs.jqueryui.com/ticket/8834), [c4b7c75](https://github.com/jquery/jquery-ui/commit/c4b7c754eedf10923f588cf6310f610fcd0c37a9))
+* Fixed: Remove invalid CSS for legacy browsers. ([#7975](https://bugs.jqueryui.com/ticket/7975), [d7bff01](https://github.com/jquery/jquery-ui/commit/d7bff010691b542d918245bac11beac2b93b3462))
+
+## Tests
+
+* Added: Allow async domEqual() tests. ([902df84](https://github.com/jquery/jquery-ui/commit/902df84fce790178da78c5830498911a487d50cf))
diff --git a/page/changelog/1.10.1.md b/page/changelog/1.10.1.md
new file mode 100644
index 0000000..b297bd8
--- /dev/null
+++ b/page/changelog/1.10.1.md
@@ -0,0 +1,68 @@
+
+
+Released on February 15, 2013
+
+## Build
+
+* Added: Minified CSS files on CDNs. ([#8614](https://bugs.jqueryui.com/ticket/8614), [822520e](https://github.com/jquery/jquery-ui/commit/822520ece7520457c045b1dae77b6ffc5b96654a))
+
+## Core & Utilities
+
+### Position
+
+* Fixed: Percentage offset does not support decimal. ([#9076](https://bugs.jqueryui.com/ticket/9076), [c958b21](https://github.com/jquery/jquery-ui/commit/c958b211db2632a02f26e14f57c0862c57870aee))
+
+## Interactions
+
+### Draggable
+
+* Fixed: `stack` option resets the `z-index`. ([#9077](https://bugs.jqueryui.com/ticket/9077), [c32bebd](https://github.com/jquery/jquery-ui/commit/c32bebd1bd28d158b017bb1dd7f95fb1d8a8d567))
+* Fixed: Reference to undefined `$.ui.contains()`. ([#9051](https://bugs.jqueryui.com/ticket/9051), [2df2abc](https://github.com/jquery/jquery-ui/commit/2df2abcbf139262e1ed3e1b9aa19d3ffc6b59cb9))
+
+## Widgets
+
+### Accordion
+
+* Fixed: `create` event uses `content` instead of `panel`. ([#8998](https://bugs.jqueryui.com/ticket/8998), [10c873a](https://github.com/jquery/jquery-ui/commit/10c873ab6cf2333f7e51784e84c03a0fbb975e1f))
+* Fixed: Corner display issues. ([#8995](https://bugs.jqueryui.com/ticket/8995), [673c655](https://github.com/jquery/jquery-ui/commit/673c6558e01dd8a5423ec21bf40d6efe443580d2))
+
+### Autocomplete
+
+* Added: Use `.ui-front` instead of `.zIndex()` for the suggestions menu. ([7d5fe02](https://github.com/jquery/jquery-ui/commit/7d5fe02dd9e3af3ebbb4fcc3092045139b166c48))
+* Fixed: Multiple demo has errors. ([#9029](https://bugs.jqueryui.com/ticket/9029), [ceebe07](https://github.com/jquery/jquery-ui/commit/ceebe07e2c99190030c16b031813ae660d9283d1))
+
+### Datepicker
+
+* Fixed: Slovak localisation - name of day/month is always lowercase. ([#9078](https://bugs.jqueryui.com/ticket/9078), [bce9da4](https://github.com/jquery/jquery-ui/commit/bce9da420646b6cee859475af6616aa9107f0158))
+* Fixed: `beforeShowDay` tooltip not displayed properly if single quote is used. ([#9049](https://bugs.jqueryui.com/ticket/9049), [df17954](https://github.com/jquery/jquery-ui/commit/df179542cc6593b1816d487c72c470a73940ff11), [7a49ee4](https://github.com/jquery/jquery-ui/commit/7a49ee4cd3a59a11e8c65cb1974481d86e2fd4d7))
+* Fixed: next and prev buttons are disabled when using `yearRange`. ([#8994](https://bugs.jqueryui.com/ticket/8994), [8f7c3e3](https://github.com/jquery/jquery-ui/commit/8f7c3e309cae07c75b930c55f14c05053d5028e9))
+
+### Dialog
+
+* Fixed: Dialog cannot be dragged properly with `iframe`. ([#7650](https://bugs.jqueryui.com/ticket/7650), [a7353e7](https://github.com/jquery/jquery-ui/commit/a7353e7c9ba18e017813195c885115338800e13d))
+* Fixed: Cannot change month/year in datepicker within modal dialog. ([#8989](https://bugs.jqueryui.com/ticket/8989), [c53198c](https://github.com/jquery/jquery-ui/commit/c53198c2099d25e80887c86af6d0e624414cc2f7))
+* Fixed: Buttonpane shown with no buttons when modifying native prototypes. ([#9043](https://bugs.jqueryui.com/ticket/9043), [7bbda71](https://github.com/jquery/jquery-ui/commit/7bbda71a32cc4953715ed34eab2ab48c5e736154))
+* Fixed: Dialog leaves broken event handler after `close`/`destroy` in certain cases. ([#9004](https://bugs.jqueryui.com/ticket/9004), [#9000](https://bugs.jqueryui.com/ticket/9000), [649f105](https://github.com/jquery/jquery-ui/commit/649f105229b2a24adc21cba2d56cb05a59711ccb))
+* Fixed: Broken `focusin` event handler when `beforeclose` event of a modal opens another modal. ([#9048](https://bugs.jqueryui.com/ticket/9048), [8724092](https://github.com/jquery/jquery-ui/commit/8724092e5070125e2610e8b0e6ee9ada126cf504))
+* Fixed: Various issues with animated dialogs. ([#6756](https://bugs.jqueryui.com/ticket/6756), [#8051](https://bugs.jqueryui.com/ticket/8051), [#4421](https://bugs.jqueryui.com/ticket/4421), [d1505e3](https://github.com/jquery/jquery-ui/commit/d1505e3434ef99e0068347a5e8179a0ffd737676))
+* Fixed: Double overlay when opening modal dialog triggers an event opening same dialog. ([#8958](https://bugs.jqueryui.com/ticket/8958), [62cda1f](https://github.com/jquery/jquery-ui/commit/62cda1f95d0e7040153f0b5fe5745d199a0a094e))
+* Fixed: Modal dialogs display behind overlay when using `appendTo` option. ([#8984](https://bugs.jqueryui.com/ticket/8984), [55360ee](https://github.com/jquery/jquery-ui/commit/55360eeb7eae5c560d51b09178e64d83c59223a6))
+
+### Menu
+
+* Fixed: Non-ASCII characters. ([#9016](https://bugs.jqueryui.com/ticket/9016), [c193a0c](https://github.com/jquery/jquery-ui/commit/c193a0ce17b30188576fcdb9e4b2222ce7f02f47))
+
+### Slider
+
+* Fixed: Range area needs rounded corners, too. ([#9024](https://bugs.jqueryui.com/ticket/9024), [3aa8ad0](https://github.com/jquery/jquery-ui/commit/3aa8ad0c4ad15ceac52c4f653b7d4e66995bb297))
+* Fixed: Slider does not exhibit proper behavior when switching `range` option. ([#5602](https://bugs.jqueryui.com/ticket/5602), [df077ab](https://github.com/jquery/jquery-ui/commit/df077abfc2a236a373d2080a9ceae97bb48c2620))
+
+## Effects
+
+* Fixed: Inclusion of jQuery UI breaks `.removeClass()`. ([#9015](https://bugs.jqueryui.com/ticket/9015), [2ca4d17](https://github.com/jquery/jquery-ui/commit/2ca4d17982bfedc723f499b41e0936ada9eaa852))
+
+## CSS Framework
+
+* Fixed: `ui-helper-clearfix` bug within table with border spacing. ([#8442](https://bugs.jqueryui.com/ticket/8442), [cb42ee7](https://github.com/jquery/jquery-ui/commit/cb42ee7ccdf6e32be14341a34a037c7f4508c157))
diff --git a/page/changelog/1.10.2.md b/page/changelog/1.10.2.md
new file mode 100644
index 0000000..f55dd96
--- /dev/null
+++ b/page/changelog/1.10.2.md
@@ -0,0 +1,71 @@
+
+
+Released on March 14, 2013
+
+## Build
+
+* Added: Migrate to grunt 0.4 and contrib plugins. ([f87b4e0](https://github.com/jquery/jquery-ui/commit/f87b4e0f4ac2342dff260c32aa8d08148e76f7a4), [bd211df](https://github.com/jquery/jquery-ui/commit/bd211df0d35d7f326c338ce3f3fc81e5d966d3d7), [e090a36](https://github.com/jquery/jquery-ui/commit/e090a3655550c9cd20067952809f44b052064f4e))
+* Removed: `base` theme from CDN build. ([38fce3f](https://github.com/jquery/jquery-ui/commit/38fce3f30478bcfce8ea837d850f63b5560d605a))
+* Fixed: Issues with theme images in 1.10.1 ([#9090](https://bugs.jqueryui.com/ticket/9090))
+
+## Core & Utilities
+
+### Position
+
+* Fixed: `getScrollInfo()` swapped width and height. ([#8763](https://bugs.jqueryui.com/ticket/8763), [e9c04bf](https://github.com/jquery/jquery-ui/commit/e9c04bfa430eb6b18e7fe1be2f8d162e01181a94))
+
+## Interactions
+
+### Draggable
+
+* Fixed: Containment incorrectly calculates padding and border. ([#5569](https://bugs.jqueryui.com/ticket/5569), [6358695](https://github.com/jquery/jquery-ui/commit/6358695df18722d8c7e99437365db42cf4957626))
+* Fixed: `revert` option reset after being added to a connected sortable. ([#9103](https://bugs.jqueryui.com/ticket/9103), [a924af1](https://github.com/jquery/jquery-ui/commit/a924af12b6743408903c642f84a00b0766cd17b7))
+
+### Droppable
+
+* Fixed: `drop` event can cause droppables to remain active if any droppable is created/destroyed in the event handler. ([#9116](https://bugs.jqueryui.com/ticket/9116), [1c80735](https://github.com/jquery/jquery-ui/commit/1c80735acb20a468300a53f85ef49b065d40af3e))
+
+### Sortable
+
+* Fixed: Portlet demo is buggy. ([#4485](https://bugs.jqueryui.com/ticket/4485), [8655d91](https://github.com/jquery/jquery-ui/commit/8655d91ac68538c37da4d94ecc287df8c90a96ae))
+* Fixed: Unable to use an image as a placeholder in Firefox. ([#5129](https://bugs.jqueryui.com/ticket/5129), [b9be6bb](https://github.com/jquery/jquery-ui/commit/b9be6bb7ad107fd48b28e31df972b2037c47c2cb))
+* Fixed: `cursor` option doesn't override CSS cursor settings. ([#7389](https://bugs.jqueryui.com/ticket/7389), [a692bf9](https://github.com/jquery/jquery-ui/commit/a692bf9b70305de5e9893e717fc71e1e74fb86ac))
+* Fixed: Incorrect revert animation with `axis: 'y'`. ([#7415](https://bugs.jqueryui.com/ticket/7415), [054449e](https://github.com/jquery/jquery-ui/commit/054449e214449ec5578fe71bb67b9a670adac828))
+* Fixed: Issue with floated items in connected lists. ([#8792](https://bugs.jqueryui.com/ticket/8792), [89473f6](https://github.com/jquery/jquery-ui/commit/89473f6557662d905a63faa3ae3520bf3715a7e8), [8b1b34c](https://github.com/jquery/jquery-ui/commit/8b1b34c5c3e8fae056f0880776156dc003b5e2c3))
+* Fixed: The `over` event fires on every pixel movement. ([#9041](https://bugs.jqueryui.com/ticket/9041), [07ce771](https://github.com/jquery/jquery-ui/commit/07ce771a13504b851bb9f74c8ce8e960d207384a), [8b1b34c](https://github.com/jquery/jquery-ui/commit/8b1b34c5c3e8fae056f0880776156dc003b5e2c3))
+* Fixed: Placeholder not displayed when sorting table rows. ([#4765](https://bugs.jqueryui.com/ticket/4765), [bd47bd4](https://github.com/jquery/jquery-ui/commit/bd47bd4ace3789d9eb302b0dce6f6e042d08a7f1))
+
+## Widgets
+
+### Autocomplete
+
+* Fixed: Incorrect escaping in combobox demo. ([#9086](https://bugs.jqueryui.com/ticket/9086), [ba96cb4](https://github.com/jquery/jquery-ui/commit/ba96cb47725dc6639ae366bd381f089c1750c8f5))
+* Fixed: Mouse auto-highlights option in Firefox. ([#9118](https://bugs.jqueryui.com/ticket/9118), [d5d3a74](https://github.com/jquery/jquery-ui/commit/d5d3a745b00dd476195cf25b35cc02f3bc31f814))
+
+### Datepicker
+
+* Fixed: German localization - make casing of previous/next/today consistent. ([#9098](https://bugs.jqueryui.com/ticket/9098), [10ca483](https://github.com/jquery/jquery-ui/commit/10ca48308fea6a9b30d2457fbf5a1b6e0ed5966c))
+
+### Dialog
+
+* Added: Allow registering elements outside a dialog for use when a modal dialog is open. ([#9087](https://bugs.jqueryui.com/ticket/9087), [51eb28e](https://github.com/jquery/jquery-ui/commit/51eb28e76e372fe0af12724edff0b5780b5e5ed0))
+* Fixed: Dialog inheritance. ([#9097](https://bugs.jqueryui.com/ticket/9097), [5e1b8dc](https://github.com/jquery/jquery-ui/commit/5e1b8dc71a72d5753a95c49c844857b91fbdbade))
+
+### Spinner
+
+* Fixed: Spinner keeps changing after losing focus. ([#9112](https://bugs.jqueryui.com/ticket/9112), [2348fb8](https://github.com/jquery/jquery-ui/commit/2348fb8eb9ec1297a2588a23cf3447c5374bcb21))
+
+### Tabs
+
+* Fixed: Can't inherit `border-bottom-color` for vertical tabs. ([#9111](https://bugs.jqueryui.com/ticket/9111), [1c5171c](https://github.com/jquery/jquery-ui/commit/1c5171c2547130a76710dd20108b35774551e333))
+
+## Effects
+
+* Fixed: `.hide()` inconsistent with core with a hidden parent. ([#9120](https://bugs.jqueryui.com/ticket/9120), [948563b](https://github.com/jquery/jquery-ui/commit/948563b8b55802c6d4c513065f1b78bbdcff104c))
+* Fixed: `.show()`/`.hide()` do not support all of core's options. ([#9126](https://bugs.jqueryui.com/ticket/9126), [6f29577](https://github.com/jquery/jquery-ui/commit/6f2957743659387f66c9b8953bba9fac5617a440))
+
+## CSS Framework
+
+* Added: ui-icon-blank icon. ([#9150](https://bugs.jqueryui.com/ticket/9150), [4f95a0f](https://github.com/jquery/jquery-ui/commit/4f95a0f396965e91982f1b5e67da814bb6640ce1))
diff --git a/page/changelog/1.10.3.md b/page/changelog/1.10.3.md
new file mode 100644
index 0000000..40efd4d
--- /dev/null
+++ b/page/changelog/1.10.3.md
@@ -0,0 +1,57 @@
+
+
+Released on May 3, 2013
+
+## Build
+
+* Fixed: Incorrect links in effect manifests. ([#9247](https://bugs.jqueryui.com/ticket/9247), [91445c6](https://github.com/jquery/jquery-ui/commit/91445c69e884d69da4bf38c6302aa17d0ced09e0), [c64e1b8](https://github.com/jquery/jquery-ui/commit/c64e1b8416fd03fff050005c4573003c3b6b7049))
+* Added: `lint` and `test` aliases. ([0a06deb](https://github.com/jquery/jquery-ui/commit/0a06debc97a3bbfcf55b09e1090ac7f451fdbcb6))
+
+## Interactions
+
+### Draggable
+
+* Fixed: Scroll not working with fixed position parent. ([#5009](https://bugs.jqueryui.com/ticket/5009), [c1011b5](https://github.com/jquery/jquery-ui/commit/c1011b5b9dbdf59acff2fc26b832e0fba09346bd))
+* Fixed: Auto scroll goes double distance when dragging. ([#6817](https://bugs.jqueryui.com/ticket/6817), [943537c](https://github.com/jquery/jquery-ui/commit/943537cb785fb90adf9f0b515cbb084a1a2e3c04))
+* Fixed: Containment doesn't properly update. ([#8962](https://bugs.jqueryui.com/ticket/8962), [507043c](https://github.com/jquery/jquery-ui/commit/507043c3a2c05b0421531e188dd857bda6f3fde9))
+* Fixed: Not following mouse when scrolled and using `overflow-y: scroll`. ([#6258](https://bugs.jqueryui.com/ticket/6258), [48b48a8](https://github.com/jquery/jquery-ui/commit/48b48a886576c427140e2c5549cff942dc6c79fa))
+* Fixed: Element can snap to an element that was removed during drag. ([#8459](https://bugs.jqueryui.com/ticket/8459), [ecabe47](https://github.com/jquery/jquery-ui/commit/ecabe4754412b61059d429040e266ca921a754b2))
+* Fixed: Snapping doesn't take top/left into account properly. ([#8165](https://bugs.jqueryui.com/ticket/8165), [f74a908](https://github.com/jquery/jquery-ui/commit/f74a9080562b9cedcae7030f3e4681b3ee0bfb14))
+
+### Sortable
+
+* Fixed: Placeholder breaks `table-layout: fixed`. ([#9185](https://bugs.jqueryui.com/ticket/9185), [9711c54](https://github.com/jquery/jquery-ui/commit/9711c54c6d3d7ecffa9bfccc205522be1f4aa148))
+* Fixed: Placeholder doesn't move when using `connectWith` option. ([#8301](https://bugs.jqueryui.com/ticket/8301), [9ac505b](https://github.com/jquery/jquery-ui/commit/9ac505b9fa747a24e5c329cde0614ec0fe49d807))
+
+## Widgets
+
+### Accordion
+
+* Fixed: `refresh()` method incorrectly opens collapsed accordion. ([#9189](https://bugs.jqueryui.com/ticket/9189), [a93ad18](https://github.com/jquery/jquery-ui/commit/a93ad182c837ef6c46323092a5538355e7ee3a7c))
+
+### Autocomplete
+
+* Fixed: Unable to use up/down arrow keys in a textarea (Firefox). ([#8911](https://bugs.jqueryui.com/ticket/8911), [c1f7f52](https://github.com/jquery/jquery-ui/commit/c1f7f527afeb1bba50a576924b327f812b48ad91))
+* Fixed: `.replaceWith()` fails to replace. ([#9172](https://bugs.jqueryui.com/ticket/9172), [2da014b](https://github.com/jquery/jquery-ui/commit/2da014b11d264a49c7ad7075d1fdb66a7d3f009c))
+* Fixed: Combobox demo does not show items. ([#9157](https://bugs.jqueryui.com/ticket/9157), [149e6eb](https://github.com/jquery/jquery-ui/commit/149e6eb0bce7e891d35b862be920d36d3535f62e))
+* Fixed: Autocomplete Combobox demo shows underlying select by default. ([#9158](https://bugs.jqueryui.com/ticket/9158), [fb6adc7](https://github.com/jquery/jquery-ui/commit/fb6adc765ffbe14c7adf6a717037d06e41f2ddd4))
+
+### Button
+
+* Fixed: Timeout in `formResetHandler` causing `refresh()` to be called on non-widgets. ([#9213](https://bugs.jqueryui.com/ticket/9213), [1152e65](https://github.com/jquery/jquery-ui/commit/1152e6591740765d2a1c261714ea9e409bf94cb5))
+
+### Datepicker
+
+* Added: English as an option in the localization demo. ([e34c92b](https://github.com/jquery/jquery-ui/commit/e34c92bbbc0116f03680cc7377d1aaabe1a054fe))
+* Fixed: Corrected the Arabic word for Arabic in the localization demo. ([f8e76d0](https://github.com/jquery/jquery-ui/commit/f8e76d0bbdd9b4fd213a0e3f716906d9c287f612))
+* Fixed: Wrong date format for Serbian localization. ([#7347](https://bugs.jqueryui.com/ticket/7347), [f157310](https://github.com/jquery/jquery-ui/commit/f15731072bd76dd5d208ec71d2077c745f4180d2))
+
+### Menu
+
+* Fixed: IE 10 renders bullets in submenus. ([#8844](https://bugs.jqueryui.com/ticket/8844), [329974b](https://github.com/jquery/jquery-ui/commit/329974b2c6313fdbdceec1820bf7e687c8ae47ef))
+
+### Progressbar
+
+* Fixed: (demo) Incorrect presentation with progressbar label in IE9. ([#9163](https://bugs.jqueryui.com/ticket/9163), [d1605e6](https://github.com/jquery/jquery-ui/commit/d1605e679346af3a33db1b28a8f5d1369a68f634))
diff --git a/page/changelog/1.10.4.md b/page/changelog/1.10.4.md
new file mode 100644
index 0000000..6689313
--- /dev/null
+++ b/page/changelog/1.10.4.md
@@ -0,0 +1,90 @@
+
+
+Released on January 17, 2014
+
+## Build
+
+* Added: Support for running on Travis. ([13c17eb](https://github.com/jquery/jquery-ui/commit/13c17eb92250776c045da44652e7d460159cef02))
+* Added: Verify characters in output. ([#9037](https://bugs.jqueryui.com/ticket/9037), [7396460](https://github.com/jquery/jquery-ui/commit/7396460c765395b97b9a1da125384903a62c1a2e))
+
+## Core & Utilities
+
+### Widget Factory
+
+* Fixed: `widgetEventPrefix` is empty when widget is loaded twice. ([#9316](https://bugs.jqueryui.com/ticket/9316), [c241313](https://github.com/jquery/jquery-ui/commit/c241313f1d31b18751a81c1321662512d8086cbc))
+* Fixed: Calling `_setOption()` with `undefined` as 3rd argument should act as a setter. ([#9601](https://bugs.jqueryui.com/ticket/9601), [6cdebe8](https://github.com/jquery/jquery-ui/commit/6cdebe84f8fb20374bb9dd32b62cba1b7f8dfd13))
+
+### Position
+
+* Fixed: Positioning within a document throws an error. ([#9533](https://bugs.jqueryui.com/ticket/9533), [c8b2640](https://github.com/jquery/jquery-ui/commit/c8b264006d2fd8d9c27cfa8aef619428c563cb80))
+* Fixed: `$.position.scrollbarWidth` detection causes layout issues. ([#9291](https://bugs.jqueryui.com/ticket/9291), [edf36f3](https://github.com/jquery/jquery-ui/commit/edf36f35ce84a67376d7e9fedd21fc07b38100c0))
+
+## Interactions
+
+### Droppable
+
+* Fixed: `offsetWidth` and `offsetHeight` are queried unnecessarily causing synchronous reflow. ([#9339](https://bugs.jqueryui.com/ticket/9339), [0ab1e16](https://github.com/jquery/jquery-ui/commit/0ab1e16ad9eae6b030e7f569973787664760e8e6))
+
+### Resizable
+
+* Fixed: Erratic behavior of contained elements within scrollable grandparents. ([#9307](https://bugs.jqueryui.com/ticket/9307), [1660c76](https://github.com/jquery/jquery-ui/commit/1660c761e7fe3e790ec4dcb3a356a78ac2a1c7ed))
+* Fixed: Element can incorrectly move when grid option is set. ([#9611](https://bugs.jqueryui.com/ticket/9611), [20b44cc](https://github.com/jquery/jquery-ui/commit/20b44cc9bf023bd711b80117b4f185a62301bf52))
+* Fixed: Off-by-one pixel dimensions with helper and grid. ([#9547](https://bugs.jqueryui.com/ticket/9547), [e29e5b5](https://github.com/jquery/jquery-ui/commit/e29e5b56afea5a0250636d9c9fd97106732bfe84))
+
+## Widgets
+
+### Accordion
+
+* Fixed: `aria-expanded` attribute on wrong element. ([#9407](https://bugs.jqueryui.com/ticket/9407), [d21e8a6](https://github.com/jquery/jquery-ui/commit/d21e8a6964d80a32cdb9773aa364141a2492dc5a))
+
+### Autocomplete
+
+* Fixed: Multiple instances should be able to start asynchronous requests simultaneously. ([#9334](https://bugs.jqueryui.com/ticket/9334), [e4a194c](https://github.com/jquery/jquery-ui/commit/e4a194ce42b8ea1e5440f99d1d8d26f55526ff6c))
+
+### Button
+
+* Fixed: Radio button & checkboxes ignore mouseclicks for minor mouse movements. ([#7665](https://bugs.jqueryui.com/ticket/7665), [52e0f76](https://github.com/jquery/jquery-ui/commit/52e0f768f528e5265b6d7b4afae036b1ff248956))
+* Fixed: Disabled button maintains `ui-state-focus` in IE & Firefox on Windows. ([#9169](https://bugs.jqueryui.com/ticket/9169), [6e48da0](https://github.com/jquery/jquery-ui/commit/6e48da049014c484a219df11ab8f0551afb27fb5))
+
+### Datepicker
+
+* Fixed: Removed "<" in the "Anterior" text for the pt locale. ([ea72dea](https://github.com/jquery/jquery-ui/commit/ea72dea5631173705a4270690a327c7f6efc1f79))
+* Fixed: Incorrect capitalization for French and Spanish. ([#9289](https://bugs.jqueryui.com/ticket/9289), [511bd98](https://github.com/jquery/jquery-ui/commit/511bd9842f67c2bd42661aa17b81669a1295ea6b), [7bbe9dc](https://github.com/jquery/jquery-ui/commit/7bbe9dc1142524569b0b5d5b7dffe1713c4d031b))
+* Fixed: Incorrect values in Latvian localization. ([#9656](https://bugs.jqueryui.com/ticket/9656), [1da91cd](https://github.com/jquery/jquery-ui/commit/1da91cd500c0cd7cb831a256bef085686fe73e51))
+* Fixed: Correct the Finnish date format. ([#9609](https://bugs.jqueryui.com/ticket/9609), [ce0cef9](https://github.com/jquery/jquery-ui/commit/ce0cef92656d6135fb7121bfe04fa6551dab613e))
+* Fixed: Wrong dateformat for Icelandic datepicker locale. ([#9431](https://bugs.jqueryui.com/ticket/9431), [94be965](https://github.com/jquery/jquery-ui/commit/94be965cd2d064e67e347c654469c38de4281b3e))
+* Fixed: Incorrect settings for Lithuanian locale. ([#9281](https://bugs.jqueryui.com/ticket/9281), [d8e166b](https://github.com/jquery/jquery-ui/commit/d8e166b41104b4d0caa8bcb0195918132f78c26a))
+
+### Dialog
+
+* Fixed: Closes on enter in textbox in IE. ([#9312](https://bugs.jqueryui.com/ticket/9312), [2623836](https://github.com/jquery/jquery-ui/commit/26238369bb113b487959322595e4814b441e5453))
+* Fixed: Resizable dialogs move/resize out of viewpoint boundry. ([#9521](https://bugs.jqueryui.com/ticket/9521), [b6f8ad6](https://github.com/jquery/jquery-ui/commit/b6f8ad665f455a4234f09956027ca23b477838db))
+* Fixed: Resizing causes close icon to misalign in Firefox. ([#9133](https://bugs.jqueryui.com/ticket/9133), [fd80c34](https://github.com/jquery/jquery-ui/commit/fd80c3445d3102519b7f9e0e549bc7d352bc2e56))
+* Fixed: Dialog throw error in IE9 with iframe. ([#8443](https://bugs.jqueryui.com/ticket/8443), [29e8077](https://github.com/jquery/jquery-ui/commit/29e8077871902a49f3039633a7fb9ac5c4093aa8))
+* Fixed: Window blurs in IE9. ([#9420](https://bugs.jqueryui.com/ticket/9420), [29e8077](https://github.com/jquery/jquery-ui/commit/29e8077871902a49f3039633a7fb9ac5c4093aa8))
+
+### Menu
+
+* Fixed: Error with programmatic focus. ([#9384](https://bugs.jqueryui.com/ticket/9384), [9b39852](https://github.com/jquery/jquery-ui/commit/9b398520c5e1a313d0c1ebfa7dfd892f8b3e440c))
+* Fixed: Autofocus issue with dialog opened from menu widget. ([#9044](https://bugs.jqueryui.com/ticket/9044), [78c593b](https://github.com/jquery/jquery-ui/commit/78c593be8f1651c743f4018dd9a2fd9ab6c25ae7))
+* Fixed: `menuselect` is not always fired. ([#9469](https://bugs.jqueryui.com/ticket/9469), [b02a32f](https://github.com/jquery/jquery-ui/commit/b02a32f4b3d7a0588949f2961a74d613beeaea48))
+* Fixed: Refreshing should recheck for menu icons. ([#9377](https://bugs.jqueryui.com/ticket/9377), [db1ee1a](https://github.com/jquery/jquery-ui/commit/db1ee1af85ea2f0671f370e325d4ba5b971b2dd0))
+
+### Slider
+
+* Fixed: Changing range option to `false` does not remove range div. ([#9355](https://bugs.jqueryui.com/ticket/9355), [8fba171](https://github.com/jquery/jquery-ui/commit/8fba171fec64cae094566c6777e40c252ecef812))
+
+### Spinner
+
+* Fixed: Forced field validation in Firefox before field loses focus or form is submitted. ([#9573](https://bugs.jqueryui.com/ticket/9573), [b846bea](https://github.com/jquery/jquery-ui/commit/b846bea0fde6b14f63194450e4a77693c3a039a2))
+
+### Tabs
+
+* Fixed: Refresh issue when tabs are moved to bottom. ([#9584](https://bugs.jqueryui.com/ticket/9584), [8eefd20](https://github.com/jquery/jquery-ui/commit/8eefd2032fb5c0e60c7a9899ba51bc7f33aaebc8))
+* Fixed: Incorrect remote tab detection in IE7. ([#9317](https://bugs.jqueryui.com/ticket/9317), [39ff5b3](https://github.com/jquery/jquery-ui/commit/39ff5b36e4ed2513f7dc11c22ea4df5d03f9f7b7))
+
+## CSS Framework
+
+* Fixed: Title color not reset in a focused accordion tab. ([#9428](https://bugs.jqueryui.com/ticket/9428), [8f7e342](https://github.com/jquery/jquery-ui/commit/8f7e3428f01fe84d8d9040b54adf761ffdcd382e))
diff --git a/page/changelog/1.11.0.md b/page/changelog/1.11.0.md
new file mode 100644
index 0000000..1fffa08
--- /dev/null
+++ b/page/changelog/1.11.0.md
@@ -0,0 +1,251 @@
+
+
+Released on June 26, 2014
+
+## General
+
+* Removed: Support for IE7. ([#9841](https://bugs.jqueryui.com/ticket/9841))
+* Added: Selectmenu widget.
+* Added: AMD support via UMD wrappers. ([96e027e](https://github.com/jquery/jquery-ui/commit/96e027e4b14345722cc39589f59ce2ce5e94b991), [1216e2a](https://github.com/jquery/jquery-ui/commit/1216e2aaf5e9bae52abe1ef9dfb9ab34c271c56d))
+* Added: Bower support. ([#9465](https://bugs.jqueryui.com/ticket/9465), [e837d11](https://github.com/jquery/jquery-ui/commit/e837d11d6b3c8517e322ded24faaa400443402ef))
+* Added: Windows 8 touch support. ([#9709](https://bugs.jqueryui.com/ticket/9709), [#9710](https://bugs.jqueryui.com/ticket/9710), [28310ff](https://github.com/jquery/jquery-ui/commit/28310ff))
+* Renamed: jquery.js to exclude version in filename. ([a40647f](https://github.com/jquery/jquery-ui/commit/a40647f0e56096f8437056d238b4299fd19f2859))
+* Renamed: All files, removing the "jquery.ui." prefix. ([#9464](https://bugs.jqueryui.com/ticket/9464), [21154cf](https://github.com/jquery/jquery-ui/commit/21154cfa2e02ef1814a6aff68b14553bdad165cb), [086dad6](https://github.com/jquery/jquery-ui/commit/086dad66c444fbf8dd6c93ac815fed6f0072ccbf))
+
+## Build
+
+* Added: Use Bower to manage client-side dependencies. ([#9507](https://bugs.jqueryui.com/ticket/9507), [d789d7a](https://github.com/jquery/jquery-ui/commit/d789d7ab1973f61484cc3c6307e8ff2978acd215))
+* Added: Run tests on Travis. ([b5c41a2](https://github.com/jquery/jquery-ui/commit/b5c41a2b33311d2de8f0b473cc454bd281ea0ad1))
+* Added: Validate number of generated manifests. ([5bbf276](https://github.com/jquery/jquery-ui/commit/5bbf27620504ec92cbeb3a907535f100b8d9586f))
+* Added: Replace @VERSION in release tags. ([#10006](https://bugs.jqueryui.com/ticket/10006), [0645ac4](https://github.com/jquery/jquery-ui/commit/0645ac45edc383ae30f17ce9e21a92d934ea5931))
+* Added: Validate commit messages with commitplease. ([08c7328](https://github.com/jquery/jquery-ui/commit/08c732833799f422b756dd1d5e42ca6859fe21c5))
+* Added: JSCS task for code style checking. ([c462e66](https://github.com/jquery/jquery-ui/commit/c462e66f5d2c3da30879e38649e81d34bb7d2587), [4752ee9](https://github.com/jquery/jquery-ui/commit/4752ee9a6c127eed6bbe0958c68426ee34f2c581))
+* Added: jquery-release dependency. ([#9793](https://bugs.jqueryui.com/ticket/9793), [516920a](https://github.com/jquery/jquery-ui/commit/516920ac71902cb9349db2220b5f7eb8e357340e))
+* Added: Run all CSS files through csslint. ([5fb6863](https://github.com/jquery/jquery-ui/commit/5fb68636d19a40451d1190b9a5255d86616d54f5))
+* Added: grunt-esformatter, formats all source files (no validation). ([327bcba](https://github.com/jquery/jquery-ui/commit/327bcbae8c7ee3021325e27136a258a47488f847))
+* Added: Add `lint` and `test` aliases for Grunt. ([d8468a3](https://github.com/jquery/jquery-ui/commit/d8468a33790da8e7be46552325e932162b1942af))
+* Added: Manifest entry for selectmenu. ([56e092d](https://github.com/jquery/jquery-ui/commit/56e092d43d4a907eb1983114345d7ed5024ed88e))
+* Fixed: Ability to use jQuery 2.x with Bower. ([#10110](https://bugs.jqueryui.com/ticket/10110), [a0fea7d](https://github.com/jquery/jquery-ui/commit/a0fea7d849a2d0a949cfde8ea1c2edbf2a94d963))
+* Fixed: Force LF for JS source files ([d7860b9](https://github.com/jquery/jquery-ui/commit/d7860b9c9822c40c68472e55baef72511c09d5de))
+* Changed: Reorganize external directory. ([6df127a](https://github.com/jquery/jquery-ui/commit/6df127a0b591d2a1437361f9cb6f3524a7b2e111))
+* Fixed: Verify ASCII only characters in output. ([#9037](https://bugs.jqueryui.com/ticket/9037), [7da8283](https://github.com/jquery/jquery-ui/commit/7da828375afb20d58736bb1eb530f915c445d5b9))
+* Fixed: Include `es3` option for JSHint. ([f848ae3](https://github.com/jquery/jquery-ui/commit/f848ae38e0389874c0a6d026d54d40cb044f9561))
+* Removed: the `build` task and it's dependencies. ([9ef09ed](https://github.com/jquery/jquery-ui/commit/9ef09edc797566e81f20682ab93208c9076341b5))
+* Fixed: Generate pre-releases the same way as stable releases. ([#9998](https://bugs.jqueryui.com/ticket/9998), [079279a](https://github.com/jquery/jquery-ui/commit/079279afd4bc9ca7bc19fb34c539621997033b22))
+* Fixed: Include draggable.css and sortable.css in the CSS concat step. ([a69ccd6](https://github.com/jquery/jquery-ui/commit/a69ccd68e431acb85c5a709ae7fbe90e572addb3))
+* Fixed: Incorrect links in effect manifests. ([#9247](https://bugs.jqueryui.com/ticket/9247), [45f85cc](https://github.com/jquery/jquery-ui/commit/45f85cce5634e2321e701e905297b578987d3083), [2daf09d](https://github.com/jquery/jquery-ui/commit/2daf09d67160eceddd2b024d2698930e12193ba9))
+
+## Core & Utilities
+
+### UI Core
+
+* Removed: `$.ui.hasScroll()`. ([#9190](https://bugs.jqueryui.com/ticket/9190), [ecd6a25](https://github.com/jquery/jquery-ui/commit/ecd6a25a83b15d0c5af306c44befb9e652c82f37))
+* Removed: `$.support.selectstart`. ([d24cd35](https://github.com/jquery/jquery-ui/commit/d24cd35f0cf211a5fed379532f1d9c762f39b9e2))
+* Removed: `$.ui.keyCode.NUMPAD_*`. ([#9269](https://bugs.jqueryui.com/ticket/9269), [274ed73](https://github.com/jquery/jquery-ui/commit/274ed73cd7da3025dc172b17f1c0820183f9a055))
+* Deprecated: `.focus( n )`. ([#9646](https://bugs.jqueryui.com/ticket/9646), [df6110c](https://github.com/jquery/jquery-ui/commit/df6110c0d424ff3306fdd5576011f2dcf4d242d0))
+* Deprecated: `.zIndex()`. ([#9061](https://bugs.jqueryui.com/ticket/9061), [932caaf](https://github.com/jquery/jquery-ui/commit/932caaf2ddf70c889003d5b42eee4f069d2dd296))
+
+### Widget Factory
+
+* Added: `instance` method on the bridge to return widget instance. ([#9030](https://bugs.jqueryui.com/ticket/9030), [36cb6f2](https://github.com/jquery/jquery-ui/commit/36cb6f264dbe6b155f8fd97b0ee7615a0f1adedb))
+* Added: Support events with dashes and colons. ([#9708](https://bugs.jqueryui.com/ticket/9708), [be2a339](https://github.com/jquery/jquery-ui/commit/be2a339b2beaed69105abae91a118bc1c8669a1b))
+* Added: `_init()` method is now optional. ([#9543](https://bugs.jqueryui.com/ticket/9543), [6e799c3](https://github.com/jquery/jquery-ui/commit/6e799c39d33be8eee02224d2f754dc42228a4cbb))
+* Added: Return the constructor from `$.widget()`. ([#9467](https://bugs.jqueryui.com/ticket/9467), [c0ab710](https://github.com/jquery/jquery-ui/commit/c0ab71056b936627e8a7821f03c044aec6280a40))
+* Fixed: Properly set `widgetEventPrefix` when redefining a widget. ([#9316](https://bugs.jqueryui.com/ticket/9316), [2eb89f0](https://github.com/jquery/jquery-ui/commit/2eb89f07341a557084fa3363fe22afe62530654d))
+* Fixed: Only remove hover and focus classes when disabling, not enabling. ([#9558](https://bugs.jqueryui.com/ticket/9558), [d13df39](https://github.com/jquery/jquery-ui/commit/d13df39e39010bb7cf2cec11b5206e85ea5fca2a))
+* Fixed: `option()` method should work as getter only when argument length is 1. ([#9601](https://bugs.jqueryui.com/ticket/9601), [ecde7cd](https://github.com/jquery/jquery-ui/commit/ecde7cd41a59e9c3ff07f56baeeaec2147cca779))
+* Changed: `.enable()` and `.disable()` act via `._setOptions()` instead of `._setOption()`. ([bc85742](https://github.com/jquery/jquery-ui/commit/bc857424a36fb33eda80f69454b123b226ec1685))
+
+### Position
+
+* Removed: `$.support.offsetFractions`. ([baf6bc5](https://github.com/jquery/jquery-ui/commit/baf6bc5c27003468052d81589855b6587f004d94))
+* Added: New download dialog demo. ([a74b69e](https://github.com/jquery/jquery-ui/commit/a74b69e7c2a1e926f393f275d9abac3e58aee01b))
+* Fixed: Scrollbar width detection causes layout issues. ([#9291](https://bugs.jqueryui.com/ticket/9291), [d500e94](https://github.com/jquery/jquery-ui/commit/d500e945a46c9e2ce5bbb685661c32b5d3f57d21))
+* Fixed: Positioning within document throws an error. ([#9533](https://bugs.jqueryui.com/ticket/9533), [1bbbcc7](https://github.com/jquery/jquery-ui/commit/1bbbcc723c489d7ef7d72bb62564b8f07805c41c))
+* Fixed: Incorrect presentation with progressbar demo label in IE9. ([#9163](https://bugs.jqueryui.com/ticket/9163), [8bf5bc8](https://github.com/jquery/jquery-ui/commit/8bf5bc8bc8322bce796a9d9c9e7dc140e3081973))
+
+## Interactions
+
+
+### Draggable
+
+* Fixed: Disabled should not have the `ui-state-disabled` class or `aria-disabled` attribute. ([#5974](https://bugs.jqueryui.com/ticket/5974), [44d0717](https://github.com/jquery/jquery-ui/commit/44d07173db32b498e5f83f60db290ff1463daee3))
+* Fixed: Position bug in scrollable div. ([#9379](https://bugs.jqueryui.com/ticket/9379), [44b2180](https://github.com/jquery/jquery-ui/commit/44b2180782df6ef3324789324fcf3f98b85784a0))
+* Fixed: Clicking on a draggable anchor without moving it should make it the active element. ([#8399](https://bugs.jqueryui.com/ticket/8399), [bca3e05](https://github.com/jquery/jquery-ui/commit/bca3e058e89bf40806170149b8029dfe52644248))
+* Fixed: Make sure positional constraints are never applied to ui.originalPosition ([4bd1a9c](https://github.com/jquery/jquery-ui/commit/4bd1a9c5bae513974c294d41e778fc44777c8ed2))
+* Fixed: Make sure snap elements are in the document before snapping. ([#8459](https://bugs.jqueryui.com/ticket/8459), [9d8af80](https://github.com/jquery/jquery-ui/commit/9d8af804ad4cebe434d420b29467c596809a7cca))
+* Fixed: Double offset bug when scrolling. ([#6817](https://bugs.jqueryui.com/ticket/6817), [82f588e](https://github.com/jquery/jquery-ui/commit/82f588e82b887fdcb2406da2c5dfedc2f13ebdc9))
+* Fixed: Enabled draggable from within iframe. ([#5727](https://bugs.jqueryui.com/ticket/5727), [24756a9](https://github.com/jquery/jquery-ui/commit/24756a978a977d7abbef5e5bce403837a01d964f))
+* Fixed: Modified snapping algorithm to use edges and corners. ([#8165](https://bugs.jqueryui.com/ticket/8165), [bd126a9](https://github.com/jquery/jquery-ui/commit/bd126a9c1cfcbc9d0fd370af25cfa0eab294fc4e))
+* Fixed: Apply `axis` options to position instead of style. ([#7251](https://bugs.jqueryui.com/ticket/7251), [94f8c4d](https://github.com/jquery/jquery-ui/commit/94f8c4d5e9ef461973a504d65dd906c1120da71d))
+* Fixed: Ability to change `containment` option. ([#9733](https://bugs.jqueryui.com/ticket/9733), [0bb807b](https://github.com/jquery/jquery-ui/commit/0bb807bb42af87bf4c6dd4d71808b12c08d316e7))
+* Fixed: Position bug in scrollable div. ([#9379](https://bugs.jqueryui.com/ticket/9379), [44b2180](https://github.com/jquery/jquery-ui/commit/44b2180782df6ef3324789324fcf3f98b85784a0))
+* Fixed: Scroll not working with fixed position parent. ([#5009](https://bugs.jqueryui.com/ticket/5009), [49c7b72](https://github.com/jquery/jquery-ui/commit/49c7b7200ef944ffc93487e79e763dfe97b4ff4a))
+* Fixed: Inputs do not blur when clicking on a draggable. ([#4261](https://bugs.jqueryui.com/ticket/4261), [fcd1caf](https://github.com/jquery/jquery-ui/commit/fcd1cafac8afe3a947676ec018e844eeada5b9de))
+* Fixed: Not following mouse when scrolled and using `overflow-y: scroll`. ([#6258](https://bugs.jqueryui.com/ticket/6258), [a88d645](https://github.com/jquery/jquery-ui/commit/a88d64514001867b908776e6bfcfac7f1011970d))
+* Fixed: Cursor doesn't revert to pre-dragging state after revert action when original element is removed. ([#6889](https://bugs.jqueryui.com/ticket/6889), [d345a0d](https://github.com/jquery/jquery-ui/commit/d345a0d7db841a143dcfdd3fb6fa6141cda435e9))
+* Fixed: Browser window drops behind other windows in IE9/10. ([#9520](https://bugs.jqueryui.com/ticket/9520), [eae2c4b](https://github.com/jquery/jquery-ui/commit/eae2c4b358af3ebfae258abfe77eeace48fcefcb))
+* Fixed: Handle `containment` option set to `false` after init. ([#8962](https://bugs.jqueryui.com/ticket/8962), [dc5254a](https://github.com/jquery/jquery-ui/commit/dc5254aa0703f9f7fd9d290c3078a5e9267160d9))
+* Fixed: Jumps down with offset of scrollbar. ([#9315](https://bugs.jqueryui.com/ticket/9315), [263d078](https://github.com/jquery/jquery-ui/commit/263d07894493aafcdc6a565f9f9c079b4b8f5d80))
+
+### Droppable
+
+* Fixed: Disabled should not have the `ui-state-disabled` class or `aria-disabled` attribute. ([#6039](https://bugs.jqueryui.com/ticket/6039), [44d0717](https://github.com/jquery/jquery-ui/commit/44d07173db32b498e5f83f60db290ff1463daee3))
+* Fixed: Off-by-one error in `isOverAxis()`. ([#10128](https://bugs.jqueryui.com/ticket/10128), [433ef9d](https://github.com/jquery/jquery-ui/commit/433ef9d433e9baa464cd0b313b82efa6f1d65556))
+* Fixed: `scope` option cannot be changed after initialization. ([#9287](https://bugs.jqueryui.com/ticket/9287), [ffab89e](https://github.com/jquery/jquery-ui/commit/ffab89e9bee97cf7cc74249b6e4ce9dd798013c9))
+* Fixed: Dependencies in photo manager demo. ([13be920](https://github.com/jquery/jquery-ui/commit/13be9205e1a0d227ef44ab28aed6d0e18aa5cf69))
+* Fixed: `offsetWidth` and `offsetHeight` are queried unnecessarily causing synchronous reflow. ([#9339](https://bugs.jqueryui.com/ticket/9339), [a4fc7a9](https://github.com/jquery/jquery-ui/commit/a4fc7a9e9664d44d65b971c90a0cad82e1e79344))
+* Fixed: Use `ui-state-default` for activation in demos. ([8f267ee](https://github.com/jquery/jquery-ui/commit/8f267ee3310bee8d7a2cb9e46b023a79ed84bfc1))
+
+### Resizable
+
+* Fixed: Disabled should not have the `ui-state-disabled` class or `aria-disabled` attribute. ([#5973](https://bugs.jqueryui.com/ticket/5973), [44d0717](https://github.com/jquery/jquery-ui/commit/44d07173db32b498e5f83f60db290ff1463daee3))
+* Fixed: Resizing can move the element. ([#7018](https://bugs.jqueryui.com/ticket/7018), [#9107](https://bugs.jqueryui.com/ticket/9107), [20f0646](https://github.com/jquery/jquery-ui/commit/20f064662a016eaa6bc580aed012022c63f675aa))
+* Fixed: `containment` now works with all parents, not just the immediate parent. ([#7485](https://bugs.jqueryui.com/ticket/7485), [c03cb80](https://github.com/jquery/jquery-ui/commit/c03cb8079c6984fb9286a64d980d367d86b9cd8b))
+* Fixed: Only resize/reposition if size is greater than specified grid. ([#9611](https://bugs.jqueryui.com/ticket/9611), [20c1648](https://github.com/jquery/jquery-ui/commit/20c1648f68660b267eec302d43a7b1014cda6e1a))
+* Fixed: Don't force absolute positioning when also draggable. ([#6939](https://bugs.jqueryui.com/ticket/6939), [3576ceb](https://github.com/jquery/jquery-ui/commit/3576ceb360eb0381a98f3c6b67d890c3834efa8a))
+* Fixed: Allow resizing when resizables are nested. ([#5025](https://bugs.jqueryui.com/ticket/5025), [ec5f395](https://github.com/jquery/jquery-ui/commit/ec5f395260c5e4b678d2fe39c5405d466ee8369e))
+* Fixed: Off-by-one pixel dimensions with `helper` and `grid`. ([#9547](https://bugs.jqueryui.com/ticket/9547), [14065dc](https://github.com/jquery/jquery-ui/commit/14065dc23bb453b6c30138f225c9db728dd7e455))
+* Fixed: Erratic behavior of contained elements within scrollable grandparents. ([#9307](https://bugs.jqueryui.com/ticket/9307), [6df5c1a](https://github.com/jquery/jquery-ui/commit/6df5c1a4ae738e591694e0fe2fa3bbb8b05f6b0a))
+
+### Sortable
+
+* Fixed: Placeholder breaks `table-layout: fixed`. ([#9185](https://bugs.jqueryui.com/ticket/9185), [09b3533](https://github.com/jquery/jquery-ui/commit/09b3533910e887377fc87126608db1ded06f38f6))
+* Fixed: Placeholder doesn't move when using `connectWith` option. ([#8301](https://bugs.jqueryui.com/ticket/8301), [f306a82](https://github.com/jquery/jquery-ui/commit/f306a826a4d3b4c36c3f86cb5feeee23bb0db4c3))
+* Fixed: Dragging items into bottom of a list. ([#9314](https://bugs.jqueryui.com/ticket/9314), [#9381](https://bugs.jqueryui.com/ticket/9381), [601ad96](https://github.com/jquery/jquery-ui/commit/601ad962e0a417bb369378ed7704a0b493eac365))
+
+## Widgets
+
+### Accordion
+
+* Removed: `content` property in `create` event. ([#8999](https://bugs.jqueryui.com/ticket/8999), [43442c3](https://github.com/jquery/jquery-ui/commit/43442c319643ee9fb6f54737d921ba8b03f3ae6b))
+* Removed: `ui-accordion-noicons` class which was unused. ([d65cc93](https://github.com/jquery/jquery-ui/commit/d65cc9350fa205a46031a9b9b95cf04d98394036))
+* Fixed: Maintain collapsed state on refresh. ([#9189](https://bugs.jqueryui.com/ticket/9189), [5a8596c](https://github.com/jquery/jquery-ui/commit/5a8596cdf3baa4d835e588cda9060a0537236c71))
+* Fixed: Avoid resetting outline on headers which was removing focus indicator. ([#9352](https://bugs.jqueryui.com/ticket/9352), [9470af0](https://github.com/jquery/jquery-ui/commit/9470af0bbefafa3d81c3709674a45a54b693e7cf))
+* Fixed: Moved `aria-expanded` from active tabpanel to active tab. ([#9407](https://bugs.jqueryui.com/ticket/9407), [f16d0c7](https://github.com/jquery/jquery-ui/commit/f16d0c7e267794aa20411581b15870d9babd7930))
+* Changed: Moved animation properties into the widget prototype. ([da185a6](https://github.com/jquery/jquery-ui/commit/da185a6c1553c18ec367d8b0210519d04f97a534))
+
+### Autocomplete
+
+* Fixed: Normalize falsy values, not just missing values. ([#9762](https://bugs.jqueryui.com/ticket/9762), [113e9d0](https://github.com/jquery/jquery-ui/commit/113e9d0c2cc3f474da719721857c074c983c7157))
+* Fixed: Scope race condition handling to the instance to allow multiple instances to have simultaneous requests. ([#9334](https://bugs.jqueryui.com/ticket/9334), [9e00e00](https://github.com/jquery/jquery-ui/commit/9e00e00f3b54770faa0291d6ee6fc1dcbad028cb))
+* Fixed: Search if the user retypes the same value. ([#7434](https://bugs.jqueryui.com/ticket/7434), [48001a8](https://github.com/jquery/jquery-ui/commit/48001a8c46adc5d1d6c1726cecbe6453946e96e0))
+* Fixed: Combobox demo. ([#9157](https://bugs.jqueryui.com/ticket/9157), [ebd5f13](https://github.com/jquery/jquery-ui/commit/ebd5f13027b30be1cdd9e8782e81ce468dcdff5e))
+* Fixed: Ability to use up/down arrow keys in textareas. ([#8911](https://bugs.jqueryui.com/ticket/8911), [f5f0879](https://github.com/jquery/jquery-ui/commit/f5f08791536e689e008b04d6ea9677811353d456))
+* Fixed: Announce autocomplete correctly in all assistive technologies. ([#9631](https://bugs.jqueryui.com/ticket/9631), [0b28d59](https://github.com/jquery/jquery-ui/commit/0b28d597fe1857590c9719c8b41f00e77967f7d7))
+* Fixed: `.replaceWith()` fails to replace. ([#9172](https://bugs.jqueryui.com/ticket/9172), [ff11b69](https://github.com/jquery/jquery-ui/commit/ff11b69a67e0176c851ff3bdec997c7a75d47a42))
+* Fixed: Remote JSONP demo which was using a deprecated web service. ([#9764](https://bugs.jqueryui.com/ticket/9764), [d4865dc](https://github.com/jquery/jquery-ui/commit/d4865dcbcdccdce59f07b324f230a1f1991aa39d))
+* Fixed: Do not set value on multi-line input. ([#9771](https://bugs.jqueryui.com/ticket/9771), [605a20e](https://github.com/jquery/jquery-ui/commit/605a20ef06b0bae2d2ffd8d96e49c2a297add80a))
+* Fixed: Fall back to .ui-front searching for empty jQuery objects. ([#9755](https://bugs.jqueryui.com/ticket/9755), [2ef1b16](https://github.com/jquery/jquery-ui/commit/2ef1b16e4d3aa8766084e50f4a1d806c434e7e43))
+* Fixed: Dynamically adding input field breaks auto-complete's accessibility for screen readers. ([#9590](https://bugs.jqueryui.com/ticket/9590), [7b9c810](https://github.com/jquery/jquery-ui/commit/7b9c810b9ac450d826b6fa0c3d35377178b7e3b3))
+* Fixed: Combobox demo shows underlying select by default. ([#9158](https://bugs.jqueryui.com/ticket/9158), [4202ad0](https://github.com/jquery/jquery-ui/commit/4202ad07187e15a3b2e64277e170daf9b278c3b4))
+* Changed: Use custom namespace for combobox demo. ([445ffd0](https://github.com/jquery/jquery-ui/commit/445ffd0acc95e8c4adb4d63b12815e9bcac1c198))
+* Changed: Don't add anchors to items in generated menu. ([e08791d](https://github.com/jquery/jquery-ui/commit/e08791d2c1be7628b7fd6ca2398cff195cb2e2c2))
+
+### Button
+
+* Fixed: Properly refresh button sets with new radio buttons. ([#8975](https://bugs.jqueryui.com/ticket/8975), [0059722](https://github.com/jquery/jquery-ui/commit/0059722b6b43c4985dbbd5f1494524442c12ddb0))
+* Fixed: Radio button & checkboxes ignore mouse clicks for minor mouse movements. ([#7665](https://bugs.jqueryui.com/ticket/7665), [8b64322](https://github.com/jquery/jquery-ui/commit/8b64322e982e97cdfd5cdd184c8993f7123d469e))
+* Fixed: Remove `ui-state-active` class when disabled. ([#9602](https://bugs.jqueryui.com/ticket/9602), [23d7d50](https://github.com/jquery/jquery-ui/commit/23d7d50f374f71efec418276a343e947cb80aea6))
+* Fixed: Remove `ui-state-focus` class when disabled. ([#9169](https://bugs.jqueryui.com/ticket/9169), [0d0b05e](https://github.com/jquery/jquery-ui/commit/0d0b05ec7cf702b8782b19c993eeb30398a090f4))
+* Fixed: On form reset only call `refresh()` on current button widgets. ([#9213](https://bugs.jqueryui.com/ticket/9213), [2de31fd](https://github.com/jquery/jquery-ui/commit/2de31fdbf498a6c20d196a96d007ea0f069644c5))
+* Fixed: Ignore non-radio elements with the same name. ([#8761](https://bugs.jqueryui.com/ticket/8761), [ccb1324](https://github.com/jquery/jquery-ui/commit/ccb13240dd8b5cfac0199a30dcec4a71cbe1b252))
+* Fixed: Replace anchors with more appropriate buttons in demos. ([7d0ca5e](https://github.com/jquery/jquery-ui/commit/7d0ca5e37dcf1b8dd1e201df2693e851da8ebb77))
+
+### Datepicker
+
+* Removed: Unused `ui-datepicker-month-year` class. ([3c68636](https://github.com/jquery/jquery-ui/commit/3c68636c8067e431c1bbdf2787dbec2ef3b88968))
+* Removed: Unnecessary mouseover trigger. ([#5816](https://bugs.jqueryui.com/ticket/5816), [f0b4967](https://github.com/jquery/jquery-ui/commit/f0b4967388a5f0d7eb14c4b124886a11f4aa7d9e))
+* Added: it-CH locale. ([#9175](https://bugs.jqueryui.com/ticket/9175), [ae4753b](https://github.com/jquery/jquery-ui/commit/ae4753b3f1c8d320e11a63f028ec02dc621d24e9))
+* Added: English as an option in the localization demo. ([8ad8cea](https://github.com/jquery/jquery-ui/commit/8ad8cea69590cbaddc143732e001c8d769b9f204))
+* Added: `en` and `en-US` locales. ([#6682](https://bugs.jqueryui.com/ticket/6682), [450d75f](https://github.com/jquery/jquery-ui/commit/450d75f912f4161c475f18f9eeb7efd307c02eae))
+* Fixed: Date format for Serbian locales. ([#7347](https://bugs.jqueryui.com/ticket/7347), [504b100](https://github.com/jquery/jquery-ui/commit/504b100a1a9213186968c654dd915b92bb9ee15b))
+* Fixed: Lithuanian locale. ([#9281](https://bugs.jqueryui.com/ticket/9281), [ce73a26](https://github.com/jquery/jquery-ui/commit/ce73a2688de47c975727ad9555cae84eb6997486))
+* Fixed: Spanish locale. ([#9735](https://bugs.jqueryui.com/ticket/9735), [6ec452c](https://github.com/jquery/jquery-ui/commit/6ec452cc63313ec03f58942ce896036c7a2fcf3f))
+* Fixed: Finnish locale. ([#9609](https://bugs.jqueryui.com/ticket/9609), [619261f](https://github.com/jquery/jquery-ui/commit/619261f0797a6fab49e2f2dd175b35795c0dc01e))
+* Fixed: Ukranian locale. ([#9939](https://bugs.jqueryui.com/ticket/9939), [f3ffc8c](https://github.com/jquery/jquery-ui/commit/f3ffc8c9a94da8abe97a32d164f821ad8a9a8b60))
+* Fixed: Latvian locale. ([#9656](https://bugs.jqueryui.com/ticket/9656), [629c632](https://github.com/jquery/jquery-ui/commit/629c632a110d437b6f328e6ff399a04c1a85352a))
+* Fixed: Icelandic locale. ([#9431](https://bugs.jqueryui.com/ticket/9431), [369c76d](https://github.com/jquery/jquery-ui/commit/369c76d9e62fd3bac4676801d5666e6b40a068a2))
+* Fixed: Corrected the Arabic word for Arabic. ([53c88a7](https://github.com/jquery/jquery-ui/commit/53c88a76ab965fed2ace8df42b3890549d2817d6))
+* Fixed: Spanish and French locales. ([#9289](https://bugs.jqueryui.com/ticket/9289), [9726cd7](https://github.com/jquery/jquery-ui/commit/9726cd72b64e9e9735cfdb5564ebef64a6dab0aa), [aaf7576](https://github.com/jquery/jquery-ui/commit/aaf75767fa98a6acdf00b1414bee622d3a3747cc))
+* Fixed: Removed `"<"` in the `"Anterior"` text for the pt locale. ([e591a7a](https://github.com/jquery/jquery-ui/commit/e591a7a9af123862fbef9d55c54351f6f995b7a7))
+* Fixed: Set `scope` on table headers. ([b67d103](https://github.com/jquery/jquery-ui/commit/b67d1037a8583b11658d1ecfc96e7971b0c7fcee))
+
+### Dialog
+
+* Removed: array and string notations for `position` option. ([#8825](https://bugs.jqueryui.com/ticket/8825), [0cc40d7](https://github.com/jquery/jquery-ui/commit/0cc40d799ffdf7aa978f910b890915ee6ad7a2b8))
+* Fixed: Error message after close and reopen the modal-form demo doesn't dissappear. ([#10057](https://bugs.jqueryui.com/ticket/10057), [b41b922](https://github.com/jquery/jquery-ui/commit/b41b92213af1e376e70099e0fffe875b01ff8d08))
+* Fixed: Resizing causes close icon to misalign in Firefox. ([#9133](https://bugs.jqueryui.com/ticket/9133), [ec3cf67](https://github.com/jquery/jquery-ui/commit/ec3cf6725aa5ae0c69cb302df92eb933a517cbaa))
+* Fixed: Safe `activeElement` access. ([#9420](https://bugs.jqueryui.com/ticket/9420), [#8443](https://bugs.jqueryui.com/ticket/8443), [2dfe85d](https://github.com/jquery/jquery-ui/commit/2dfe85d3e2269a571e07bd550bbd838ee703b833))
+* Fixed: Switch back to shuffling `z-index`, but only look at `.ui-front` siblings. ([#9166](https://bugs.jqueryui.com/ticket/9166), [#9364](https://bugs.jqueryui.com/ticket/9364), [e263ebd](https://github.com/jquery/jquery-ui/commit/e263ebda99f3d414bae91a4a47e74a37ff93ba9c))
+* Fixed: Inheritance causes undefined property _focusTabbable. ([#9241](https://bugs.jqueryui.com/ticket/9241), [1096f19](https://github.com/jquery/jquery-ui/commit/1096f19f37d6075328509d62a4c2c6d6a53d4b37))
+* Fixed: Use `unbind()` for jQuery 1.6 compat. ([#10072](https://bugs.jqueryui.com/ticket/10072), [6c40052](https://github.com/jquery/jquery-ui/commit/6c4005280d5f5b49de382e7e4992c1778f541f6c))
+* Fixed: Honor `preventDefault` when managing focus. ([#10103](https://bugs.jqueryui.com/ticket/10103), [226cc3e](https://github.com/jquery/jquery-ui/commit/226cc3e9e57c7591ff6a2ee02ffed52ac97786a9))
+* Fixed: Context is not respected for modals. ([#9439](https://bugs.jqueryui.com/ticket/9439), [c9815f1](https://github.com/jquery/jquery-ui/commit/c9815f13b487d027ef9b6095588dbb73141c9a09))
+* Fixed: Capitalize default value for `closeText` option. ([#9500](https://bugs.jqueryui.com/ticket/9500), [e628d0e](https://github.com/jquery/jquery-ui/commit/e628d0e4ba89eecee2c9b0d4cfb214523cad2ab4))
+* Fixed: Use proper position data after drag and resize. ([#9351](https://bugs.jqueryui.com/ticket/9351), [16c375d](https://github.com/jquery/jquery-ui/commit/16c375d374c5675265b5d8c5cd06c7170d0e8b58))
+* Fixed: Track last focused element instead of always focusing the first tabbable element. ([#9101](https://bugs.jqueryui.com/ticket/9101), [0e5a2e1](https://github.com/jquery/jquery-ui/commit/0e5a2e126ab4179f1ec83e1e4e773058b49e336d))
+* Fixed: shift-tab handling. ([a0b8476](https://github.com/jquery/jquery-ui/commit/a0b84767a76098cdcc6375dfe28a7fee866bd395))
+* Fixed: Apply `overflow: hidden` to contain the resize handles. ([#9521](https://bugs.jqueryui.com/ticket/9521), [7741c9f](https://github.com/jquery/jquery-ui/commit/7741c9f678088a129c1782f4e7f061bc12a41279))
+* Fixed: Dialog should not close on enter in textbox in IE. ([#9312](https://bugs.jqueryui.com/ticket/9312), [c19e7b3](https://github.com/jquery/jquery-ui/commit/c19e7b3496d14b40e71ba892213889fc8cc81d4f))
+
+### Menu
+
+* Removed: Requirement to use anchors in menu items. ([#10130](https://bugs.jqueryui.com/ticket/10130), [3a61627](https://github.com/jquery/jquery-ui/commit/3a61627a501cb7ba1ce80046bfabbff0f7f2f517))
+* Added: `items` option for better definition of menu items in non parent-child structures. ([#10129](https://bugs.jqueryui.com/ticket/10129), [31e705a](https://github.com/jquery/jquery-ui/commit/31e705ab324ec830062eee173a112551f7c919ea))
+* Added: `_isDivider()` method. ([#9701](https://bugs.jqueryui.com/ticket/9701), [a6806ab](https://github.com/jquery/jquery-ui/commit/a6806ab17a9a5b332dc7d0c947a0a7a512dc2579))
+* Fixed: Scroll on cursor down doesn't fully show the newly focused item. ([#9991](https://bugs.jqueryui.com/ticket/9991), [b222803](https://github.com/jquery/jquery-ui/commit/b22280385c05eaf10f4d480c546906b85aa011e1))
+* Fixed: Autofocus issue with dialog opened from menu widget. ([#9044](https://bugs.jqueryui.com/ticket/9044), [485e0a0](https://github.com/jquery/jquery-ui/commit/485e0a06121d712bccad82a21a9e443292d2f9bb))
+* Fixed: Ensure an event was passed before checking its type. ([#9384](https://bugs.jqueryui.com/ticket/9384), [670f650](https://github.com/jquery/jquery-ui/commit/670f650b99103bcea779f8ad0428e05cb7e37053), [8fbdd7c](https://github.com/jquery/jquery-ui/commit/8fbdd7cc38cd3e2a504b314cca2b36bc740aa168))
+* Fixed: Disabled item visible through submenu on top. ([#9650](https://bugs.jqueryui.com/ticket/9650), [4992fc9](https://github.com/jquery/jquery-ui/commit/4992fc902eae207737be33e5b937980b4765bbf7))
+* Fixed: Refreshing should recheck for menu icons. ([#9377](https://bugs.jqueryui.com/ticket/9377), [91b7b9f](https://github.com/jquery/jquery-ui/commit/91b7b9f9ab2e5baa31e37f34600457599409e161))
+* Fixed: IE 10 renders bullets in submenus. ([#8844](https://bugs.jqueryui.com/ticket/8844), [64a39d9](https://github.com/jquery/jquery-ui/commit/64a39d9b0d5710729653b185eae427853608744b))
+* Fixed: Menu items wiggle in IE8. ([#9995](https://bugs.jqueryui.com/ticket/9995), [b0e8380](https://github.com/jquery/jquery-ui/commit/b0e8380f023f41cb4a1bd3665177b5f0e795c289))
+* Fixed `select` not firing every time. ([#9469](https://bugs.jqueryui.com/ticket/9469), [484e382](https://github.com/jquery/jquery-ui/commit/484e382259f1c1c56b151a97ddf8a894f94d17ea))
+* Changed: Simplify styling. Remove rounded corners, reduce spacing. ([9910e93](https://github.com/jquery/jquery-ui/commit/9910e938aad1090339a2c7f60693093ee18aba82))
+
+### Slider
+
+* Fixed: Use spans instead of anchors for handles. ([#9890](https://bugs.jqueryui.com/ticket/9890), [dfc5c34](https://github.com/jquery/jquery-ui/commit/dfc5c34320691bd113250795243ea8b025b1f516))
+* Fixed: Changing `range` option to `false` does not remove range div. ([#9355](https://bugs.jqueryui.com/ticket/9355), [2ba75e2](https://github.com/jquery/jquery-ui/commit/2ba75e2c93638d89e89de52347da0013a7a841b8))
+* Changed: Move `numPages` into the widget prototype. ([8dbda00](https://github.com/jquery/jquery-ui/commit/8dbda00896adb7bd7ce74506e4fb1a474dd13e3c))
+
+### Spinner
+
+* Added: `isValid()` method. ([#9542](https://bugs.jqueryui.com/ticket/9542), [1552fc8](https://github.com/jquery/jquery-ui/commit/1552fc8a05ad351650b2a56c5c31905c671f1cdf))
+* Fixed: Only format the value when there is one. ([#9573](https://bugs.jqueryui.com/ticket/9573), [e6360ab](https://github.com/jquery/jquery-ui/commit/e6360ab846c6d0248d6013d005d2c178906ca692))
+* Fixed: Don't change value when changing `min`/`max` options. ([#9703](https://bugs.jqueryui.com/ticket/9703), [796a8b3](https://github.com/jquery/jquery-ui/commit/796a8b37e2b7eae6aa0f7a2fcaa5d8c29331e857))
+
+### Tabs
+
+* Removed: Demo with tabs at bottom. ([162056b](https://github.com/jquery/jquery-ui/commit/162056b2aa31795c216a3edc5554ff3c67393561))
+* Fixed: Moved `aria-expanded` from active panel to active tab. ([#9622](https://bugs.jqueryui.com/ticket/9622), [f5e8041](https://github.com/jquery/jquery-ui/commit/f5e8041ebf1e0b36d67d1716a0cfec44692fabb8))
+* Fixed: Incorrect remote tab detection in IE7. ([#9317](https://bugs.jqueryui.com/ticket/9317), [daf3f0d](https://github.com/jquery/jquery-ui/commit/daf3f0d9af5b29dc090e15d57cf884e3c12f7cad))
+* Fixed: Disabled tabs are still clickable. ([#9413](https://bugs.jqueryui.com/ticket/9413), [4148acf](https://github.com/jquery/jquery-ui/commit/4148acfa9a7b1494f2d87559362c07a59f8e47f8))
+* Fixed: URLs encoded in anything other than UTF-8 will throw an error. ([#9518](https://bugs.jqueryui.com/ticket/9518), [8748658](https://github.com/jquery/jquery-ui/commit/874865842bdbbf5ec48ee41640951e9f103c0f16))
+* Fixed: Use `.ui-tabs-anchor` in stylesheet. ([2de5e78](https://github.com/jquery/jquery-ui/commit/2de5e78e72b98adeab4f03cedf47269babbb0a6c))
+* Fixed: Refresh issue when tabs are moved to bottom. ([#9584](https://bugs.jqueryui.com/ticket/9584), [e14f75e](https://github.com/jquery/jquery-ui/commit/e14f75ed480e5b036bb47ab3398d1e0df28a128a))
+* Changed: Moved `isLocal()` into the widget prototype. ([ecd4f95](https://github.com/jquery/jquery-ui/commit/ecd4f95a50349d3f8488cef5cf9501d9b94a6108))
+
+### Tooltip
+
+* Fixed: Improved accessibility by adding content to an aria-live div. ([#9610](https://bugs.jqueryui.com/ticket/9610), [b9e438d](https://github.com/jquery/jquery-ui/commit/b9e438d07c370ac2d4b198048feb6b6922469f70))
+* Fixed: Preserve the `title` attribute after disabling twice. ([#9719](https://bugs.jqueryui.com/ticket/9719), [0dc84db](https://github.com/jquery/jquery-ui/commit/0dc84db853751f5f0ccfd9f79cbf8355dcc4b09c))
+* Fixed: Memory leak from `remove` event. ([#9531](https://bugs.jqueryui.com/ticket/9531), [a8ff773](https://github.com/jquery/jquery-ui/commit/a8ff77360b78b7eabcffd97b8b11c2d1f150ed4e))
+* Fixed: On close and destroy only set title if empty or undefined. ([#8925](https://bugs.jqueryui.com/ticket/8925), [af85dfc](https://github.com/jquery/jquery-ui/commit/af85dfcafb32b7503392ca834eaa9d3162d54b28))
+
+## Effects
+
+* Added: Separate files for puff and size effects. ([#9277](https://bugs.jqueryui.com/ticket/9277), [d0c613d](https://github.com/jquery/jquery-ui/commit/d0c613d3a8db7bd44ce70c20e8dc55478699b3d0))
+
+## CSS Framework
+
+* Fixed: Title color not reset in a focused accordion tab. ([#9428](https://bugs.jqueryui.com/ticket/9428), [5aa106a](https://github.com/jquery/jquery-ui/commit/5aa106a052e78559e50a4ca464863f5927c43bd5))
+
+## Tests
+
+* Added: Expose jQuery version select. ([3651d44](https://github.com/jquery/jquery-ui/commit/3651d44a307bb2b44d9e7063331ceb3ad4d3ce5f))
+* Added: Ability to run specific component tests via Grunt. ([9a93a06](https://github.com/jquery/jquery-ui/commit/9a93a06fbd61013f1e62cea054c92e11dfa561f1))
+* Fixed: Skip JSHint in browsers that don't support Function.prototype.bind(). ([8eeb0e7](https://github.com/jquery/jquery-ui/commit/8eeb0e7d88a943e3860f8492661ac8090cb8d3ac))
diff --git a/page/changelog/1.11.1.md b/page/changelog/1.11.1.md
new file mode 100644
index 0000000..45bf0ad
--- /dev/null
+++ b/page/changelog/1.11.1.md
@@ -0,0 +1,101 @@
+
+
+Released on August 13, 2014
+
+## Build
+
+* Changed: Upgrade to jquery-mousewheel 3.1.12 ([1071346](https://github.com/jquery/jquery-ui/commit/1071346aea784e0f22c85f260499135f76482f9f))
+
+## Core & Utilities
+
+### UI Core
+
+* Added: provide "includeHidden" parameter in $.ui.scrollParent ([67e4b44](https://github.com/jquery/jquery-ui/commit/67e4b44b295517cb81ced7b6c41fd9898a45d0d9))
+* Fixed: Fix focusable detection for image maps ([d6d15b4](https://github.com/jquery/jquery-ui/commit/d6d15b455839aa3a75cbcc5df2d7fa41299b59a9))
+
+### Widget Factory
+
+* Fixed: Improve performance of cleanData method ([#9546](https://bugs.jqueryui.com/ticket/9546), [f7429ed](https://github.com/jquery/jquery-ui/commit/f7429edfe96d322cdec850f7207efba8125767a6))
+
+### Position
+
+* Fixed: Support positioning within document with jQuery 1.6.x ([#10071](https://bugs.jqueryui.com/ticket/10071), [9bb51d3](https://github.com/jquery/jquery-ui/commit/9bb51d308e0a72bc67db948e92345c826a8f724d))
+
+
+## Interactions
+
+### Draggable
+
+* Fixed: Only apply ui-draggable-handle within the draggable instance ([#10212](https://bugs.jqueryui.com/ticket/10212), [7594a31](https://github.com/jquery/jquery-ui/commit/7594a3142547e078326872cb0d6e2d7f32f4c808))
+* Fixed: consider offsets from overflow:hidden parents ([#10147](https://bugs.jqueryui.com/ticket/10147), [e9efbc2](https://github.com/jquery/jquery-ui/commit/e9efbc222149ca7c7a5fef2c0fe28b7b1d9be698))
+* Fixed: ignore overflow:hidden containers with scroll option ([bbf9ea0](https://github.com/jquery/jquery-ui/commit/bbf9ea0942622a40d1adafeaed7045e0cf6ff8fd))
+* Fixed: Manage ui-draggable-handle correctly in nested instances ([3ca32b2](https://github.com/jquery/jquery-ui/commit/3ca32b2ad8a3366d14317eb767e89d28254e97a4))
+
+### Droppable
+
+* Fixed: only consider pointer location with tolerance "pointer" ([#4977](https://bugs.jqueryui.com/ticket/4977), [87081b8](https://github.com/jquery/jquery-ui/commit/87081b855c5ded96039d16791a30ff0181fb5a9f))
+
+### Resizable
+
+* Fixed: Fix containment calculation with relative parent ([#10140](https://bugs.jqueryui.com/ticket/10140), [2779212](https://github.com/jquery/jquery-ui/commit/2779212a0e6e34fdea3f0d442e4d92218ac943fa))
+* Fixed: Fix size/position changes in resize event ([#10351](https://bugs.jqueryui.com/ticket/10351), [5beae72](https://github.com/jquery/jquery-ui/commit/5beae72e7773d35d46195a4359cb8f845dfb0f4f))
+* Fixed: account for padding & border in grids. ([#10437](https://bugs.jqueryui.com/ticket/10437), [7c8790d](https://github.com/jquery/jquery-ui/commit/7c8790dcc881c8e82390bb5abe31fad35afdaaa0))
+* Fixed: Remove accidental exposure of internal data in events ([#10148](https://bugs.jqueryui.com/ticket/10148), [ffe60e3](https://github.com/jquery/jquery-ui/commit/ffe60e39db568f7acc3fff4b1a9f9f3a1d0b7c62))
+* Fixed: Fix containment width with relative parent. ([750a8fd](https://github.com/jquery/jquery-ui/commit/750a8fd0c267aaba784f6dc76924619dbb459762))
+
+
+## Widgets
+
+### Autocomplete
+
+* Fixed: ESCAPE should not change content of a MultiLine ([#9790](https://bugs.jqueryui.com/ticket/9790), [930bc7d](https://github.com/jquery/jquery-ui/commit/930bc7df666c997add9978d3cc3139559e71ae77))
+* Fixed: Fix styling for combobox demo ([#10059](https://bugs.jqueryui.com/ticket/10059), [d1e327c](https://github.com/jquery/jquery-ui/commit/d1e327c189cb12661f53d6962ece07b31dec86cb))
+* Fixed: Use `$.trim` instead of `jQuery.trim` for consistency ([#10525](https://bugs.jqueryui.com/ticket/10525), [36e4bfd](https://github.com/jquery/jquery-ui/commit/36e4bfd516c10140d8517ed9e2eb067be2e5c837))
+
+### Datepicker
+
+* Fixed: Set explicit button text in demo ([#9626](https://bugs.jqueryui.com/ticket/9626), [bb29287](https://github.com/jquery/jquery-ui/commit/bb29287c3c26445eb2808e014cf74f60a11c3aa4))
+* Fixed: reject dates with two year digits when expecting 'yy' ([#8353](https://bugs.jqueryui.com/ticket/8353), [5730374](https://github.com/jquery/jquery-ui/commit/573037423822fa04a1888e3bcc52243b9324c5e2))
+* Fixed: Abstract mouseover logic to avoid explicit event trigger ([#10319](https://bugs.jqueryui.com/ticket/10319), [c399f1f](https://github.com/jquery/jquery-ui/commit/c399f1f77a015d4f269e3bda98720ebea9bb0c7a))
+* Fixed: Show year/month on the same line ([#7953](https://bugs.jqueryui.com/ticket/7953), [98583a6](https://github.com/jquery/jquery-ui/commit/98583a6563e7ae98ed67b5d70db2bff814c11e4e))
+
+
+### Dialog
+
+* Fixed: Track the instance as soon as the dialog is opened ([#10152](https://bugs.jqueryui.com/ticket/10152), [69f25db](https://github.com/jquery/jquery-ui/commit/69f25dbff71d9864ce7ce46c47003413f8b7deb2))
+* Fixed: Fix stacking of modal dialog overlays ([#10138](https://bugs.jqueryui.com/ticket/10138), [acfda4b](https://github.com/jquery/jquery-ui/commit/acfda4be521e48c6b61cc458a715ef163892ac36))
+
+### Progressbar
+
+* Fixed: replace image reference in base CSS with data URI ([#10134](https://bugs.jqueryui.com/ticket/10134), [e91f38e](https://github.com/jquery/jquery-ui/commit/e91f38ef1ede2a6191e718c6628fd7c34cfe5103))
+
+### Selectmenu
+
+* Fixed: Properly set width for button ([#10145](https://bugs.jqueryui.com/ticket/10145), [45e13ed](https://github.com/jquery/jquery-ui/commit/45e13ed208b3533e91d008789d61e5138501428a))
+* Fixed: Preserve text selection when interacting with the widget ([#10144](https://bugs.jqueryui.com/ticket/10144), [749a6a5](https://github.com/jquery/jquery-ui/commit/749a6a56677fe29d2bf777d79811ce8bdd1b5fad))
+
+### Slider
+
+* Fixed: Reset positioning when orientation changes ([#10105](https://bugs.jqueryui.com/ticket/10105), [15baf02](https://github.com/jquery/jquery-ui/commit/15baf024c3352f0c593a49d70a3a87e4bc13c36b))
+
+### Spinner
+* Fixed: Fix inclusion of mousewheel plugin in demos ([#10188](https://bugs.jqueryui.com/ticket/10188), [bef2c45](https://github.com/jquery/jquery-ui/commit/bef2c456cafb60951a71386ed0b21ee7f7ae65c8))
+
+### Tabs
+
+* Fixed: Work around bad Safari/VoiceOver heuristics ([#10098](https://bugs.jqueryui.com/ticket/10098), [b4fb511](https://github.com/jquery/jquery-ui/commit/b4fb51199dcdaf08d959cfb8a6d5f5a6f8e76d75))
+
+### Tooltip
+
+* Fixed: Treat the tooltip as closing until it's fully removed ([32bef7a](https://github.com/jquery/jquery-ui/commit/32bef7ad4ea120fb32a79e1ea49bd9b846bcf835))
+
+## Effects
+
+* Effect: Create a local jQuery variable to make jQuery Color work ([#10199](https://bugs.jqueryui.com/ticket/10199), [2447cab](https://github.com/jquery/jquery-ui/commit/2447cabd598ed4b58587fa5054a0c9f7b9bd9bd6))
+
+
+## CSS Framework
+
+* Added: Add support comments for filter properties ([1b4f615](https://github.com/jquery/jquery-ui/commit/1b4f61509a321cde82bf4df7ccc9a3da8219d106))
diff --git a/page/changelog/1.11.2.md b/page/changelog/1.11.2.md
new file mode 100644
index 0000000..3520982
--- /dev/null
+++ b/page/changelog/1.11.2.md
@@ -0,0 +1,83 @@
+
+
+Released on October 16, 2014
+
+## Build
+
+* Fixed: Pull in jquery.simulate.js from Bower ([#10563](https://bugs.jqueryui.com/ticket/10563), [aa425ab](https://github.com/jquery/jquery-ui/commit/aa425ab95d6be06337ccb435c1405f6ac38ba8b9))
+
+
+## Core & Utilities
+
+### Mouse
+
+* Fixed: Only detect out of document `mouseup`s after a `mousemove` ([#7778](https://bugs.jqueryui.com/ticket/7778), [e12e3e1](https://github.com/jquery/jquery-ui/commit/e12e3e12b19e226b90e4a0ec3848e400a80c8267))
+
+### Widget Factory
+
+* Fixed: Avoid memory leaks when unbinding events with `._off()` ([#10056](https://bugs.jqueryui.com/ticket/10056), [b397294](https://github.com/jquery/jquery-ui/commit/b397294d42e783aacd4cc3a52bbe3aacc0f3f725))
+
+
+## Interactions
+
+### Draggable
+
+* Fixed: Check all parents for fixed positioning when scrolling ([#9612](https://bugs.jqueryui.com/ticket/9612), [df7e32f](https://github.com/jquery/jquery-ui/commit/df7e32fe3798562ffb86d064444f1e0cc8ac59a8))
+* Fixed: Offset differs between `start` and `drag` events ([#6884](https://bugs.jqueryui.com/ticket/6884), [b5846be](https://github.com/jquery/jquery-ui/commit/b5846bece34db31d69e75cb3a3537827c005910e))
+* Fixed: Only change focus in draggable if the event occurs on a handle ([#10527](https://bugs.jqueryui.com/ticket/10527), [075421d](https://github.com/jquery/jquery-ui/commit/075421d6d965c66055e47cde477f0ce2e23f1755), [d10440f](https://github.com/jquery/jquery-ui/commit/d10440fe44c840dd5c69c4efb1c06d2636fa11c6))
+* Fixed: Ensure overflow:visible containments are correctly measured ([#7016](https://bugs.jqueryui.com/ticket/7016), [48ea2aa](https://github.com/jquery/jquery-ui/commit/48ea2aadad11938cc5ddbd9a340c4ca1c997550d))
+* Fixed: Account for margins when snapping ([#9724](https://bugs.jqueryui.com/ticket/9724), [2d03839](https://github.com/jquery/jquery-ui/commit/2d03839c07a33d14ec7b31b2d4290a8ce6fc0cef))
+* Fixed: Set explicit width/height instead of right/bottom CSS. ([#7772](https://bugs.jqueryui.com/ticket/7772), [#7430](https://bugs.jqueryui.com/ticket/7430), [8eca7b8](https://github.com/jquery/jquery-ui/commit/8eca7b8f45885d20c13f1bf64cad8bee5fc1d5c5))
+* Fixed: Ensure helper is positioned even if its the element itself ([#9446](https://bugs.jqueryui.com/ticket/9446), [451dded](https://github.com/jquery/jquery-ui/commit/451dded230c3832a1baacc89333727b25c44cfc7))
+* Fixed: Animation issue with `revert` and `connectToSortable` ([#9675](https://bugs.jqueryui.com/ticket/9675), [27ed207](https://github.com/jquery/jquery-ui/commit/27ed20715f4b3e256f5279825ac551bbfcdfbe81), [a611dd8](https://github.com/jquery/jquery-ui/commit/a611dd8971a5fada1ca9e661ad1944b401192f0d))
+* Fixed: No cloning in connectToSortable and ensure correct position ([#7734](https://bugs.jqueryui.com/ticket/7734), [#8809](https://bugs.jqueryui.com/ticket/8809), [95546c5](https://github.com/jquery/jquery-ui/commit/95546c5d045f8055b121f24d3e35468e2a570c1b))
+* Fixed: Append divs to iframe parent for `iframefix` ([#9671](https://bugs.jqueryui.com/ticket/9671), [c7bec85](https://github.com/jquery/jquery-ui/commit/c7bec85cfa7711bb2612278eb980d0d14dade3b9))
+* Fixed: Ensure sortable revert still works after draggable is removed ([#9481](https://bugs.jqueryui.com/ticket/9481), [e8c99b9](https://github.com/jquery/jquery-ui/commit/e8c99b9abf7ca9368668ee5886e469d31ea33c09))
+
+### Droppable
+
+* Fixed: Account for draggable margins when detecting hover ([#6876](https://bugs.jqueryui.com/ticket/6876), [4dad6bb](https://github.com/jquery/jquery-ui/commit/4dad6bb99dae280108338c040d016f795d0da328))
+
+### Sortable
+
+* Fixed: `cancelHelperRemoval` only considers `helper`, not `placeholder` ([#9675](https://bugs.jqueryui.com/ticket/9675), [52a1de5](https://github.com/jquery/jquery-ui/commit/52a1de5caadd9dd0665d4bf092f6061d9d3a3a8e))
+* Fixed: Fire `over` and `out` even when a `connectWith` hasn't changed ([#9335](https://bugs.jqueryui.com/ticket/9335), [1cfebf8](https://github.com/jquery/jquery-ui/commit/1cfebf803beedef05e8dcdd54e34d10c412a9a2b))
+
+
+## Widgets
+
+### Accordion
+
+* Fixed: Avoid memory leak during refresh ([#10056](https://bugs.jqueryui.com/ticket/10056), [849c6fd](https://github.com/jquery/jquery-ui/commit/849c6fd5376e12c6093c557bd4836ef0b145f145))
+
+### Datepicker
+
+* Fixed: `currentText` in Greek locale ([#10620](https://bugs.jqueryui.com/ticket/10620), [b20387a](https://github.com/jquery/jquery-ui/commit/b20387ab366aba3428dbd54196a74c0b2eb6ea70))
+* Fixed: Month names in Persian locale ([#10562](https://bugs.jqueryui.com/ticket/10562), [233f08e](https://github.com/jquery/jquery-ui/commit/233f08e07fc451cff46dff22ba69420ceac72255))
+* Fixed: French locale ([#10651](https://bugs.jqueryui.com/ticket/10651), [02c37d3](https://github.com/jquery/jquery-ui/commit/02c37d3aef059de80db5a2c2eeb551ed20a4db71), [d85016a](https://github.com/jquery/jquery-ui/commit/d85016abf00685f3dd520031f5920bc6ec970f76))
+
+### Menu
+
+* Added: Demo showing how to create category headers ([1c08e88](https://github.com/jquery/jquery-ui/commit/1c08e882ab7d4be90c2f08a3876f34141ab478c8))
+* Fixed: Item is hovered when navigating with keyboard ([#10458](https://bugs.jqueryui.com/ticket/10458), [ddc666c](https://github.com/jquery/jquery-ui/commit/ddc666ce8b95f34539864c0ddd87fee42123cbde))
+* Fixed: Typeahead now accounts for leading whitespace ([#10649](https://bugs.jqueryui.com/ticket/10649), [c48b18b](https://github.com/jquery/jquery-ui/commit/c48b18b388b566b4f6a4d833775db70eb62f4f29))
+* Fixed: Maintain focus on already selected item during typeahead ([#10644](https://bugs.jqueryui.com/ticket/10644), [6b6b49f](https://github.com/jquery/jquery-ui/commit/6b6b49f678706280c5590a5097ef9f0aca359d4b))
+* Fixed: Filter out non-items when typing ([#10571](https://bugs.jqueryui.com/ticket/10571), [e3e5a9f](https://github.com/jquery/jquery-ui/commit/e3e5a9ffa647937d2dd458114e27e04f56bd47d0))
+
+### Selectmenu
+
+* Fixed: Preserve text selection and button focus on click ([#10639](https://bugs.jqueryui.com/ticket/10639), [d4a437e](https://github.com/jquery/jquery-ui/commit/d4a437e4b0d91d40eff269a19672a6db9217766e))
+
+### Slider
+
+* Fixed: Don't allow a slider's value to exceed its max ([#9376](https://bugs.jqueryui.com/ticket/9376), [6833a31](https://github.com/jquery/jquery-ui/commit/6833a3169775d4c15dd5e68c96bc63ad0187035e))
+
+### Tabs
+
+* Fixed: Avoid memory leak during refresh ([#10056](https://bugs.jqueryui.com/ticket/10056), [2e8e52d](https://github.com/jquery/jquery-ui/commit/2e8e52dec1eaa06ed170a0ed9769c7b97129c955))
+
+### Tooltips
+
+* Fixed: Properly track hiding and closing for delegated tooltips ([#10602](https://bugs.jqueryui.com/ticket/10602), [8825d93](https://github.com/jquery/jquery-ui/commit/8825d93dc877d182cf4a3fce37b6c2593cf08552))
diff --git a/page/changelog/1.11.3.md b/page/changelog/1.11.3.md
new file mode 100644
index 0000000..01684bb
--- /dev/null
+++ b/page/changelog/1.11.3.md
@@ -0,0 +1,51 @@
+
+
+Released on February 12, 2015
+
+## Core & Utilities
+
+### Core
+
+* Fixed: Match on exact node name for `:focusable` and `:tabbable` to support custom elements ([#10747](https://bugs.jqueryui.com/ticket/10747), [f1345e3](https://github.com/jquery/jquery-ui/commit/f1345e3900e4ac7e5c496b82c04731ce7535bdf7))
+
+### Position
+
+* Fixed: Flip collision handling ([#8710](https://bugs.jqueryui.com/ticket/8710), [276cd5c](https://github.com/jquery/jquery-ui/commit/276cd5cd8cbef787328335a11ad19864242ccafd), [9db4057](https://github.com/jquery/jquery-ui/commit/9db405798dd5fc8ee603991226916351ec2a0dda))
+
+
+## Interactions
+
+### Resizable
+
+* Fixed: Correct width when grid approaches zero ([#10590](https://bugs.jqueryui.com/ticket/10590), [0a0db09](https://github.com/jquery/jquery-ui/commit/0a0db09378fb21ef37fa261958d89f7f1a21ba76))
+* Fixed: Match on exact node name to support custom elements ([#10748](https://bugs.jqueryui.com/ticket/10748), [7ff9b28](https://github.com/jquery/jquery-ui/commit/7ff9b28de30360e1688c3c1bcf0444def56382ab))
+
+### Sortable
+
+* Fixed: Add support for iframes ([#9604](https://bugs.jqueryui.com/ticket/9604), [fa460f3](https://github.com/jquery/jquery-ui/commit/fa460f36dc8191e4fe23c02bcbcc7d5006b51d7e))
+
+
+## Widgets
+
+### Accordion
+
+* Fixed: Set `aria-expanded` when collapsing ([#10703](https://bugs.jqueryui.com/ticket/10703), [dc2b17d](https://github.com/jquery/jquery-ui/commit/dc2b17d62f77e6f9795eecdebb0d37603ffd285b))
+
+### Datepicker
+
+* Fixed: Release `datepicker_instActive` on destroy for garbage collection ([#10668](https://bugs.jqueryui.com/ticket/10668), [47ceff8](https://github.com/jquery/jquery-ui/commit/47ceff8dbd1f64c081f8fd136d86a5db23fef0ff))
+* Fixed: Month names and `firstDay` value in Arabic locale ([#10035](https://bugs.jqueryui.com/ticket/10035), [9afe0f7](https://github.com/jquery/jquery-ui/commit/9afe0f7b8a1fc0c282f0561899e4195f601c8538))
+
+### Selectmenu
+
+* Fixed: Properly parse value from options ([#10684](https://bugs.jqueryui.com/ticket/10684), [dc2c948](https://github.com/jquery/jquery-ui/commit/dc2c948dd621c4ce9397789f880370904e75f233))
+
+### Slider
+
+* Fixed: Calculation of `max` when `step` is a float ([#10721](https://bugs.jqueryui.com/ticket/10721), [dfa3a9f](https://github.com/jquery/jquery-ui/commit/dfa3a9f8c983f5206d49000a170b42581fcc5478))
+
+### Tabs
+
+* Fixed: Suppress automatic activation when navigating with COMMAND ([#9621](https://bugs.jqueryui.com/ticket/9621), [9dd1e73](https://github.com/jquery/jquery-ui/commit/9dd1e733f3a9526344e226e07bfdbdd2bfba5ea9))
diff --git a/page/changelog/1.11.4.md b/page/changelog/1.11.4.md
new file mode 100644
index 0000000..5e3348f
--- /dev/null
+++ b/page/changelog/1.11.4.md
@@ -0,0 +1,38 @@
+
+
+Released on March 11, 2015
+
+## Interactions
+
+### Draggable
+
+* Fixed: Ensure parent is correct after dragging through sortable ([#10669](https://bugs.jqueryui.com/ticket/10669), [b371063](https://github.com/jquery/jquery-ui/commit/b3710631e8d21ef9165ef9f037590e1d250350b4))
+
+### Resizable
+
+* Fixed: Allow jQuery instances as handles outside of the resizable element ([#9658](https://bugs.jqueryui.com/ticket/9658), [65f31c2](https://github.com/jquery/jquery-ui/commit/65f31c2ead48755ac4cdffb95478a2f6d02801ff))
+* Fixed: `alsoResize` supports more than one element of a jQuery instance ([#4666](https://bugs.jqueryui.com/ticket/4666), [31e7099](https://github.com/jquery/jquery-ui/commit/31e7099709a3bccaae8f83d397951096835269a2))
+
+### Sortable
+
+* Fixed: Append a `` with `` to the placeholder of ` ` elements ([#10682](https://bugs.jqueryui.com/ticket/10682), [ddc1b32](https://github.com/jquery/jquery-ui/commit/ddc1b32a45746db7cc8e96de92818936464b323b))
+* Fixed: Redetermine floating flag when recalculating positions ([#7498](https://bugs.jqueryui.com/ticket/7498), [189f1d4](https://github.com/jquery/jquery-ui/commit/189f1d476c2d6f53c88f9e92bdaffbc64ed9c572))
+
+## Widgets
+
+### Accordion
+* Fixed: Handle `box-sizing: border-box` in animations ([#9264](https://bugs.jqueryui.com/ticket/9264), [de75b40](https://github.com/jquery/jquery-ui/commit/de75b40835ecb82360321dafbd87d66db5404a4a))
+
+### Dialog
+
+* Fixed: Stop tracking instance in `destroy()` to avoid memory leaks ([#11125](https://bugs.jqueryui.com/ticket/11125), [04ab6e0](https://github.com/jquery/jquery-ui/commit/04ab6e0388f248b2490c2bc663528657ba39051a))
+
+### Slider
+
+* Fixed: Proper handling with float step ([#11286](https://bugs.jqueryui.com/ticket/11286), [0f99e9c](https://github.com/jquery/jquery-ui/commit/0f99e9c9693b05199d9f8c1137606c7033e19f38))
+
+### Tooltip
+
+* Fixed: Hiding with dynamically loaded content ([#8740](https://bugs.jqueryui.com/ticket/8740), [88291ff](https://github.com/jquery/jquery-ui/commit/88291ffc4d6a5f4762ae65e42de607f5588101dd))
diff --git a/page/changelog/1.12.0-beta.1.md b/page/changelog/1.12.0-beta.1.md
new file mode 100644
index 0000000..6de5769
--- /dev/null
+++ b/page/changelog/1.12.0-beta.1.md
@@ -0,0 +1,260 @@
+
+
+Released on December 23, 2015
+
+## General
+
+* Removed: Support for jQuery 1.6.x ([#10723](https://bugs.jqueryui.com/ticket/10723))
+* Removed: Support for IE7 ([#9838](https://bugs.jqueryui.com/ticket/9838), [6d75893](https://github.com/jquery/jquery-ui/commit/6d7589351eae1e180579fc0c87885e5ab7a73f48))
+* Removed: Support for IE8, IE9, and IE10. Existing workarounds will be left in place until 1.14.0.
+* Deprecated: Buttonset widget; use new Controlgroup widget instead
+* Added: Checkboxradio widget
+* Added: Controlgroup widget
+* Added: Form reset mixin ([#12638](https://bugs.jqueryui.com/ticket/12638), [ad98cb1](https://github.com/jquery/jquery-ui/commit/ad98cb167350b8d929b71bfeefc904c8964893dd))
+* Added: `.labels()` method as a shim for `control.labels` ([#12475](https://bugs.jqueryui.com/ticket/12475))
+* Added: New demo infrastructure using a require.js bootstrap ([#10119](https://bugs.jqueryui.com/ticket/10119), [7336a58](https://github.com/jquery/jquery-ui/commit/7336a5869ceb2bf27779b5f089277c365fc7d278))
+* Added: `device-width` viewport meta to all demos ([5cbb419](https://github.com/jquery/jquery-ui/commit/5cbb419f2432979a2075346ec94ea7da97b09fb2))
+* Added: Support for custom builds of jQuery which exclude event alias and deprecated modules ([#12770](https://bugs.jqueryui.com/ticket/12770), [6fd9fc9](https://github.com/jquery/jquery-ui/commit/6fd9fc92a372e222e3543f52979c601ac88ad81e))
+* Added: Delegate to base `_getCreateOptions()` in all widgets to support base widget extensions ([e19d462](https://github.com/jquery/jquery-ui/commit/e19d462f16f619dbc56824e00d5c409ccd677f8d))
+* Changed: Split functions out of core into their own files ([#9647](https://bugs.jqueryui.com/ticket/9647))
+
+## Build
+
+* Added: Publish to npm ([#11101](https://bugs.jqueryui.com/ticket/11101), [ab0bb87](https://github.com/jquery/jquery-ui/commit/ab0bb87634c19a47211d9e46afc0c09fbf49ee29))
+* Added: Webpack support ([#14375](https://bugs.jqueryui.com/ticket/14375), [6308a26](https://github.com/jquery/jquery-ui/commit/6308a261fd5d1be2362863e6a59fede4420d9f8c))
+* Fixed: AMD loading doesn't work with minified files ([#10674](https://bugs.jqueryui.com/ticket/10674), [47a32fb](https://github.com/jquery/jquery-ui/commit/47a32fb5b3c190123937e0178900ef754c3e220d))
+* Changed: Remove manifest files; move metadata to source files ([b5f1ffd](https://github.com/jquery/jquery-ui/commit/b5f1ffdea4c3c4b41936e56d4cb23ca8acb2aaa8))
+* Changed: Move widgets and effects into their own folders ([#13885](https://bugs.jqueryui.com/ticket/13885))
+
+## Core & Utilities
+
+### UI Core
+
+* Removed: `.zIndex()` ([#9156](https://bugs.jqueryui.com/ticket/9156), [faf87d9](https://github.com/jquery/jquery-ui/commit/faf87d992455280182edef015c8733313744a739))
+* Removed: `.focus( delay )` ([#9649](https://bugs.jqueryui.com/ticket/9649), [89ed68f](https://github.com/jquery/jquery-ui/commit/89ed68fb05ed8dff281d0de941a6d1164f2e66f1))
+* Added: Methods to work around IE active element bugs ([f330278](https://github.com/jquery/jquery-ui/commit/f33027840cdac5152599da66635981bbe68c6bda))
+* Added: `.labels()`, `.form()`, and `$.ui.escapeSelector()` methods ([803eaf2](https://github.com/jquery/jquery-ui/commit/803eaf29f732a68793b806356096fe849b9f470b))
+* Fixed: Remove ancestor visibility requirement from `:focusable` selector ([#14596](https://bugs.jqueryui.com/ticket/14596), [0db243a](https://github.com/jquery/jquery-ui/commit/0db243a7369bc1e642a83d8b84be9437c360f7e2), [d302596](https://github.com/jquery/jquery-ui/commit/d3025968f349c37a8ca41bfc63ee1b37d9d7354f))
+* Fixed: Work around more IE `activeElement` bugs ([0de27b0](https://github.com/jquery/jquery-ui/commit/0de27b0609e8f6f9751ab7cce28492e18206d86d))
+* Fixed: Handle IE11 bug with `document.activeElement` in iframes ([#11539](https://bugs.jqueryui.com/ticket/11539), [76c2755](https://github.com/jquery/jquery-ui/commit/76c27556f48bea48d3787c241d35e190d46c3245))
+* Fixed: Feature detecting `.outerWidth()` setter API is expensive ([#11197](https://bugs.jqueryui.com/ticket/11197), [c077e0a](https://github.com/jquery/jquery-ui/commit/c077e0a347826c7acca4ca2f775ca59e3b5f8d07))
+* Fixed: Match on exact node name for `:focusable` and `:tabbable` ([#10747](https://bugs.jqueryui.com/ticket/10747), [c66842b](https://github.com/jquery/jquery-ui/commit/c66842b45e032ac09f73fcd767e78390d7191b6f))
+* Changed: Move uniqueId into its own module ([37602d7](https://github.com/jquery/jquery-ui/commit/37602d7e645964e4f5e4d06ef313081c8eb60bf1))
+* Changed: Move version and creation of the ui namespace into its own module ([3d71fb8](https://github.com/jquery/jquery-ui/commit/3d71fb83fe02a307823594f5905be9848cfa5506))
+* Changed: Move data selector from core into its own module ([f0260fd](https://github.com/jquery/jquery-ui/commit/f0260fd91b593ae56f68e1f33ca8496c1c4b0467))
+* Changed: Move disable-selection into its own module ([4916487](https://github.com/jquery/jquery-ui/commit/4916487440b0c087e6e5996522cf478af26df591))
+* Changed: Move focusable into its own module ([475ccef](https://github.com/jquery/jquery-ui/commit/475ccefd97ec24d76cfa6767c007501c14934ba6))
+* Changed: Move escape selector into its own module ([47188b7](https://github.com/jquery/jquery-ui/commit/47188b792617a0030ccec07c6df27335dc3aa430))
+* Changed: Move form method into its own module ([64076ec](https://github.com/jquery/jquery-ui/commit/64076ecfb5870130d89733ff34668fdd18683f9b))
+* Changed: Move $.ui.ie into its own module ([677fdbf](https://github.com/jquery/jquery-ui/commit/677fdbf7bef71d12998191e0b97c2c5cd34349be))
+* Changed: Move labels into its own module ([2c92f10](https://github.com/jquery/jquery-ui/commit/2c92f1074718ee23081765da0b86a8e3fe906874))
+* Changed: Move backcompat for core 1.7 into its own module ([2d03e12](https://github.com/jquery/jquery-ui/commit/2d03e1280a3671468aba6d48d60ba9381fe90e19))
+* Changed: Move plugin into its own module ([0a9df3a](https://github.com/jquery/jquery-ui/commit/0a9df3af52a66fe5e8f23622503020f0bcc6ded9))
+* Changed: Move safeActiveElement into its own module ([2b84531](https://github.com/jquery/jquery-ui/commit/2b84531ae9331f60e4d739fabca6d78abde89ae1))
+* Changed: Move safe blur into its own module ([26fc3b5](https://github.com/jquery/jquery-ui/commit/26fc3b5587ed117a972224ac661255998e59f9e1))
+* Changed: Move tabbable into its own module ([6064a5e](https://github.com/jquery/jquery-ui/commit/6064a5e0487428d53bd694dcebce952730992c46))
+* Changed: Move scrollParent into its own module ([72bfafb](https://github.com/jquery/jquery-ui/commit/72bfafbedea4973b803abeefc97637f246b11c89))
+* Changed: Move keyCode into its own module ([bddb7ef](https://github.com/jquery/jquery-ui/commit/bddb7efe000cf60e455d48f28acef0ef2f295d9d))
+
+### Mouse
+
+* Deprecated: `distance` and `delay` options ([#10615](https://bugs.jqueryui.com/ticket/10615))
+* Fixed: Don't stop propagation of `mouseup` ([#10818](https://bugs.jqueryui.com/ticket/10818), [a1d6920](https://github.com/jquery/jquery-ui/commit/a1d69208bad175a27c7b50c27fdc10001563cd4d))
+* Fixed: Delay timeout clearing upon `mouseup` ([#14458](https://bugs.jqueryui.com/ticket/14458), [9b82001](https://github.com/jquery/jquery-ui/commit/9b82001a70a6273df037db9e602080011d0fd7ba))
+* Fixed: Ignore `mousemove` events triggered by key presses in Safari ([#14461](https://bugs.jqueryui.com/ticket/14461), [17b5386](https://github.com/jquery/jquery-ui/commit/17b5386e8cb48c522ddb581a001fef5434e57f9a))
+
+### Position
+
+* Fixed: Fraction support test doesn't work when loaded outside of `head` ([#9898](https://bugs.jqueryui.com/ticket/9898), [3970e8c](https://github.com/jquery/jquery-ui/commit/3970e8c68146a3645f09d54735a40d5cf7eeef9e))
+* Fixed: Flip collision handling fails in some situations ([#8710](https://bugs.jqueryui.com/ticket/8710), [ebaaca7](https://github.com/jquery/jquery-ui/commit/ebaaca7206cae201ec069dbaed85bc8d6beeab32))
+* Fixed: Passing `window` doesn't work with new versions of jQuery ([#13493](https://bugs.jqueryui.com/ticket/13493), [b3a9b13](https://github.com/jquery/jquery-ui/commit/b3a9b13a218cd90b7cf67be5d5f8ad6e76c557b0))
+
+### Widget Factory
+
+* Added: Support for mixins ([#12601](https://bugs.jqueryui.com/ticket/12601), [556b271](https://github.com/jquery/jquery-ui/commit/556b2710f0f09b76909b92c751edc3f4243fa5c0))
+* Added: `classes` option and `_addClass()`, `_removeClass()`, `_toggleClass()` methods ([#7053](https://bugs.jqueryui.com/ticket/7053), [c192d40](https://github.com/jquery/jquery-ui/commit/c192d4086d9bbaf09d5f870857af30c60a427e22))
+* Fixed: Call `._setOptionDisabled()` on init if the widget is disabled (consistent handling of `disabled` option on create and update) ([#9151](https://bugs.jqueryui.com/ticket/9151), [7dde5c9](https://github.com/jquery/jquery-ui/commit/7dde5c9d75148cdca7cf86ff0c6e310fdc5a4054))
+
+## Interactions
+
+### Draggable
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [e9bb449](https://github.com/jquery/jquery-ui/commit/e9bb449b5dde255e4a79ea6768864ba26529ed6c))
+* Fixed: Ensure parent is correct after dragging through sortable ([#10669](https://bugs.jqueryui.com/ticket/10669), [d8077dc](https://github.com/jquery/jquery-ui/commit/d8077dc562bfca60906a160e20186608a10b7a87))
+* Fixed: Draggable elements receive an explicit height in Firefox only ([10725](https://bugs.jqueryui.com/ticket/10725), [d0ea32e](https://github.com/jquery/jquery-ui/commit/d0ea32e3ad613eaaa523d0c88c776dab2b26b25f))
+
+### Droppable
+
+* Removed: `$.ui.intersect()` helper method ([#10534](https://bugs.jqueryui.com/ticket/10534), [20a6368](https://github.com/jquery/jquery-ui/commit/20a636844961a1fb2de7a892ab28890091822e6a))
+* Deprecated: `hoverClass` and `activeClass` options; use `classes` option instead ([#12162](https://bugs.jqueryui.com/ticket/12162))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [f58277a](https://github.com/jquery/jquery-ui/commit/f58277a521ae41b1d3e054a419ef5fda85e7db21))
+
+### Resizable
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2665aa0](https://github.com/jquery/jquery-ui/commit/2665aa01469daf10dacf76f60a7e5f39f2e0a3de))
+* Added: Modified to allow jquery objects as handles ([#9658](https://bugs.jqueryui.com/ticket/9658), [18e301f](https://github.com/jquery/jquery-ui/commit/18e301f4e29c2080e9aa9dac87c00dee137cb6c9))
+* Fixed: Correct width when grid approaches zero ([#10590](https://bugs.jqueryui.com/ticket/10590), [9493839](https://github.com/jquery/jquery-ui/commit/9493839f23b6ff71aacb9cb8fe8fde6c8d0ecd61))
+* Fixed: Don't use CSS shorthand properties with `.css()` ([#7766](https://bugs.jqueryui.com/ticket/7766), [6a681c2](https://github.com/jquery/jquery-ui/commit/6a681c2c13afb6e76a6881b9dae928b9ff66a395))
+* Fixed: Don't round dimensions ([0ff7a16](https://github.com/jquery/jquery-ui/commit/0ff7a1653407d2a91cff721528a0a435dbf12503))
+* Fixed: `alsoResize` supports more than one element of a jQuery selection ([#4666](https://bugs.jqueryui.com/ticket/4666), [19783fd](https://github.com/jquery/jquery-ui/commit/19783fd3e6a6e6e02a2030028e8820076c3b1295))
+* Fixed: With helper, dragging horizontally or vertically only reduces opposite direction by 1px ([#11113](https://bugs.jqueryui.com/ticket/11113), [7df2f19](https://github.com/jquery/jquery-ui/commit/7df2f1905a1ec4727f00451f8d794aeb35ec4159))
+* Fixed: Remove data for `ui-resizable-alsoresize` on stop ([#14788](https://bugs.jqueryui.com/ticket/14788), [7cc88bf](https://github.com/jquery/jquery-ui/commit/7cc88bfe327ba826ffa5199c96c91178862b22f0))
+* Fixed: Match on exact node name ([#10748](https://bugs.jqueryui.com/ticket/10748), [faefab8](https://github.com/jquery/jquery-ui/commit/faefab842bc79f212ccee227b7a37c7630b1573c))
+
+### Selectable
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2a7873d](https://github.com/jquery/jquery-ui/commit/2a7873dd5711db472a87f749e698e80c49ccf8cd))
+
+### Sortable
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [90c27b4](https://github.com/jquery/jquery-ui/commit/90c27b4b5130fff9abbfea671c193c59e4bf8850))
+* Added: Support for iframes ([#9604](https://bugs.jqueryui.com/ticket/9604), [17c7f69](https://github.com/jquery/jquery-ui/commit/17c7f698a2894211bbb5f2d63750f5b3b84bb0ab))
+* Fixed: Redetermine floating flag when recalculating positions ([#7498](https://bugs.jqueryui.com/ticket/7498), [f656aeb](https://github.com/jquery/jquery-ui/commit/f656aebe3f99356b7eb91ffdafe6689ecc8fb4ae))
+* Fixed: Append a `` with `` to the placeholder of ` ` elements ([#10682](https://bugs.jqueryui.com/ticket/10682), [962e05d](https://github.com/jquery/jquery-ui/commit/962e05dc1d0a51a7458bc44725417aa3462cd89a))
+
+## Widgets
+
+### Accordion
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [7c6a7d7](https://github.com/jquery/jquery-ui/commit/7c6a7d71e98cbeea21bfc1560f8a82484a3c9510))
+* Fixed: Set `aria-expanded` when collapsing ([#10703](https://bugs.jqueryui.com/ticket/10703), [ab798cb](https://github.com/jquery/jquery-ui/commit/ab798cb4646cfeb79f1949eb70cd64813a248d87))
+* Fixed: Handle `box-sizing: border-box` in animations ([#9264](https://bugs.jqueryui.com/ticket/9264), [4b017b4](https://github.com/jquery/jquery-ui/commit/4b017b414f107ed3c1dafc7601b61cbcd76acf61))
+
+### Autocomplete
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [cff1fb2](https://github.com/jquery/jquery-ui/commit/cff1fb2a13e18403c02ba516e08db3a5b21a8b6c))
+* Added: Include native dialogs in `appendTo` logic (`ui-front` walking) ([#10739](https://bugs.jqueryui.com/ticket/10739), [dc67037](https://github.com/jquery/jquery-ui/commit/dc6703756d388b1f49be0637473a8d55b5ce9270))
+* Fixed: Close the menu on any outside interactions ([#6642](https://bugs.jqueryui.com/ticket/6642), [548fbf5](https://github.com/jquery/jquery-ui/commit/548fbf570caa5fdee973bbbe8ac2d36b0338c2b9))
+* Fixed: Restore focus after clicking a menu item, if necessary ([#9201](https://bugs.jqueryui.com/ticket/9201), [581bfb5](https://github.com/jquery/jquery-ui/commit/581bfb55bf4f4f614a6e0c0ac545cf1aa7d29d0a))
+* Fixed: Use a `div` instead of a `span` for the live region ([#14587](https://bugs.jqueryui.com/ticket/14587), [ce50178](https://github.com/jquery/jquery-ui/commit/ce5017843036151d545fba76062655fda69eac62))
+
+### Button
+
+* Deprecated: `icons` option; replaced with `icon` and `iconPosition` ([#14744](https://bugs.jqueryui.com/ticket/14744))
+* Deprecated: Support for toggle buttons; use new Checkboxradio widget ([#14746](https://bugs.jqueryui.com/ticket/14746))
+* Deprecated: `text` option; renamed to `showLabel` ([#8203](https://bugs.jqueryui.com/ticket/8203))
+* Added: Support the HTML5 form attribute ([#9973](https://bugs.jqueryui.com/ticket/9973), [e77fbe5](https://github.com/jquery/jquery-ui/commit/e77fbe5388abeeb1d0f8f377161a0fc039897594))
+* Fixed: Remove padding on text element for icon only buttons ([#14056](https://bugs.jqueryui.com/ticket/14056), [1f6ea8b](https://github.com/jquery/jquery-ui/commit/1f6ea8b78ac859bfecbdcdd092c2df3e2eec90ed))
+* Fixed: Inconsistent focus handling across browsers ([#7902](https://bugs.jqueryui.com/ticket/7902))
+* Fixed: Pixel positioning for button widget with radio buttons is incorrect ([#8827](https://bugs.jqueryui.com/ticket/8827))
+* Fixed: Use `control.labels` if available ([#9541](https://bugs.jqueryui.com/ticket/9541))
+* Fixed: Minor mouse movements cause state inconsistencies in Firefox ([#9990](https://bugs.jqueryui.com/ticket/9990))
+* Fixed: Selecting text causes an inconsistent state ([#10726](https://bugs.jqueryui.com/ticket/10726))
+* Fixed: Radio buttons do not have appropriate focus styling ([#9505](https://bugs.jqueryui.com/ticket/9505))
+
+### Buttonset
+
+* Deprecated: Buttonset widget; replaced with Controlgroup ([#14747](https://bugs.jqueryui.com/ticket/14747))
+* Fixed: Incorrect button width/alignment in IE8 ([#7583](https://bugs.jqueryui.com/ticket/7583))
+
+### Checkboxradio - NEW!
+
+New checkboxradio widget. Check out the [checkboxradio documentation](//api.jqueryui.com/1.12/checkboxradio/) for more details.
+
+### Controlgroup - NEW!
+
+New controlgroup widget. Check out the [controlgroup documentation](//api.jqueryui.com/1.12/controlgroup/) for more details.
+
+### Datepicker
+
+* Fixed: Date range demo when entering values manually ([#11143](https://bugs.jqueryui.com/ticket/11143), [fac8e51](https://github.com/jquery/jquery-ui/commit/fac8e517d7ea4c65bad21a65ad59eef1e4379efb))
+* Fixed: Date format for `ko` locale ([#14595](https://bugs.jqueryui.com/ticket/14595), [2d4b4ef](https://github.com/jquery/jquery-ui/commit/2d4b4ef360728ab687412c159099b99984231ece))
+* Fixed: Translate `weekHeader` in `ko` locale ([e5c3004](https://github.com/jquery/jquery-ui/commit/e5c3004c8e9613c290a997a75285171cae64cb90))
+* Fixed: Month names and `firstDay` value in Arabic locale ([#10035](https://bugs.jqueryui.com/ticket/10035), [06231cf](https://github.com/jquery/jquery-ui/commit/06231cf7622fe112703c38535df71aa7f100ef7d))
+* Fixed: Remove unused variable ([#14416](https://bugs.jqueryui.com/ticket/14416), [eec0cfd](https://github.com/jquery/jquery-ui/commit/eec0cfd7fe75f0e52bc5802d8c294a2bccd722c7))
+* Fixed: `datepicker_instActive` released on instance destroy ([#10668](https://bugs.jqueryui.com/ticket/10668), [e5e3ca4](https://github.com/jquery/jquery-ui/commit/e5e3ca4240fbae9684f689ec6e00882ec0211922))
+
+### Dialog
+
+* Deprecated: `dialogClass` option; use `classes` option instead ([#12161](https://bugs.jqueryui.com/ticket/12161))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [6f4884f](https://github.com/jquery/jquery-ui/commit/6f4884f6f5b422bacbb20dbd82d90d351a985a4b))
+* Fixed: Selectmenu and autocomplete menus are cut off ([#10543](https://bugs.jqueryui.com/ticket/10543), [912eb62](https://github.com/jquery/jquery-ui/commit/912eb62ccb77059148a1fe14bdb57b7f9e44a14c))
+* Fixed: Removal of event listener for modal dialogs ([#13649](https://bugs.jqueryui.com/ticket/13649), [62446d9](https://github.com/jquery/jquery-ui/commit/62446d957efb69cd53015919edf71501fcbd2599))
+* Fixed: Escape `closeText` option before passing it to button ([9644e7b](https://github.com/jquery/jquery-ui/commit/9644e7bae9116edaf8d37c5b38cb32b892f10ff6))
+* Fixed: Stop tracking instance in `destroy()` to avoid memory leaks ([#11125](https://bugs.jqueryui.com/ticket/11125), [ec1f393](https://github.com/jquery/jquery-ui/commit/ec1f393c39aa5bbac1158acf692271f8ce9518ce))
+
+### Menu
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2ebef69](https://github.com/jquery/jquery-ui/commit/2ebef69efe96a5b6057bdedd8876a76661bde482))
+* Fixed: Use `ui-state-active` consistently ([#10692](https://bugs.jqueryui.com/ticket/10692), [0bbd156](https://github.com/jquery/jquery-ui/commit/0bbd1569182bc03e8dc4f5f8aa203e8edbe15f99))
+* Fixed: Ignore bubbled `mouseenter` events on parent items ([#11641](https://bugs.jqueryui.com/ticket/11641), [c770605](https://github.com/jquery/jquery-ui/commit/c770605db05347edfa9c6224aebd42974092ed22))
+* Fixed: `ui-state-focus` styling for submenus ([#10162](https://bugs.jqueryui.com/ticket/10162), [de2ef2a](https://github.com/jquery/jquery-ui/commit/de2ef2a585447cf75fc8d4a734c12aa2bbd028c2))
+
+### Progressbar
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [ea35ded](https://github.com/jquery/jquery-ui/commit/ea35ded6ed12747d88bf163c3b7fa15506ef521a))
+
+# Selectmenu
+
+* Added: Include native dialogs in `appendTo` logic (`ui-front` walking) ([#10739](https://bugs.jqueryui.com/ticket/10739), [dc67037](https://github.com/jquery/jquery-ui/commit/dc6703756d388b1f49be0637473a8d55b5ce9270))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [3483486](https://github.com/jquery/jquery-ui/commit/3483486a153f6f7b3a8bbe9783735eb63adfd033))
+* Added: `_renderButtonItem()` method ([#10142](https://bugs.jqueryui.com/ticket/10142), [fb4124b](https://github.com/jquery/jquery-ui/commit/fb4124b7af4e87712eca9893f7aefb5fee7905de))
+* Added: Support `width: false` and default to `14em` ([#11198](https://bugs.jqueryui.com/ticket/11198), [af4c35d](https://github.com/jquery/jquery-ui/commit/af4c35df9d1cf4c15d57b3789711026360785831))
+* Fixed: Copy title attributes ([#10435](https://bugs.jqueryui.com/ticket/10435), [9793739](https://github.com/jquery/jquery-ui/commit/979373983babce7122d98c4f3919426735555d61))
+* Fixed: Calling `refresh()` after removing all options throws an error ([#10662](https://bugs.jqueryui.com/ticket/10662), [65584c1](https://github.com/jquery/jquery-ui/commit/65584c1640f8c7430587738c3c4cd7dd8010a2a5))
+* Fixed: Properly parse value from options ([#10684](https://bugs.jqueryui.com/ticket/10684), [809cc0f](https://github.com/jquery/jquery-ui/commit/809cc0f8d0c07c2be44942b3010bba1f9ce91be8))
+* Fixed: Handle form resets ([#12236](https://bugs.jqueryui.com/ticket/12236), [39853fd](https://github.com/jquery/jquery-ui/commit/39853fda45a409e9dc47d7358fbd9b03ad1d33b5))
+* Fixed: Content differs when created or refreshed when overriding `_renderItem()` ([#11054](https://bugs.jqueryui.com/ticket/11054), [fb4124b](https://github.com/jquery/jquery-ui/commit/fb4124b7af4e87712eca9893f7aefb5fee7905de)
+
+### Slider
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [491bb9c](https://github.com/jquery/jquery-ui/commit/491bb9c7f4929eb574e0ab6116a5b22562446734))
+* Added: Pass handle index to events ([#7630](https://bugs.jqueryui.com/ticket/7630), [6111b17](https://github.com/jquery/jquery-ui/commit/6111b17710ab4e14bb119e735de9cfa9285badab))
+* Fixed: Handle order when setting values of range slider to max ([#9046](https://bugs.jqueryui.com/ticket/9046), [dff1c74](https://github.com/jquery/jquery-ui/commit/dff1c74dd4c0fd6b951c7c183bebae09f9f229f6))
+* Fixed: Proper animation of range ([#9459](https://bugs.jqueryui.com/ticket/9459), [bf03479](https://github.com/jquery/jquery-ui/commit/bf03479cc14aa54c2e674cad87bf75c8126cb86f))
+* Fixed: Modified to allow value to reach max value with float step ([#10721](https://bugs.jqueryui.com/ticket/10721), [ae1d6d5](https://github.com/jquery/jquery-ui/commit/ae1d6d5f90236405023964bb3061eccd6c625e39), [#11286](https://bugs.jqueryui.com/ticket/11286), [60c00cd](https://github.com/jquery/jquery-ui/commit/60c00cd4ecdab41f44e125efe2679223e9cd5535))
+* Fixed: Range fills all space after changing orientation ([#12205](https://bugs.jqueryui.com/ticket/12205), [897a238](https://github.com/jquery/jquery-ui/commit/897a238332110c5c1a58ee9a0db5bf4e54fc3059))
+* Fixed: Pass 0 value if slider reaches it ([#12196](https://bugs.jqueryui.com/ticket/12196), [adcc8ef](https://github.com/jquery/jquery-ui/commit/adcc8eff431847b4897666369310cb83275a8282))
+
+### Spinner
+
+* Deprecated: `_uiSpinnerHtml()` and `_buttonHtml()` extension points ([#11097](https://bugs.jqueryui.com/ticket/11097), [d4719bf](https://github.com/jquery/jquery-ui/commit/d4719bf6160a0c99273abddc42e39a734e9943a2))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [28dccda](https://github.com/jquery/jquery-ui/commit/28dccda3776c586052d787dd77e0abdbf1b68a0d))
+* Fixed: Add padding to input to give consistent visual style ([#13997](https://bugs.jqueryui.com/ticket/13997), [caf6f2d](https://github.com/jquery/jquery-ui/commit/caf6f2dc84295878f0a692b540e6f910b2a1d505))
+
+### Tabs
+
+* Deprecated: `ui-tab` class; use `ui-tabs-tab` ([#12061](https://bugs.jqueryui.com/ticket/12061), [74ccbc1](https://github.com/jquery/jquery-ui/commit/74ccbc18a414be9f78f6765b2b6c8be29c5019a9))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [aaddfbf](https://github.com/jquery/jquery-ui/commit/aaddfbfa8b3bdb0374540d7dd1e13a708bdb00aa))
+* Fixed: Use `$.ui.escapeSelector()` to avoid invalid selectors ([1ee8e23](https://github.com/jquery/jquery-ui/commit/1ee8e230bdc6036bec1e28573c67e2e9ca67252c))
+* Fixed: Suppress automatic activation when navigating with COMMAND ([#9621](https://bugs.jqueryui.com/ticket/9621), [6a242ab](https://github.com/jquery/jquery-ui/commit/6a242ab4ebdcec265826b959fa27881dcf462c96))
+
+### Tooltip
+
+* Deprecated: `tooltipClass` option; use `classes` option instead ([#12167](https://bugs.jqueryui.com/ticket/12167))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [9d71547](https://github.com/jquery/jquery-ui/commit/9d71547394f9464e5af1f0c77e56917d0ba5abb6))
+* Added: Accept `HTMLElement` and `jQuery` instances for the `content` option ([#9278](https://bugs.jqueryui.com/ticket/9278), [42099e4](https://github.com/jquery/jquery-ui/commit/42099e44610face58172ed0ed27115fb2b84ab50))
+* Fixed: Does not display in foreground when used in a `` element ([#10739](https://bugs.jqueryui.com/ticket/10739), [8cf9879](https://github.com/jquery/jquery-ui/commit/8cf98798a58afb7197bce0d6ca1c5b658ae04011))
+* Fixed: Use `show.delay` update only when `track` option is active to reduce CPU usage ([#14682](https://bugs.jqueryui.com/ticket/14682), [d573232](https://github.com/jquery/jquery-ui/commit/d5732327078709c3680385c79a2106f263009f84))
+* Fixed: Content cannot contain checked radio button ([#11272](https://bugs.jqueryui.com/ticket/11272), [2cef124](https://github.com/jquery/jquery-ui/commit/2cef124bf27ce89f1fbfc493352ebfd895b40822))
+* Fixed: Does not hide consistently with dynamically loaded content ([#8740](https://bugs.jqueryui.com/ticket/8740), [c4e367b](https://github.com/jquery/jquery-ui/commit/c4e367bb31c21d7c8b2701c626a92a2f13be5af4))
+
+## Effects
+
+* Deprecated: Transfer effect; replaced with `.transfer()` plugin ([#14749](https://bugs.jqueryui.com/ticket/14749), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Added: [`$.effects.define()`](//api.jqueryui.com/1.12/jQuery.effects.define/)
+* Added: [`$.effects.scaledDimensions()`](//api.jqueryui.com/1.12/jQuery.effects.scaledDimensions/)
+* Added: [`$.effects.clipToBox()`](//api.jqueryui.com/1.12/jQuery.effects.clipToBox/)
+* Added: [`$.effects.saveStyle()`](//api.jqueryui.com/1.12/jQuery.effects.saveStyle/)
+* Added: [`$.effects.restoreStyle()`](//api.jqueryui.com/1.12/jQuery.effects.restoreStyle/)
+* Added: [`$.effects.createPlaceholder()`](//api.jqueryui.com/1.12/jQuery.effects.createPlaceholder/)
+* Added: [`$.effects.removePlaceholder()`](//api.jqueryui.com/1.12/jQuery.effects.removePlaceholder/)
+* Fixed: Toggle size effect demo not working ([#7041](https://bugs.jqueryui.com/ticket/7041), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: `.ui-effects-wrapper` doesn't maintain element's `display`, `vertical-align`, etc. ([#9477](https://bugs.jqueryui.com/ticket/9477), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Fixed position elements jump in blind effect ([#9257](https://bugs.jqueryui.com/ticket/9257), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Element jumps to wrong position in scale effect ([#9066](https://bugs.jqueryui.com/ticket/9066), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Select element with padding breaks in shake effect ([#8867](https://bugs.jqueryui.com/ticket/8867), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Clip effect behavior is incorrect ([#8671](https://bugs.jqueryui.com/ticket/8671), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Absolute position child elements work incorrectly with slide effects ([#8505](https://bugs.jqueryui.com/ticket/8505), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Clip effect works incorrectly on centered images ([#7885](https://bugs.jqueryui.com/ticket/7885), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Pulsate effect leaves inline opacity style ([#11160](https://bugs.jqueryui.com/ticket/11160), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+
+## CSS Framework
+
+* Fixed: Position of some icons is off by one pixel ([712e9ad](https://github.com/jquery/jquery-ui/commit/712e9ad7446f39c34634792a59cc232d231833cb))
+* Fixed: Disabled elements can still be focused with a click ([#10573](https://bugs.jqueryui.com/ticket/10573), [7137c90](https://github.com/jquery/jquery-ui/commit/7137c90b1883bc19f23678582170e9df981a084d))
+* Fixed: Improve default theme styling ([#10617](https://bugs.jqueryui.com/ticket/10617), [#10880](https://bugs.jqueryui.com/ticket/10880), [79c4fa1](https://github.com/jquery/jquery-ui/commit/79c4fa1e7a09a3d28f0f8ff7a5b9f41a6d6e123d))
+* Fixed: Change default widget `font-size` to `1em` ([#10131](https://bugs.jqueryui.com/ticket/10131), [3002d46](https://github.com/jquery/jquery-ui/commit/3002d460de2b854243d99634e69d394dfca78886))
+* Renamed: `ui-icon-carat` should be named `ui-icon-caret` ([#10683](https://bugs.jqueryui.com/ticket/10683), [2500bb3](https://github.com/jquery/jquery-ui/commit/2500bb39c2af32770944488aa9c4bb45e8c305fa))
diff --git a/page/changelog/1.12.0-rc.1.md b/page/changelog/1.12.0-rc.1.md
new file mode 100644
index 0000000..f5dc3e4
--- /dev/null
+++ b/page/changelog/1.12.0-rc.1.md
@@ -0,0 +1,17 @@
+
+
+Released on March 17, 2016, listing changes since [1.12.0-beta.1](/changelog/1.12.0-beta.1/).
+
+## Interactions
+
+* Draggable: Improve detection for when to blur the active element ([#12472](https://bugs.jqueryui.com/ticket/12472), [#14905](https://bugs.jqueryui.com/ticket/14905), [63c103d](https://github.com/jquery/jquery-ui/commit/63c103dd540897c9df0c064da36e5cf40b824518))
+
+## Widgets
+
+* Accordion: Correct height calculated when closed ([#11938](https://bugs.jqueryui.com/ticket/11938), [c87653b](https://github.com/jquery/jquery-ui/commit/c87653bc24f5bc84c299b047d49a06c132a48788))
+* Autocomplete: Work around `isContentEditable` bug in Chrome ([#14917](https://bugs.jqueryui.com/ticket/14917), [cbceca7](https://github.com/jquery/jquery-ui/commit/cbceca7091b17e05c5a9ba887ef54761568bb70b))
+* Datepicker: Use `getFullYear()` instead of deprecated `getYear()` ([#14920](https://bugs.jqueryui.com/ticket/14920), [8564641](https://github.com/jquery/jquery-ui/commit/8564641fb8dcff3f072106b075a1bdb1f16ec63d))
+* Menu: Remove active class from top-level item when menu is blurred ([#14919](https://bugs.jqueryui.com/ticket/14919), [4866e14](https://github.com/jquery/jquery-ui/commit/4866e14922217560f551b86ce80952c3e0f649da))
+* Selectmenu: Fixed selectmenu icon float right ([#14914](https://bugs.jqueryui.com/ticket/14914), [20466d5](https://github.com/jquery/jquery-ui/commit/20466d50277712050b4e403686a9df16b5eca4e9))
diff --git a/page/changelog/1.12.0-rc.2.md b/page/changelog/1.12.0-rc.2.md
new file mode 100644
index 0000000..e398442
--- /dev/null
+++ b/page/changelog/1.12.0-rc.2.md
@@ -0,0 +1,24 @@
+
+
+Released on April 21, 2016, listing changes since [1.12.0-rc.1](/changelog/1.12.0-rc.1/).
+
+## Interactions
+
+* Resizable: Fix top jump with rotated element ([89fe04a](https://github.com/jquery/jquery-ui/commit/89fe04af3d19b80147b93beca38986ca12952850))
+* Resizable: Implement `setOption` for handles ([#3423](https://bugs.jqueryui.com/ticket/3423), [623b64e](https://github.com/jquery/jquery-ui/commit/623b64eefc36ac841fde1e33db15903066cef94c))
+* Selectable: Proper handling of inner scrolling ([#13359](https://bugs.jqueryui.com/ticket/13359), [a240251](https://github.com/jquery/jquery-ui/commit/a240251b36081ddbc24c13e0c3e129332c1d8d45))
+* Sortable: Update _contactContainers to use page clientX/Y values ([#10727](https://bugs.jqueryui.com/ticket/10727), [#5039](https://bugs.jqueryui.com/ticket/5039), [9aca706](https://github.com/jquery/jquery-ui/commit/9aca7067321643dcb4b5db03855591c35cd85d69))
+* Sortable: Fix incorrect top containment for document ([#14927](https://bugs.jqueryui.com/ticket/14927), [c19fc10](https://github.com/jquery/jquery-ui/commit/c19fc10e8493007af4617597f0afea5f24860955))
+
+## Widgets
+
+* Checkboxradio: Check that there is an icon before toggeling class ([#14939](https://bugs.jqueryui.com/ticket/14939), [882eb4c](https://github.com/jquery/jquery-ui/commit/882eb4cbf261985624d4ce0f0a59ca8f38a4b054))
+* Datepicker: Fixed keyboard navigation ([#7956](https://bugs.jqueryui.com/ticket/7956), [bf5d6f3](https://github.com/jquery/jquery-ui/commit/bf5d6f314b3798094efdca4b73e09233f2a69d7d))
+* Datepicker: Fix day names for ar-DZ locale ([#14948](https://bugs.jqueryui.com/ticket/14948), [3bfee65](https://github.com/jquery/jquery-ui/commit/3bfee654bfacaa4c3192c1b42675ae575933f662))
+* Menu: Check that there is an active item in `_activate()` ([d21aeee](https://github.com/jquery/jquery-ui/commit/d21aeee8092b9c4e756606a39dd081ef3fbd5dbc))
+* Menu: Don't reset active element until after triggering `blur` event ([#14945](https://bugs.jqueryui.com/ticket/14945), [57f801f](https://github.com/jquery/jquery-ui/commit/57f801f1de95ce3731c443d35886fbcda989f3a0))
+* Selectmenu: Prepend icon and move overflow to text span ([#14938](https://bugs.jqueryui.com/ticket/14938), [bff8277](https://github.com/jquery/jquery-ui/commit/bff8277fbc885bf2dc0461ac706d2f2bb7035ad6))
+* Slider: Fixed max value miscalculation ([#12852](https://bugs.jqueryui.com/ticket/12852), [a1905e2](https://github.com/jquery/jquery-ui/commit/a1905e2c5ed6e61e6a7206e005de9dda4f7135d0))
+* Tooltip: Fix re-enabling of delegated tooltips ([#14950](https://bugs.jqueryui.com/ticket/14950), [010f5f9](https://github.com/jquery/jquery-ui/commit/010f5f9d13b7d6f1c13482825547ee95d3033e40))
diff --git a/page/changelog/1.12.0.md b/page/changelog/1.12.0.md
new file mode 100644
index 0000000..ac7a446
--- /dev/null
+++ b/page/changelog/1.12.0.md
@@ -0,0 +1,281 @@
+
+
+Released on July 8, 2016
+
+
+## General
+
+* Removed: Support for jQuery 1.6.x ([#10723](https://bugs.jqueryui.com/ticket/10723))
+* Removed: Support for IE7 ([#9838](https://bugs.jqueryui.com/ticket/9838), [6d75893](https://github.com/jquery/jquery-ui/commit/6d7589351eae1e180579fc0c87885e5ab7a73f48))
+* Removed: Support for IE8, IE9, and IE10. Existing workarounds will be left in place until 1.14.0
+* Deprecated: Buttonset widget; use new Controlgroup widget instead
+* Added: Checkboxradio widget
+* Added: Controlgroup widget
+* Added: Form reset mixin ([#12638](https://bugs.jqueryui.com/ticket/12638), [ad98cb1](https://github.com/jquery/jquery-ui/commit/ad98cb167350b8d929b71bfeefc904c8964893dd))
+* Added: `.labels()` method as a shim for `control.labels` ([#12475](https://bugs.jqueryui.com/ticket/12475))
+* Added: New demo infrastructure using a require.js bootstrap ([#10119](https://bugs.jqueryui.com/ticket/10119), [7336a58](https://github.com/jquery/jquery-ui/commit/7336a5869ceb2bf27779b5f089277c365fc7d278))
+* Added: `device-width` viewport meta to all demos ([5cbb419](https://github.com/jquery/jquery-ui/commit/5cbb419f2432979a2075346ec94ea7da97b09fb2))
+* Added: Support for custom builds of jQuery which exclude event alias and deprecated modules ([#12770](https://bugs.jqueryui.com/ticket/12770), [6fd9fc9](https://github.com/jquery/jquery-ui/commit/6fd9fc92a372e222e3543f52979c601ac88ad81e))
+* Added: Delegate to base `_getCreateOptions()` in all widgets to support base widget extensions ([e19d462](https://github.com/jquery/jquery-ui/commit/e19d462f16f619dbc56824e00d5c409ccd677f8d))
+* Changed: Split functions out of core into their own files ([#9647](https://bugs.jqueryui.com/ticket/9647))
+
+## Build
+
+* Added: Publish to npm ([#11101](https://bugs.jqueryui.com/ticket/11101), [ab0bb87](https://github.com/jquery/jquery-ui/commit/ab0bb87634c19a47211d9e46afc0c09fbf49ee29))
+* Added: Webpack support ([#14375](https://bugs.jqueryui.com/ticket/14375), [6308a26](https://github.com/jquery/jquery-ui/commit/6308a261fd5d1be2362863e6a59fede4420d9f8c))
+* Fixed: AMD loading doesn't work with minified files ([#10674](https://bugs.jqueryui.com/ticket/10674), [47a32fb](https://github.com/jquery/jquery-ui/commit/47a32fb5b3c190123937e0178900ef754c3e220d))
+* Changed: Remove manifest files; move metadata to source files ([b5f1ffd](https://github.com/jquery/jquery-ui/commit/b5f1ffdea4c3c4b41936e56d4cb23ca8acb2aaa8))
+* Changed: Move widgets and effects into their own folders ([#13885](https://bugs.jqueryui.com/ticket/13885))
+
+## Core & Utilities
+
+### UI Core
+
+* Removed: `.zIndex()` ([#9156](https://bugs.jqueryui.com/ticket/9156), [faf87d9](https://github.com/jquery/jquery-ui/commit/faf87d992455280182edef015c8733313744a739))
+* Removed: `.focus( delay )` ([#9649](https://bugs.jqueryui.com/ticket/9649), [89ed68f](https://github.com/jquery/jquery-ui/commit/89ed68fb05ed8dff281d0de941a6d1164f2e66f1))
+* Added: Methods to work around IE active element bugs ([f330278](https://github.com/jquery/jquery-ui/commit/f33027840cdac5152599da66635981bbe68c6bda))
+* Added: `.labels()`, `.form()`, and `$.ui.escapeSelector()` methods ([803eaf2](https://github.com/jquery/jquery-ui/commit/803eaf29f732a68793b806356096fe849b9f470b))
+* Fixed: Remove ancestor visibility requirement from `:focusable` selector ([#14596](https://bugs.jqueryui.com/ticket/14596), [0db243a](https://github.com/jquery/jquery-ui/commit/0db243a7369bc1e642a83d8b84be9437c360f7e2), [d302596](https://github.com/jquery/jquery-ui/commit/d3025968f349c37a8ca41bfc63ee1b37d9d7354f))
+* Fixed: Work around more IE `activeElement` bugs ([0de27b0](https://github.com/jquery/jquery-ui/commit/0de27b0609e8f6f9751ab7cce28492e18206d86d))
+* Fixed: Handle IE11 bug with `document.activeElement` in iframes ([#11539](https://bugs.jqueryui.com/ticket/11539), [76c2755](https://github.com/jquery/jquery-ui/commit/76c27556f48bea48d3787c241d35e190d46c3245))
+* Fixed: Feature detecting `.outerWidth()` setter API is expensive ([#11197](https://bugs.jqueryui.com/ticket/11197), [c077e0a](https://github.com/jquery/jquery-ui/commit/c077e0a347826c7acca4ca2f775ca59e3b5f8d07))
+* Fixed: Match on exact node name for `:focusable` and `:tabbable` ([#10747](https://bugs.jqueryui.com/ticket/10747), [c66842b](https://github.com/jquery/jquery-ui/commit/c66842b45e032ac09f73fcd767e78390d7191b6f))
+* Fixed: Detect disabled fieldsets for `:focusable` ([#14970](https://bugs.jqueryui.com/ticket/14970), [50d910b](https://github.com/jquery/jquery-ui/commit/50d910b84844367b0bcf324b5bb50ce70b43f9c2))
+* Changed: Move uniqueId into its own module ([37602d7](https://github.com/jquery/jquery-ui/commit/37602d7e645964e4f5e4d06ef313081c8eb60bf1))
+* Changed: Move version and creation of the ui namespace into its own module ([3d71fb8](https://github.com/jquery/jquery-ui/commit/3d71fb83fe02a307823594f5905be9848cfa5506))
+* Changed: Move data selector from core into its own module ([f0260fd](https://github.com/jquery/jquery-ui/commit/f0260fd91b593ae56f68e1f33ca8496c1c4b0467))
+* Changed: Move disable-selection into its own module ([4916487](https://github.com/jquery/jquery-ui/commit/4916487440b0c087e6e5996522cf478af26df591))
+* Changed: Move focusable into its own module ([475ccef](https://github.com/jquery/jquery-ui/commit/475ccefd97ec24d76cfa6767c007501c14934ba6))
+* Changed: Move escape selector into its own module ([47188b7](https://github.com/jquery/jquery-ui/commit/47188b792617a0030ccec07c6df27335dc3aa430))
+* Changed: Move form method into its own module ([64076ec](https://github.com/jquery/jquery-ui/commit/64076ecfb5870130d89733ff34668fdd18683f9b))
+* Changed: Move $.ui.ie into its own module ([677fdbf](https://github.com/jquery/jquery-ui/commit/677fdbf7bef71d12998191e0b97c2c5cd34349be))
+* Changed: Move labels into its own module ([2c92f10](https://github.com/jquery/jquery-ui/commit/2c92f1074718ee23081765da0b86a8e3fe906874))
+* Changed: Move backcompat for core 1.7 into its own module ([2d03e12](https://github.com/jquery/jquery-ui/commit/2d03e1280a3671468aba6d48d60ba9381fe90e19))
+* Changed: Move plugin into its own module ([0a9df3a](https://github.com/jquery/jquery-ui/commit/0a9df3af52a66fe5e8f23622503020f0bcc6ded9))
+* Changed: Move safeActiveElement into its own module ([2b84531](https://github.com/jquery/jquery-ui/commit/2b84531ae9331f60e4d739fabca6d78abde89ae1))
+* Changed: Move safe blur into its own module ([26fc3b5](https://github.com/jquery/jquery-ui/commit/26fc3b5587ed117a972224ac661255998e59f9e1))
+* Changed: Move tabbable into its own module ([6064a5e](https://github.com/jquery/jquery-ui/commit/6064a5e0487428d53bd694dcebce952730992c46))
+* Changed: Move scrollParent into its own module ([72bfafb](https://github.com/jquery/jquery-ui/commit/72bfafbedea4973b803abeefc97637f246b11c89))
+* Changed: Move keyCode into its own module ([bddb7ef](https://github.com/jquery/jquery-ui/commit/bddb7efe000cf60e455d48f28acef0ef2f295d9d))
+
+### Mouse
+
+* Deprecated: `distance` and `delay` options ([#10615](https://bugs.jqueryui.com/ticket/10615))
+* Fixed: Don't stop propagation of `mouseup` ([#10818](https://bugs.jqueryui.com/ticket/10818), [a1d6920](https://github.com/jquery/jquery-ui/commit/a1d69208bad175a27c7b50c27fdc10001563cd4d))
+* Fixed: Delay timeout clearing upon `mouseup` ([#14458](https://bugs.jqueryui.com/ticket/14458), [9b82001](https://github.com/jquery/jquery-ui/commit/9b82001a70a6273df037db9e602080011d0fd7ba))
+* Fixed: Ignore `mousemove` events triggered by key presses in Safari ([#14461](https://bugs.jqueryui.com/ticket/14461), [17b5386](https://github.com/jquery/jquery-ui/commit/17b5386e8cb48c522ddb581a001fef5434e57f9a))
+
+### Position
+
+* Fixed: Fraction support test doesn't work when loaded outside of `head` ([#9898](https://bugs.jqueryui.com/ticket/9898), [3970e8c](https://github.com/jquery/jquery-ui/commit/3970e8c68146a3645f09d54735a40d5cf7eeef9e))
+* Fixed: Flip collision handling fails in some situations ([#8710](https://bugs.jqueryui.com/ticket/8710), [ebaaca7](https://github.com/jquery/jquery-ui/commit/ebaaca7206cae201ec069dbaed85bc8d6beeab32), [4de983c](https://github.com/jquery/jquery-ui/commit/4de983c6d5eacbdc668c0b7280d9818dd6281a53))
+* Fixed: Passing `window` doesn't work with new versions of jQuery ([#13493](https://bugs.jqueryui.com/ticket/13493), [b3a9b13](https://github.com/jquery/jquery-ui/commit/b3a9b13a218cd90b7cf67be5d5f8ad6e76c557b0))
+
+### Widget Factory
+
+* Added: Support for mixins ([#12601](https://bugs.jqueryui.com/ticket/12601), [556b271](https://github.com/jquery/jquery-ui/commit/556b2710f0f09b76909b92c751edc3f4243fa5c0))
+* Added: `classes` option and `_addClass()`, `_removeClass()`, `_toggleClass()` methods ([#7053](https://bugs.jqueryui.com/ticket/7053), [c192d40](https://github.com/jquery/jquery-ui/commit/c192d4086d9bbaf09d5f870857af30c60a427e22))
+* Fixed: Call `._setOptionDisabled()` on init if the widget is disabled (consistent handling of `disabled` option on create and update) ([#9151](https://bugs.jqueryui.com/ticket/9151), [7dde5c9](https://github.com/jquery/jquery-ui/commit/7dde5c9d75148cdca7cf86ff0c6e310fdc5a4054))
+
+## Interactions
+
+### Draggable
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [e9bb449](https://github.com/jquery/jquery-ui/commit/e9bb449b5dde255e4a79ea6768864ba26529ed6c))
+* Fixed: Ensure parent is correct after dragging through sortable ([#10669](https://bugs.jqueryui.com/ticket/10669), [d8077dc](https://github.com/jquery/jquery-ui/commit/d8077dc562bfca60906a160e20186608a10b7a87))
+* Fixed: Draggable elements receive an explicit height in Firefox only ([10725](https://bugs.jqueryui.com/ticket/10725), [d0ea32e](https://github.com/jquery/jquery-ui/commit/d0ea32e3ad613eaaa523d0c88c776dab2b26b25f))
+* Fixed: Improve detection for when to blur the active element ([#12472](https://bugs.jqueryui.com/ticket/12472), [#14905](https://bugs.jqueryui.com/ticket/14905), [63c103d](https://github.com/jquery/jquery-ui/commit/63c103dd540897c9df0c064da36e5cf40b824518))
+
+### Droppable
+
+* Deprecated: `hoverClass` and `activeClass` options; use `classes` option instead ([#12162](https://bugs.jqueryui.com/ticket/12162))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [f58277a](https://github.com/jquery/jquery-ui/commit/f58277a521ae41b1d3e054a419ef5fda85e7db21))
+
+### Resizable
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2665aa0](https://github.com/jquery/jquery-ui/commit/2665aa01469daf10dacf76f60a7e5f39f2e0a3de))
+* Added: Modified to allow jQuery objects as handles ([#9658](https://bugs.jqueryui.com/ticket/9658), [18e301f](https://github.com/jquery/jquery-ui/commit/18e301f4e29c2080e9aa9dac87c00dee137cb6c9))
+* Fixed: Correct width when grid approaches zero ([#10590](https://bugs.jqueryui.com/ticket/10590), [9493839](https://github.com/jquery/jquery-ui/commit/9493839f23b6ff71aacb9cb8fe8fde6c8d0ecd61))
+* Fixed: Don't use CSS shorthand properties with `.css()` ([#7766](https://bugs.jqueryui.com/ticket/7766), [6a681c2](https://github.com/jquery/jquery-ui/commit/6a681c2c13afb6e76a6881b9dae928b9ff66a395))
+* Fixed: Don't round dimensions ([0ff7a16](https://github.com/jquery/jquery-ui/commit/0ff7a1653407d2a91cff721528a0a435dbf12503))
+* Fixed: `alsoResize` supports more than one element of a jQuery selection ([#4666](https://bugs.jqueryui.com/ticket/4666), [19783fd](https://github.com/jquery/jquery-ui/commit/19783fd3e6a6e6e02a2030028e8820076c3b1295))
+* Fixed: With helper, dragging horizontally or vertically only reduces opposite direction by 1px ([#11113](https://bugs.jqueryui.com/ticket/11113), [7df2f19](https://github.com/jquery/jquery-ui/commit/7df2f1905a1ec4727f00451f8d794aeb35ec4159))
+* Fixed: Remove data for `ui-resizable-alsoresize` on stop ([#14788](https://bugs.jqueryui.com/ticket/14788), [7cc88bf](https://github.com/jquery/jquery-ui/commit/7cc88bfe327ba826ffa5199c96c91178862b22f0))
+* Fixed: Match on exact node name ([#10748](https://bugs.jqueryui.com/ticket/10748), [faefab8](https://github.com/jquery/jquery-ui/commit/faefab842bc79f212ccee227b7a37c7630b1573c))
+* Fixed: Top jump with rotated element ([89fe04a](https://github.com/jquery/jquery-ui/commit/89fe04af3d19b80147b93beca38986ca12952850))
+* Fixed: Changing handles after initialization ([#3423](https://bugs.jqueryui.com/ticket/3423), [623b64e](https://github.com/jquery/jquery-ui/commit/623b64eefc36ac841fde1e33db15903066cef94c))
+
+### Selectable
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2a7873d](https://github.com/jquery/jquery-ui/commit/2a7873dd5711db472a87f749e698e80c49ccf8cd))
+* Fixed: Handling of inner scrolling ([#13359](https://bugs.jqueryui.com/ticket/13359), [a240251](https://github.com/jquery/jquery-ui/commit/a240251b36081ddbc24c13e0c3e129332c1d8d45))
+
+### Sortable
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [90c27b4](https://github.com/jquery/jquery-ui/commit/90c27b4b5130fff9abbfea671c193c59e4bf8850))
+* Added: Support for iframes ([#9604](https://bugs.jqueryui.com/ticket/9604), [17c7f69](https://github.com/jquery/jquery-ui/commit/17c7f698a2894211bbb5f2d63750f5b3b84bb0ab))
+* Fixed: Redetermine floating flag when recalculating positions ([#7498](https://bugs.jqueryui.com/ticket/7498), [f656aeb](https://github.com/jquery/jquery-ui/commit/f656aebe3f99356b7eb91ffdafe6689ecc8fb4ae))
+* Fixed: Append a `` with `` to the placeholder of ` ` elements ([#10682](https://bugs.jqueryui.com/ticket/10682), [962e05d](https://github.com/jquery/jquery-ui/commit/962e05dc1d0a51a7458bc44725417aa3462cd89a))
+* Fixed: Placeholoder positioning ([#10727](https://bugs.jqueryui.com/ticket/10727), [#5039](https://bugs.jqueryui.com/ticket/5039), [9aca706](https://github.com/jquery/jquery-ui/commit/9aca7067321643dcb4b5db03855591c35cd85d69))
+* Fixed: Incorrect top containment for document ([#14927](https://bugs.jqueryui.com/ticket/14927), [c19fc10](https://github.com/jquery/jquery-ui/commit/c19fc10e8493007af4617597f0afea5f24860955))
+
+## Widgets
+
+### Accordion
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [7c6a7d7](https://github.com/jquery/jquery-ui/commit/7c6a7d71e98cbeea21bfc1560f8a82484a3c9510))
+* Fixed: Set `aria-expanded` when collapsing ([#10703](https://bugs.jqueryui.com/ticket/10703), [ab798cb](https://github.com/jquery/jquery-ui/commit/ab798cb4646cfeb79f1949eb70cd64813a248d87))
+* Fixed: Handle `box-sizing: border-box` in animations ([#9264](https://bugs.jqueryui.com/ticket/9264), [4b017b4](https://github.com/jquery/jquery-ui/commit/4b017b414f107ed3c1dafc7601b61cbcd76acf61))
+* Fixed: Correct height calculated when closed ([#11938](https://bugs.jqueryui.com/ticket/11938), [c87653b](https://github.com/jquery/jquery-ui/commit/c87653bc24f5bc84c299b047d49a06c132a48788))
+* Fixed: Handle disabled option on create ([#9151](https://bugs.jqueryui.com/ticket/9151), [874b4a0](https://github.com/jquery/jquery-ui/commit/874b4a0316b262edaf184a9ddbef539bb6496082))
+
+### Autocomplete
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [cff1fb2](https://github.com/jquery/jquery-ui/commit/cff1fb2a13e18403c02ba516e08db3a5b21a8b6c))
+* Added: Include native dialogs in `appendTo` logic (`ui-front` walking) ([#10739](https://bugs.jqueryui.com/ticket/10739), [dc67037](https://github.com/jquery/jquery-ui/commit/dc6703756d388b1f49be0637473a8d55b5ce9270))
+* Fixed: Close the menu on any outside interactions ([#6642](https://bugs.jqueryui.com/ticket/6642), [548fbf5](https://github.com/jquery/jquery-ui/commit/548fbf570caa5fdee973bbbe8ac2d36b0338c2b9))
+* Fixed: Restore focus after clicking a menu item, if necessary ([#9201](https://bugs.jqueryui.com/ticket/9201), [581bfb5](https://github.com/jquery/jquery-ui/commit/581bfb55bf4f4f614a6e0c0ac545cf1aa7d29d0a))
+* Fixed: Use a `div` instead of a `span` for the live region ([#14587](https://bugs.jqueryui.com/ticket/14587), [ce50178](https://github.com/jquery/jquery-ui/commit/ce5017843036151d545fba76062655fda69eac62))
+* Fixed: Hidden elements with `contenteditable` are not handled correctly in Chrome ([#14917](https://bugs.jqueryui.com/ticket/14917), [cbceca7](https://github.com/jquery/jquery-ui/commit/cbceca7091b17e05c5a9ba887ef54761568bb70b))
+
+### Button
+
+* Deprecated: `icons` option; replaced with `icon` and `iconPosition` ([#14744](https://bugs.jqueryui.com/ticket/14744))
+* Deprecated: Support for toggle buttons; use new Checkboxradio widget ([#14746](https://bugs.jqueryui.com/ticket/14746))
+* Deprecated: `text` option; renamed to `showLabel` ([#8203](https://bugs.jqueryui.com/ticket/8203))
+* Added: Support the HTML5 form attribute ([#9973](https://bugs.jqueryui.com/ticket/9973), [e77fbe5](https://github.com/jquery/jquery-ui/commit/e77fbe5388abeeb1d0f8f377161a0fc039897594))
+* Fixed: Remove padding on text element for icon only buttons ([#14056](https://bugs.jqueryui.com/ticket/14056), [1f6ea8b](https://github.com/jquery/jquery-ui/commit/1f6ea8b78ac859bfecbdcdd092c2df3e2eec90ed))
+* Fixed: Inconsistent focus handling across browsers ([#7902](https://bugs.jqueryui.com/ticket/7902))
+* Fixed: Pixel positioning for button widget with radio buttons is incorrect ([#8827](https://bugs.jqueryui.com/ticket/8827))
+* Fixed: Use `control.labels` if available ([#9541](https://bugs.jqueryui.com/ticket/9541))
+* Fixed: Minor mouse movements cause state inconsistencies in Firefox ([#9990](https://bugs.jqueryui.com/ticket/9990))
+* Fixed: Selecting text causes an inconsistent state ([#10726](https://bugs.jqueryui.com/ticket/10726))
+* Fixed: Radio buttons do not have appropriate focus styling ([#9505](https://bugs.jqueryui.com/ticket/9505))
+
+### Buttonset
+
+* Deprecated: Buttonset widget; replaced with Controlgroup ([#14747](https://bugs.jqueryui.com/ticket/14747))
+* Fixed: Incorrect button width/alignment in IE8 ([#7583](https://bugs.jqueryui.com/ticket/7583))
+
+### Checkboxradio - NEW!
+
+New checkboxradio widget. Check out the [checkboxradio documentation](//api.jqueryui.com/checkboxradio/) for more details.
+
+### Controlgroup - NEW!
+
+New controlgroup widget. Check out the [controlgroup documentation](//api.jqueryui.com/controlgroup/) for more details.
+
+### Datepicker
+
+* Fixed: Date range demo when entering values manually ([#11143](https://bugs.jqueryui.com/ticket/11143), [fac8e51](https://github.com/jquery/jquery-ui/commit/fac8e517d7ea4c65bad21a65ad59eef1e4379efb))
+* Fixed: Date format for `ko` locale ([#14595](https://bugs.jqueryui.com/ticket/14595), [2d4b4ef](https://github.com/jquery/jquery-ui/commit/2d4b4ef360728ab687412c159099b99984231ece))
+* Fixed: Translate `weekHeader` in `ko` locale ([e5c3004](https://github.com/jquery/jquery-ui/commit/e5c3004c8e9613c290a997a75285171cae64cb90))
+* Fixed: Month names and `firstDay` value in Arabic locale ([#10035](https://bugs.jqueryui.com/ticket/10035), [06231cf](https://github.com/jquery/jquery-ui/commit/06231cf7622fe112703c38535df71aa7f100ef7d))
+* Fixed: Remove unused variable ([#14416](https://bugs.jqueryui.com/ticket/14416), [eec0cfd](https://github.com/jquery/jquery-ui/commit/eec0cfd7fe75f0e52bc5802d8c294a2bccd722c7))
+* Fixed: `datepicker_instActive` released on instance destroy ([#10668](https://bugs.jqueryui.com/ticket/10668), [e5e3ca4](https://github.com/jquery/jquery-ui/commit/e5e3ca4240fbae9684f689ec6e00882ec0211922))
+* Fixed: Use `getFullYear()` instead of deprecated `getYear()` ([#14920](https://bugs.jqueryui.com/ticket/14920), [8564641](https://github.com/jquery/jquery-ui/commit/8564641fb8dcff3f072106b075a1bdb1f16ec63d))
+* Fixed: Keyboard navigation ([#7956](https://bugs.jqueryui.com/ticket/7956), [bf5d6f3](https://github.com/jquery/jquery-ui/commit/bf5d6f314b3798094efdca4b73e09233f2a69d7d))
+* Fixed: Day names for `ar-DZ` locale ([#14948](https://bugs.jqueryui.com/ticket/14948), [3bfee65](https://github.com/jquery/jquery-ui/commit/3bfee654bfacaa4c3192c1b42675ae575933f662))
+
+### Dialog
+
+* Deprecated: `dialogClass` option; use `classes` option instead ([#12161](https://bugs.jqueryui.com/ticket/12161))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [6f4884f](https://github.com/jquery/jquery-ui/commit/6f4884f6f5b422bacbb20dbd82d90d351a985a4b))
+* Fixed: Selectmenu and autocomplete menus are cut off ([#10543](https://bugs.jqueryui.com/ticket/10543), [912eb62](https://github.com/jquery/jquery-ui/commit/912eb62ccb77059148a1fe14bdb57b7f9e44a14c))
+* Fixed: Removal of event listener for modal dialogs ([#13649](https://bugs.jqueryui.com/ticket/13649), [62446d9](https://github.com/jquery/jquery-ui/commit/62446d957efb69cd53015919edf71501fcbd2599))
+* Fixed: Escape `closeText` option before passing it to button ([9644e7b](https://github.com/jquery/jquery-ui/commit/9644e7bae9116edaf8d37c5b38cb32b892f10ff6))
+* Fixed: Stop tracking instance in `destroy()` to avoid memory leaks ([#11125](https://bugs.jqueryui.com/ticket/11125), [ec1f393](https://github.com/jquery/jquery-ui/commit/ec1f393c39aa5bbac1158acf692271f8ce9518ce))
+* Fixed: Dialog with buttons gets smaller every time it is dragged in Chrome 51 ([#14978](https://bugs.jqueryui.com/ticket/14978), [c770605](https://github.com/jquery/jquery-ui/commit/c770605db05347edfa9c6224aebd42974092ed22))
+
+### Menu
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2ebef69](https://github.com/jquery/jquery-ui/commit/2ebef69efe96a5b6057bdedd8876a76661bde482))
+* Fixed: Use `ui-state-active` consistently ([#10692](https://bugs.jqueryui.com/ticket/10692), [0bbd156](https://github.com/jquery/jquery-ui/commit/0bbd1569182bc03e8dc4f5f8aa203e8edbe15f99))
+* Fixed: Ignore bubbled `mouseenter` events on parent items ([#11641](https://bugs.jqueryui.com/ticket/11641), [c770605](https://github.com/jquery/jquery-ui/commit/c770605db05347edfa9c6224aebd42974092ed22))
+* Fixed: `ui-state-focus` styling for submenus ([#10162](https://bugs.jqueryui.com/ticket/10162), [de2ef2a](https://github.com/jquery/jquery-ui/commit/de2ef2a585447cf75fc8d4a734c12aa2bbd028c2))
+* Fixed: Remove active class from top-level item when menu is blurred ([#14919](https://bugs.jqueryui.com/ticket/14919), [4866e14](https://github.com/jquery/jquery-ui/commit/4866e14922217560f551b86ce80952c3e0f649da))
+* Fixed: Check that there is an active item in `_activate()` ([d21aeee](https://github.com/jquery/jquery-ui/commit/d21aeee8092b9c4e756606a39dd081ef3fbd5dbc))
+* Fixed: Don't reset active element until after triggering `blur` event ([#14945](https://bugs.jqueryui.com/ticket/14945), [57f801f](https://github.com/jquery/jquery-ui/commit/57f801f1de95ce3731c443d35886fbcda989f3a0))
+
+### Progressbar
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [ea35ded](https://github.com/jquery/jquery-ui/commit/ea35ded6ed12747d88bf163c3b7fa15506ef521a))
+
+### Selectmenu
+
+* Added: Include native dialogs in `appendTo` logic (`ui-front` walking) ([#10739](https://bugs.jqueryui.com/ticket/10739), [dc67037](https://github.com/jquery/jquery-ui/commit/dc6703756d388b1f49be0637473a8d55b5ce9270))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [3483486](https://github.com/jquery/jquery-ui/commit/3483486a153f6f7b3a8bbe9783735eb63adfd033))
+* Added: `_renderButtonItem()` method ([#10142](https://bugs.jqueryui.com/ticket/10142), [fb4124b](https://github.com/jquery/jquery-ui/commit/fb4124b7af4e87712eca9893f7aefb5fee7905de))
+* Added: Support `width: false` and default to `14em` ([#11198](https://bugs.jqueryui.com/ticket/11198), [af4c35d](https://github.com/jquery/jquery-ui/commit/af4c35df9d1cf4c15d57b3789711026360785831))
+* Fixed: Copy title attributes ([#10435](https://bugs.jqueryui.com/ticket/10435), [9793739](https://github.com/jquery/jquery-ui/commit/979373983babce7122d98c4f3919426735555d61))
+* Fixed: Calling `refresh()` after removing all options throws an error ([#10662](https://bugs.jqueryui.com/ticket/10662), [65584c1](https://github.com/jquery/jquery-ui/commit/65584c1640f8c7430587738c3c4cd7dd8010a2a5))
+* Fixed: Properly parse value from options ([#10684](https://bugs.jqueryui.com/ticket/10684), [809cc0f](https://github.com/jquery/jquery-ui/commit/809cc0f8d0c07c2be44942b3010bba1f9ce91be8))
+* Fixed: Handle form resets ([#12236](https://bugs.jqueryui.com/ticket/12236), [39853fd](https://github.com/jquery/jquery-ui/commit/39853fda45a409e9dc47d7358fbd9b03ad1d33b5))
+* Fixed: Content differs when created or refreshed when overriding `_renderItem()` ([#11054](https://bugs.jqueryui.com/ticket/11054), [fb4124b](https://github.com/jquery/jquery-ui/commit/fb4124b7af4e87712eca9893f7aefb5fee7905de))
+* Fixed: Icon positioning ([#14914](https://bugs.jqueryui.com/ticket/14914), [20466d5](https://github.com/jquery/jquery-ui/commit/20466d50277712050b4e403686a9df16b5eca4e9))
+* Fixed: Text and icon alignment ([#14938](https://bugs.jqueryui.com/ticket/14938), [bff8277](https://github.com/jquery/jquery-ui/commit/bff8277fbc885bf2dc0461ac706d2f2bb7035ad6))
+
+### Slider
+
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [491bb9c](https://github.com/jquery/jquery-ui/commit/491bb9c7f4929eb574e0ab6116a5b22562446734))
+* Added: Pass handle index to events ([#7630](https://bugs.jqueryui.com/ticket/7630), [6111b17](https://github.com/jquery/jquery-ui/commit/6111b17710ab4e14bb119e735de9cfa9285badab))
+* Fixed: Handle order when setting values of range slider to max ([#9046](https://bugs.jqueryui.com/ticket/9046), [dff1c74](https://github.com/jquery/jquery-ui/commit/dff1c74dd4c0fd6b951c7c183bebae09f9f229f6))
+* Fixed: Proper animation of range ([#9459](https://bugs.jqueryui.com/ticket/9459), [bf03479](https://github.com/jquery/jquery-ui/commit/bf03479cc14aa54c2e674cad87bf75c8126cb86f))
+* Fixed: Modified to allow value to reach max value with float step ([#10721](https://bugs.jqueryui.com/ticket/10721), [ae1d6d5](https://github.com/jquery/jquery-ui/commit/ae1d6d5f90236405023964bb3061eccd6c625e39), [#11286](https://bugs.jqueryui.com/ticket/11286), [60c00cd](https://github.com/jquery/jquery-ui/commit/60c00cd4ecdab41f44e125efe2679223e9cd5535))
+* Fixed: Range fills all space after changing orientation ([#12205](https://bugs.jqueryui.com/ticket/12205), [897a238](https://github.com/jquery/jquery-ui/commit/897a238332110c5c1a58ee9a0db5bf4e54fc3059))
+* Fixed: Pass 0 value if slider reaches it ([#12196](https://bugs.jqueryui.com/ticket/12196), [adcc8ef](https://github.com/jquery/jquery-ui/commit/adcc8eff431847b4897666369310cb83275a8282))
+* Fixed: Max value miscalculation ([#12852](https://bugs.jqueryui.com/ticket/12852), [a1905e2](https://github.com/jquery/jquery-ui/commit/a1905e2c5ed6e61e6a7206e005de9dda4f7135d0))
+
+### Spinner
+
+* Deprecated: `_uiSpinnerHtml()` and `_buttonHtml()` extension points ([#11097](https://bugs.jqueryui.com/ticket/11097), [d4719bf](https://github.com/jquery/jquery-ui/commit/d4719bf6160a0c99273abddc42e39a734e9943a2))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [28dccda](https://github.com/jquery/jquery-ui/commit/28dccda3776c586052d787dd77e0abdbf1b68a0d))
+* Fixed: Add padding to input to give consistent visual style ([#13997](https://bugs.jqueryui.com/ticket/13997), [caf6f2d](https://github.com/jquery/jquery-ui/commit/caf6f2dc84295878f0a692b540e6f910b2a1d505))
+
+### Tabs
+
+* Deprecated: `ui-tab` class; use `ui-tabs-tab` ([#12061](https://bugs.jqueryui.com/ticket/12061), [74ccbc1](https://github.com/jquery/jquery-ui/commit/74ccbc18a414be9f78f6765b2b6c8be29c5019a9))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [aaddfbf](https://github.com/jquery/jquery-ui/commit/aaddfbfa8b3bdb0374540d7dd1e13a708bdb00aa))
+* Fixed: Use `$.ui.escapeSelector()` to avoid invalid selectors ([1ee8e23](https://github.com/jquery/jquery-ui/commit/1ee8e230bdc6036bec1e28573c67e2e9ca67252c))
+* Fixed: Suppress automatic activation when navigating with COMMAND ([#9621](https://bugs.jqueryui.com/ticket/9621), [6a242ab](https://github.com/jquery/jquery-ui/commit/6a242ab4ebdcec265826b959fa27881dcf462c96))
+
+### Tooltip
+
+* Deprecated: `tooltipClass` option; use `classes` option instead ([#12167](https://bugs.jqueryui.com/ticket/12167))
+* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [9d71547](https://github.com/jquery/jquery-ui/commit/9d71547394f9464e5af1f0c77e56917d0ba5abb6))
+* Added: Accept `HTMLElement` and `jQuery` instances for the `content` option ([#9278](https://bugs.jqueryui.com/ticket/9278), [42099e4](https://github.com/jquery/jquery-ui/commit/42099e44610face58172ed0ed27115fb2b84ab50))
+* Fixed: Does not display in foreground when used in a `` element ([#10739](https://bugs.jqueryui.com/ticket/10739), [8cf9879](https://github.com/jquery/jquery-ui/commit/8cf98798a58afb7197bce0d6ca1c5b658ae04011))
+* Fixed: Use `show.delay` update only when `track` option is active to reduce CPU usage ([#14682](https://bugs.jqueryui.com/ticket/14682), [d573232](https://github.com/jquery/jquery-ui/commit/d5732327078709c3680385c79a2106f263009f84))
+* Fixed: Content cannot contain checked radio button ([#11272](https://bugs.jqueryui.com/ticket/11272), [2cef124](https://github.com/jquery/jquery-ui/commit/2cef124bf27ce89f1fbfc493352ebfd895b40822))
+* Fixed: Does not hide consistently with dynamically loaded content ([#8740](https://bugs.jqueryui.com/ticket/8740), [c4e367b](https://github.com/jquery/jquery-ui/commit/c4e367bb31c21d7c8b2701c626a92a2f13be5af4))
+* Fixed: Re-enabling of delegated tooltips ([#14950](https://bugs.jqueryui.com/ticket/14950), [010f5f9](https://github.com/jquery/jquery-ui/commit/010f5f9d13b7d6f1c13482825547ee95d3033e40))
+
+## Effects
+
+* Deprecated: Transfer effect; replaced with `.transfer()` plugin ([#14749](https://bugs.jqueryui.com/ticket/14749), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Added: [`$.effects.define()`](//api.jqueryui.com/jQuery.effects.define/)
+* Added: [`$.effects.scaledDimensions()`](//api.jqueryui.com/jQuery.effects.scaledDimensions/)
+* Added: [`$.effects.clipToBox()`](//api.jqueryui.com/jQuery.effects.clipToBox/)
+* Added: [`$.effects.saveStyle()`](//api.jqueryui.com/jQuery.effects.saveStyle/)
+* Added: [`$.effects.restoreStyle()`](//api.jqueryui.com/jQuery.effects.restoreStyle/)
+* Added: [`$.effects.createPlaceholder()`](//api.jqueryui.com/jQuery.effects.createPlaceholder/)
+* Added: [`$.effects.removePlaceholder()`](//api.jqueryui.com/jQuery.effects.removePlaceholder/)
+* Fixed: Toggle size effect demo not working ([#7041](https://bugs.jqueryui.com/ticket/7041), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: `.ui-effects-wrapper` doesn't maintain element's `display`, `vertical-align`, etc. ([#9477](https://bugs.jqueryui.com/ticket/9477), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Fixed position elements jump in blind effect ([#9257](https://bugs.jqueryui.com/ticket/9257), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Element jumps to wrong position in scale effect ([#9066](https://bugs.jqueryui.com/ticket/9066), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Select element with padding breaks in shake effect ([#8867](https://bugs.jqueryui.com/ticket/8867), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Clip effect behavior is incorrect ([#8671](https://bugs.jqueryui.com/ticket/8671), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Absolute position child elements work incorrectly with slide effects ([#8505](https://bugs.jqueryui.com/ticket/8505), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Clip effect works incorrectly on centered images ([#7885](https://bugs.jqueryui.com/ticket/7885), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+* Fixed: Pulsate effect leaves inline opacity style ([#11160](https://bugs.jqueryui.com/ticket/11160), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f))
+
+## CSS Framework
+
+* Fixed: Position of some icons is off by one pixel ([712e9ad](https://github.com/jquery/jquery-ui/commit/712e9ad7446f39c34634792a59cc232d231833cb))
+* Fixed: Disabled elements can still be focused with a click ([#10573](https://bugs.jqueryui.com/ticket/10573), [7137c90](https://github.com/jquery/jquery-ui/commit/7137c90b1883bc19f23678582170e9df981a084d))
+* Fixed: Improve default theme styling ([#10617](https://bugs.jqueryui.com/ticket/10617), [#10880](https://bugs.jqueryui.com/ticket/10880), [79c4fa1](https://github.com/jquery/jquery-ui/commit/79c4fa1e7a09a3d28f0f8ff7a5b9f41a6d6e123d))
+* Fixed: Change default widget `font-size` to `1em` ([#10131](https://bugs.jqueryui.com/ticket/10131), [3002d46](https://github.com/jquery/jquery-ui/commit/3002d460de2b854243d99634e69d394dfca78886))
+* Renamed: `ui-icon-carat` should be named `ui-icon-caret` ([#10683](https://bugs.jqueryui.com/ticket/10683), [2500bb3](https://github.com/jquery/jquery-ui/commit/2500bb39c2af32770944488aa9c4bb45e8c305fa))
diff --git a/page/changelog/1.12.1.md b/page/changelog/1.12.1.md
new file mode 100644
index 0000000..b66c5d9
--- /dev/null
+++ b/page/changelog/1.12.1.md
@@ -0,0 +1,49 @@
+
+
+Released on September 14, 2016
+
+## Core & Utilities
+
+### Widget Factory
+
+* Fixed: Memory leak and bad performance for managed classes on transient elements ([#15043](https://bugs.jqueryui.com/ticket/15043), [89af4c2](https://github.com/jquery/jquery-ui/commit/89af4c292eaa5fc1c83437ca71085264dcbef34a))
+* Fixed: `instance()` should return `undefined` for empty sets ([#15019](https://bugs.jqueryui.com/ticket/15019), [3dd8a09](https://github.com/jquery/jquery-ui/commit/3dd8a09b441d65445f2b6a7c73e72af65445d5da))
+
+## Interactions
+
+### Draggable
+
+* Fixed: Incorrect focus handling on mousedown ([#15046](https://bugs.jqueryui.com/ticket/15046), [8c66934](https://github.com/jquery/jquery-ui/commit/8c66934434214ab92cbcf46240beb739154fdfbf))
+
+### Sortable
+
+* Fixed: Calling `cancel()` throws an error ([#15042](https://bugs.jqueryui.com/ticket/15042), [19027bb](https://github.com/jquery/jquery-ui/commit/19027bb0852a8f26627ef5584e6dde77df9fd0df))
+
+## Widgets
+
+### Autocomplete
+
+* Fixed: JSONP demo does not work over HTTPS ([#14974](https://bugs.jqueryui.com/ticket/14974), [930934f](https://github.com/jquery/jquery-ui/commit/930934f4d22ce4397bcc85cde33c32acef2ec622))
+
+### Checkboxradio
+
+* Fixed: Label handling with jQuery 3.x ([#15006](https://bugs.jqueryui.com/ticket/15006), [55cd948](https://github.com/jquery/jquery-ui/commit/55cd9488ccd897bb9b75450852c100d13cf0df02))
+* Checkboxradio: Radio checkmarks are only visible on hover ([#15003](https://bugs.jqueryui.com/ticket/15003), [57537d0](https://github.com/jquery/jquery-ui/commit/57537d09a42ed53d6244d9222d954e107b2b44d0))
+
+### Controlgroup
+
+* Fixed: Handle child elements that don't have options defined ([f67f929](https://github.com/jquery/jquery-ui/commit/f67f9293ae962dc814e66ac110b4f82404d14f69))
+
+### Dialog
+
+* Fixed: Support deprecated button options ([#15016](https://bugs.jqueryui.com/ticket/15016), [6c754b4](https://github.com/jquery/jquery-ui/commit/6c754b4b5b19a2a12eae68058458ef9ff7b72a0a))
+
+### Menu
+
+* Fixed: Support number pad keyboard input ([#15031](https://bugs.jqueryui.com/ticket/15031), [ac9ca9e](https://github.com/jquery/jquery-ui/commit/ac9ca9e52c90da56b6846501800103605467f98b))
+
+### Slider
+
+* Added: Demo for custom handle ([#15023](https://bugs.jqueryui.com/ticket/15023), [51461d5](https://github.com/jquery/jquery-ui/commit/51461d523868c168f2e12eeb547c1cf8b7cf59cf))
diff --git a/page/changelog/1.13.0-rc.2.md b/page/changelog/1.13.0-rc.2.md
new file mode 100644
index 0000000..e84db9e
--- /dev/null
+++ b/page/changelog/1.13.0-rc.2.md
@@ -0,0 +1,140 @@
+
+
+Released on September 3, 2021
+
+## General
+
+* Removed: Support for jQuery 1.7.x ([b61b16b5a](https://github.com/jquery/jquery-ui/commit/b61b16b5a89ee27b30efdf7635d897af810af130))
+* Fixed: Stop using deprecated jQuery APIs, resolve jQuery Migrate warnings ([f4ef03e57](https://github.com/jquery/jquery-ui/commit/f4ef03e57edd7e51cb134e902679c7bddc3daaee), [0c860b0d9](https://github.com/jquery/jquery-ui/commit/0c860b0d92f9959f6747f8c02e9671eb2fc561aa), [995b5faec](https://github.com/jquery/jquery-ui/commit/995b5faec966b608ba15ed2a68c1f1565f77053b), [98b539171](https://github.com/jquery/jquery-ui/commit/98b539171b6e805fa79346a5e9896865e5213b9c), [809f29efa](https://github.com/jquery/jquery-ui/commit/809f29efa79c3c9aba95e6d7ffef41f567cda3a5), [0940cb9bd](https://github.com/jquery/jquery-ui/commit/0940cb9bd2b8967c8eac15f3097933f5aee7e551), [0b7246b6e](https://github.com/jquery/jquery-ui/commit/0b7246b6eeadfa9e2696e22f3230f6452f8129dc))
+
+## Core & Utilities
+
+### UI Core
+
+* Fixed: Rename from `.form()` to `._form()` since its not for public use ([trac-15074](https://bugs.jqueryui.com/ticket/15074), [0627eb364](https://github.com/jquery/jquery-ui/commit/0627eb3645009d868ae20a27d0a283acd5797a1f))
+* Fixed: Handle empty sets in Labels ([trac-15184](https://bugs.jqueryui.com/ticket/15184), [adcf9b6f6](https://github.com/jquery/jquery-ui/commit/adcf9b6f6ef9c6dfa88932b40307f581e65bc667))
+* Removed: `$.ui.escapeSelector` in favor of `$.escapeSelector` ([trac-14991](https://bugs.jqueryui.com/ticket/14991), [7c6a9f012](https://github.com/jquery/jquery-ui/commit/7c6a9f01281a9739f54ef57d7deecb41a873ef38))
+
+### Widget Factory
+
+* Fixed: Boolean option when under use strict ([2434dfd45](https://github.com/jquery/jquery-ui/commit/2434dfd45d0805304e1db634d059feaa0bacf358))
+* Fixed: Handle `Object.create(null)` for options objects ([trac-15179](https://bugs.jqueryui.com/ticket/15179), [b3c0a7f71](https://github.com/jquery/jquery-ui/commit/b3c0a7f71d0b351755b97858ad47de4e9a373606))
+* Fixed: Improve `remove` event bindings for `classes` options ([trac-15078](https://bugs.jqueryui.com/ticket/15078), [trac-15082](https://bugs.jqueryui.com/ticket/15082), [trac-15095](https://bugs.jqueryui.com/ticket/15095), [trac-15136](https://bugs.jqueryui.com/ticket/15136), [trac-15152](https://bugs.jqueryui.com/ticket/15152), [ef2e9bab9](https://github.com/jquery/jquery-ui/commit/ef2e9bab92ae898311baa295590cd487d9071319))
+* Fixed: Don't swallow errors in `remove` events ([1f2011ece](https://github.com/jquery/jquery-ui/commit/1f2011ece3fe6847874677e9a8210fa202498ccb))
+
+## Widgets
+
+### Autocomplete
+
+* Fixed: IE/Edge scrolling issues ([trac-9638](https://bugs.jqueryui.com/ticket/9638), [573e7e69c](https://github.com/jquery/jquery-ui/commit/573e7e69c9b63752fb06a15d60ec2dded839e093))
+* Fixed: Escape HTML tags in callback name to avoid XSS in demo ([trac-15048](https://bugs.jqueryui.com/ticket/15048), [69e66ea65](https://github.com/jquery/jquery-ui/commit/69e66ea6556584c39621c184f8f790a1011408ce))
+
+### Button
+
+* Fixed: Backcompat when called on collection of mixed elements ([trac-15109](https://bugs.jqueryui.com/ticket/15109), [abc9e7ce2](https://github.com/jquery/jquery-ui/commit/abc9e7ce2f3b60a18bf1f461c7cbfccb3fa02b53))
+
+### Checkboxradio
+
+* Fixed: Don't add ui-state-hover to icons ([trac-15055](https://bugs.jqueryui.com/ticket/15055), [b9d687deb](https://github.com/jquery/jquery-ui/commit/b9d687deb58cce5f4c6e27dace9cb172e291698c))
+
+### Datepicker
+
+* Added: Add option for `onUpdateDatepicker` callback ([17d115b82](https://github.com/jquery/jquery-ui/commit/17d115b8298b935ab0d26b881d4f6f3e83984868), [a12c98574](https://github.com/jquery/jquery-ui/commit/a12c98574d07f002fd59d166f9fc1fd391581b91))
+* Added: German localization ([ddbcc5d29](https://github.com/jquery/jquery-ui/commit/ddbcc5d29d069336ddaeab221db91220b95da175))
+* Fixed: Get `selectedDay` from `data-date` instead of element contents ([cf938e286](https://github.com/jquery/jquery-ui/commit/cf938e286382cc8f6cb74b3c6f75275073672aeb))
+* Fixed: Make sure text options are text, shorten HTML strings ([trac-15284](https://bugs.jqueryui.com/ticket/15284), [afe20b79a](https://github.com/jquery/jquery-ui/commit/afe20b79a64266e64011f34b26a30b3d1c62fd47))
+* Fixed: Make sure `altField` is treated as a CSS selector ([32850869d](https://github.com/jquery/jquery-ui/commit/32850869d308d5e7c9bf3e3b4d483ea886d373ce))
+* Fixed: Hungarian localization to use uppercase for first characters ([9bb366ef8](https://github.com/jquery/jquery-ui/commit/9bb366ef8a710c06df924b2f6567cd5ed701cd44))
+* Fixed: Current instance memory leak and added unit testcases ([817ce3855](https://github.com/jquery/jquery-ui/commit/817ce38555f07981f929fb4b1229fc42574cf85c))
+* Fixed: Typo in `currentText` in `da` localization ([9c0d83f2e](https://github.com/jquery/jquery-ui/commit/9c0d83f2e55f6b33e650f8dcd6b53866601695fd))
+* Fixed: First day of week for `pt-PT` locale ([trac-15195](https://bugs.jqueryui.com/ticket/15195), [6fdd0e34a](https://github.com/jquery/jquery-ui/commit/6fdd0e34a74789d2da214739ea0f5a8feff71d7e))
+* Fixed: Swedish localization ([trac-15142](https://bugs.jqueryui.com/ticket/15142), [032ddc334](https://github.com/jquery/jquery-ui/commit/032ddc3349f625e0840aa8e266b5d8ebee994853))
+* Fixed: Prev/next button behavior with `showCurrentAtPos` ([trac-15102](https://bugs.jqueryui.com/ticket/15102), [17404ced4](https://github.com/jquery/jquery-ui/commit/17404ced478a235651513fa7bef3473ef1b039e8))
+* Fixed: Traditional Chinese translation ([trac-15060](https://bugs.jqueryui.com/ticket/15060), [129434384](https://github.com/jquery/jquery-ui/commit/12943438478e71db02e861b02cd406429fc3b080))
+* Fixed: Adapt `datepicker.js` for a11y ([b864cd103](https://github.com/jquery/jquery-ui/commit/b864cd103a0acb76b0a34fb1dd382dc0925ef9a8))
+
+### Dialog
+
+* Fixed: Broken focus re-triggering in jQuery 3.4/3.5 ([834ee5f7c](https://github.com/jquery/jquery-ui/commit/834ee5f7cfb621b5f75292915a00319927a9a6d0))
+* Fixed: Shared event handler for modal dialogs ([trac-15182](https://bugs.jqueryui.com/ticket/15182), [5708046ea](https://github.com/jquery/jquery-ui/commit/5708046ea1ba4d6d86f431ec9fd32d28ae7542f6))
+
+### Menu
+
+* Fixed: Account for scrollbars in jQuery 3.2 ([1712b9bbb](https://github.com/jquery/jquery-ui/commit/1712b9bbb2e214819508b00d8f318713e27cd949))
+* Fixed: Ignore mouse events triggered due to page scrolling ([trac-9356](https://bugs.jqueryui.com/ticket/9356), [50efd6e1b](https://github.com/jquery/jquery-ui/commit/50efd6e1b063822c4a0ecb38f324ed3354f387c4))
+* Fixed: Handle mouse movement mixed with keyboard navigation ([trac-9357](https://bugs.jqueryui.com/ticket/9357), [7d992ae29](https://github.com/jquery/jquery-ui/commit/7d992ae29d27cdab8787691a14e689e60c74c05c))
+* Fixed: Don't focus dividers when wrapping via keyboard navigation ([trac-15157](https://bugs.jqueryui.com/ticket/15157), [a3e953b49](https://github.com/jquery/jquery-ui/commit/a3e953b495905d0c67790e65032841451b470ce1))
+* Fixed: Close menus immediately on selection or click outside ([trac-15034](https://bugs.jqueryui.com/ticket/15034), [0d25a36ee](https://github.com/jquery/jquery-ui/commit/0d25a36eecb9e5598596208e4852b3c3fdbf5510))
+
+### Selectmenu
+
+* Fixed: Don't render options with the `hidden` attribute ([trac-15098](https://bugs.jqueryui.com/ticket/15098), [a2b25ef6c](https://github.com/jquery/jquery-ui/commit/a2b25ef6caae3e1a272214839b815a6387618124))
+
+### Slider
+
+* Changed: Use `cursor: pointer` on handles ([trac-9371](https://bugs.jqueryui.com/ticket/9371), [c6e2b52d7](https://github.com/jquery/jquery-ui/commit/c6e2b52d70b8caf920f382402aba9f04de7e32b2))
+
+### Spinner
+
+* Spinner: Ignore `mousewheel` events when not focused ([trac-15139](https://bugs.jqueryui.com/ticket/15139), [a3b9129be](https://github.com/jquery/jquery-ui/commit/a3b9129be19afabb3fa6b2fb913b85aab43f4652))
+* Spinner: Fix typo ([863a49f95](https://github.com/jquery/jquery-ui/commit/863a49f95b181adaf76cbaf268e4ecf5485dbcf1))
+
+### Tabs
+
+* Fixed: Don't blur focused tab on sort ([trac-14627](https://bugs.jqueryui.com/ticket/14627), [f1fa076f6](https://github.com/jquery/jquery-ui/commit/f1fa076f62e99089257f6f8159cb2ce503f0abc2))
+* Fixed: Remove presentation role ([trac-10122](https://bugs.jqueryui.com/ticket/10122), [b9ffc3471](https://github.com/jquery/jquery-ui/commit/b9ffc34710212fd910717ab735818ef265c9372e))
+
+### Tooltip
+
+* Fixed: Clear interval for delayed tracking tooltips on remove ([trac-15099](https://bugs.jqueryui.com/ticket/15099), [9a4c05715](https://github.com/jquery/jquery-ui/commit/9a4c0571577e20795c19796594747f0f8beb476a))
+
+## Interactions
+
+### Droppable
+
+* Fixed: Use `$.ui.intersect()` ([trac-14963](https://bugs.jqueryui.com/ticket/14963), [fd30534b7](https://github.com/jquery/jquery-ui/commit/fd30534b73eaf9c076f93a349dbe0c7a77efc209))
+
+### Focusable
+
+* Fixed: Handling of `visibility: collapse` ([f5d38e2e0](https://github.com/jquery/jquery-ui/commit/f5d38e2e05bd54073c2bf8e8210b78b2cf2637d8))
+
+### Position
+
+* Fixed: Make sure `of` is treated as a CSS selector ([effa323f1](https://github.com/jquery/jquery-ui/commit/effa323f1505f2ce7a324e4f429fa9032c72f280))
+* Fixed: Increase scrollbar test div to handle larger scrollbars ([trac-15106](https://bugs.jqueryui.com/ticket/15106), [efb1fee02](https://github.com/jquery/jquery-ui/commit/efb1fee02b53c8fc17c3ffe68162f51b583e75f0))
+
+### Resizable
+
+* Fixed: CSP violation (style `unsafe-inline`) ([dadde722a](https://github.com/jquery/jquery-ui/commit/dadde722a40ee41bd721e7d4609ee190815055c2))
+* Fixed: Keep user-provided handles on destroy ([c426b9a20](https://github.com/jquery/jquery-ui/commit/c426b9a203271ab5e5e5f165a1d686c8281164bf))
+* Fixed: Keep user defined handles on `_setOption` ([trac-15084](https://bugs.jqueryui.com/ticket/15084), [278d1e110](https://github.com/jquery/jquery-ui/commit/278d1e1108e6c12d35be9edce2a9efcab1946229))
+* Fixed: `aspectRatio` cannot be changed after initialization. ([trac-4186](https://bugs.jqueryui.com/ticket/4186), [c481400f2](https://github.com/jquery/jquery-ui/commit/c481400f222c871ba5853bc2930a3b8b4375d08b))
+
+### Sortable
+
+* Sortable: Remove reference to .disableSelection() from demos ([d193d0ba8](https://github.com/jquery/jquery-ui/commit/d193d0ba8532206763b666bcc62665b357aef021))
+* Sortable: Fix various scrolling issues ([trac-3173](https://bugs.jqueryui.com/ticket/3173), [trac-15165](https://bugs.jqueryui.com/ticket/15165), [trac-15166](https://bugs.jqueryui.com/ticket/15166), [trac-15167](https://bugs.jqueryui.com/ticket/15167), [trac-15168](https://bugs.jqueryui.com/ticket/15168), [trac-15169](https://bugs.jqueryui.com/ticket/15169), [trac-15170](https://bugs.jqueryui.com/ticket/15170), [c866e4553](https://github.com/jquery/jquery-ui/commit/c866e455373028a62a0956455a229fef63e91fac))
+* Sortable: Fix `z-index` switching from `auto` to `0` ([trac-14683](https://bugs.jqueryui.com/ticket/14683), [9c5ce4c3e](https://github.com/jquery/jquery-ui/commit/9c5ce4c3e986136b8dce14b6b1ccd5296d932f01))
+* Sortable: Setting table row placeholder height to be same as sorted row ([trac-13662](https://bugs.jqueryui.com/ticket/13662), [87eab46a5](https://github.com/jquery/jquery-ui/commit/87eab46a589031d781299937f95f22bf61b5ef27))
+* Sortable: Fix parent offset detection ([trac-15021](https://bugs.jqueryui.com/ticket/15021), [1d409528a](https://github.com/jquery/jquery-ui/commit/1d409528a164c550e4e167c367f33ab3b7ad0e66))
+
+## CSS
+
+* Removed: CSS for `ui-state-checked` as it's not used any more ([trac-15059](https://bugs.jqueryui.com/ticket/15059), [1b0e947f4](https://github.com/jquery/jquery-ui/commit/1b0e947f46bc1261b15816f2dcbd239d83a86335))
+* Fixed: Resolve csslint issues with the IE filter property ([b15e45a45](https://github.com/jquery/jquery-ui/commit/b15e45a45100ad8e64ef0d362380d9aa27fe6862))
+* Fixed: Don't load the image sprite for 'ui-icon-blank' ([43254468d](https://github.com/jquery/jquery-ui/commit/43254468de7d69b5422e667ba7ebbe864fc34a63))
+* Fixed: Replace missing definition for default icons ([dde9b83df](https://github.com/jquery/jquery-ui/commit/dde9b83df61d1d676e66cb2a2f7970dd44a05137))
+* Fixed: Switch icon background to use bgColorContent ([265b8f5e5](https://github.com/jquery/jquery-ui/commit/265b8f5e533923b9b4c9cbd9f1dd7b7785423381))
+* Changed: Optimize images ([d85c68f6c](https://github.com/jquery/jquery-ui/commit/d85c68f6cdc02266ab8972e5c4159514b4d2598f))
+* Changed: Optimize PNG files with zopflipng ([cc37fe76a](https://github.com/jquery/jquery-ui/commit/cc37fe76aac4a09c37de83178e2c818c4400dff6))
+
+## Build
+
+* Changed: Update npm dependencies ([491ecc1bd](https://github.com/jquery/jquery-ui/commit/491ecc1bd5c48a24d8a4bcff6f74ca368b37fdf3), [91b6fc3f0](https://github.com/jquery/jquery-ui/commit/91b6fc3f08a6256ebb8006f96661db163aa8b5bc), [a22361dbe](https://github.com/jquery/jquery-ui/commit/a22361dbe491c494a87f38600d9c1f91aa07d3e0))
+* Changed: Don't publish `dist/cdn` to npm ([74af51279](https://github.com/jquery/jquery-ui/commit/74af51279419b2f901cfbacbbecd47136b3d7569))
+* Changed: Update dependencies passed to `jquery-release` ([399c81e07](https://github.com/jquery/jquery-ui/commit/399c81e077823f83faf18d9366e5a09d1c0734a2))
+* Changed: Migrate from JSHint & JSCS to ESLint ([trac-15393](https://bugs.jqueryui.com/ticket/15393), [70dae67b7](https://github.com/jquery/jquery-ui/commit/70dae67b73dfea9126f126f516fe8286f1e73417))
+* Changed: Rename the primary branch `master` to `main` ([19c628675](https://github.com/jquery/jquery-ui/commit/19c628675dadc714616af975969694267f3840df))
+* Changed: Rename `jquery-1-7` to `jquery-patch` ([7caf8f61d](https://github.com/jquery/jquery-ui/commit/7caf8f61df7840fb3de2478a75aec229d9f84f15))
diff --git a/page/changelog/1.13.0-rc.3.md b/page/changelog/1.13.0-rc.3.md
new file mode 100644
index 0000000..0f82d07
--- /dev/null
+++ b/page/changelog/1.13.0-rc.3.md
@@ -0,0 +1,16 @@
+
+
+Released on September 25, 2021, listing changes since [1.13.0-rc.2](/changelog/1.13.0-rc.2/).
+
+## CSS
+
+* Fixed: Revert three theme commits that are causing styling issues (#1983) ([0fe05e522](https://github.com/jquery/jquery-ui/commit/0fe05e52231502a31bbb1048e8ac7c8276b48a57))
+* Fixed: Fix blank icons having a background ([87656cdf5](https://github.com/jquery/jquery-ui/commit/87656cdf576f1b56dbd6cd731d3830a993c42d26))
+
+## Build
+
+* Changed: Require jQuery `>=1.8.0 <4.0.0`, not `>=1.6` in bower.json ([b0ed787d1](https://github.com/jquery/jquery-ui/commit/b0ed787d18e606afd81f941065ba35f291ffb245))
+* Changed: Update jQuery used for demos to 3.6.0 ([f381ec051](https://github.com/jquery/jquery-ui/commit/f381ec0513a896332a2bcfc1b53b77353adae9cc))
+
diff --git a/page/changelog/1.13.0.md b/page/changelog/1.13.0.md
new file mode 100644
index 0000000..5c738a2
--- /dev/null
+++ b/page/changelog/1.13.0.md
@@ -0,0 +1,140 @@
+
+
+Released on October 7, 2021
+
+## General
+
+* Removed: Support for jQuery 1.7.x ([b61b16b5a](https://github.com/jquery/jquery-ui/commit/b61b16b5a89ee27b30efdf7635d897af810af130))
+* Fixed: Stop using deprecated jQuery APIs, resolve jQuery Migrate warnings ([f4ef03e57](https://github.com/jquery/jquery-ui/commit/f4ef03e57edd7e51cb134e902679c7bddc3daaee), [0c860b0d9](https://github.com/jquery/jquery-ui/commit/0c860b0d92f9959f6747f8c02e9671eb2fc561aa), [995b5faec](https://github.com/jquery/jquery-ui/commit/995b5faec966b608ba15ed2a68c1f1565f77053b), [98b539171](https://github.com/jquery/jquery-ui/commit/98b539171b6e805fa79346a5e9896865e5213b9c), [809f29efa](https://github.com/jquery/jquery-ui/commit/809f29efa79c3c9aba95e6d7ffef41f567cda3a5), [0940cb9bd](https://github.com/jquery/jquery-ui/commit/0940cb9bd2b8967c8eac15f3097933f5aee7e551), [0b7246b6e](https://github.com/jquery/jquery-ui/commit/0b7246b6eeadfa9e2696e22f3230f6452f8129dc))
+
+## Core & Utilities
+
+### UI Core
+
+* Fixed: Rename from `.form()` to `._form()` since its not for public use ([trac-15074](https://bugs.jqueryui.com/ticket/15074), [0627eb364](https://github.com/jquery/jquery-ui/commit/0627eb3645009d868ae20a27d0a283acd5797a1f))
+* Fixed: Handle empty sets in Labels ([trac-15184](https://bugs.jqueryui.com/ticket/15184), [adcf9b6f6](https://github.com/jquery/jquery-ui/commit/adcf9b6f6ef9c6dfa88932b40307f581e65bc667))
+* Removed: `$.ui.escapeSelector` in favor of `$.escapeSelector` ([trac-14991](https://bugs.jqueryui.com/ticket/14991), [7c6a9f012](https://github.com/jquery/jquery-ui/commit/7c6a9f01281a9739f54ef57d7deecb41a873ef38))
+
+### Widget Factory
+
+* Fixed: Boolean option when under use strict ([2434dfd45](https://github.com/jquery/jquery-ui/commit/2434dfd45d0805304e1db634d059feaa0bacf358))
+* Fixed: Handle `Object.create(null)` for options objects ([trac-15179](https://bugs.jqueryui.com/ticket/15179), [b3c0a7f71](https://github.com/jquery/jquery-ui/commit/b3c0a7f71d0b351755b97858ad47de4e9a373606))
+* Fixed: Improve `remove` event bindings for `classes` options ([trac-15078](https://bugs.jqueryui.com/ticket/15078), [trac-15082](https://bugs.jqueryui.com/ticket/15082), [trac-15095](https://bugs.jqueryui.com/ticket/15095), [trac-15136](https://bugs.jqueryui.com/ticket/15136), [trac-15152](https://bugs.jqueryui.com/ticket/15152), [ef2e9bab9](https://github.com/jquery/jquery-ui/commit/ef2e9bab92ae898311baa295590cd487d9071319))
+* Fixed: Don't swallow errors in `remove` events ([1f2011ece](https://github.com/jquery/jquery-ui/commit/1f2011ece3fe6847874677e9a8210fa202498ccb))
+
+## Widgets
+
+### Autocomplete
+
+* Fixed: IE/Edge scrolling issues ([trac-9638](https://bugs.jqueryui.com/ticket/9638), [573e7e69c](https://github.com/jquery/jquery-ui/commit/573e7e69c9b63752fb06a15d60ec2dded839e093))
+* Fixed: Escape HTML tags in callback name to avoid XSS in demo ([trac-15048](https://bugs.jqueryui.com/ticket/15048), [69e66ea65](https://github.com/jquery/jquery-ui/commit/69e66ea6556584c39621c184f8f790a1011408ce))
+
+### Button
+
+* Fixed: Backcompat when called on collection of mixed elements ([trac-15109](https://bugs.jqueryui.com/ticket/15109), [abc9e7ce2](https://github.com/jquery/jquery-ui/commit/abc9e7ce2f3b60a18bf1f461c7cbfccb3fa02b53))
+
+### Checkboxradio
+
+* Fixed: Don't add ui-state-hover to icons ([trac-15055](https://bugs.jqueryui.com/ticket/15055), [b9d687deb](https://github.com/jquery/jquery-ui/commit/b9d687deb58cce5f4c6e27dace9cb172e291698c))
+
+### Datepicker
+
+* Added: Add option for `onUpdateDatepicker` callback ([17d115b82](https://github.com/jquery/jquery-ui/commit/17d115b8298b935ab0d26b881d4f6f3e83984868), [a12c98574](https://github.com/jquery/jquery-ui/commit/a12c98574d07f002fd59d166f9fc1fd391581b91))
+* Added: German localization ([ddbcc5d29](https://github.com/jquery/jquery-ui/commit/ddbcc5d29d069336ddaeab221db91220b95da175))
+* Fixed: Get `selectedDay` from `data-date` instead of element contents ([cf938e286](https://github.com/jquery/jquery-ui/commit/cf938e286382cc8f6cb74b3c6f75275073672aeb))
+* Fixed: Make sure text options are text, shorten HTML strings ([CVE-2021-41183](https://github.com/jquery/jquery-ui/security/advisories/GHSA-j7qv-pgf6-hvh4), [trac-15284](https://bugs.jqueryui.com/ticket/15284), [afe20b79a](https://github.com/jquery/jquery-ui/commit/afe20b79a64266e64011f34b26a30b3d1c62fd47))
+* Fixed: Make sure `altField` is treated as a CSS selector ([CVE-2021-41182](https://github.com/jquery/jquery-ui/security/advisories/GHSA-9gj3-hwp5-pmwc), [32850869d](https://github.com/jquery/jquery-ui/commit/32850869d308d5e7c9bf3e3b4d483ea886d373ce))
+* Fixed: Hungarian localization to use uppercase for first characters ([9bb366ef8](https://github.com/jquery/jquery-ui/commit/9bb366ef8a710c06df924b2f6567cd5ed701cd44))
+* Fixed: Current instance memory leak and added unit testcases ([817ce3855](https://github.com/jquery/jquery-ui/commit/817ce38555f07981f929fb4b1229fc42574cf85c))
+* Fixed: Typo in `currentText` in `da` localization ([9c0d83f2e](https://github.com/jquery/jquery-ui/commit/9c0d83f2e55f6b33e650f8dcd6b53866601695fd))
+* Fixed: First day of week for `pt-PT` locale ([trac-15195](https://bugs.jqueryui.com/ticket/15195), [6fdd0e34a](https://github.com/jquery/jquery-ui/commit/6fdd0e34a74789d2da214739ea0f5a8feff71d7e))
+* Fixed: Swedish localization ([trac-15142](https://bugs.jqueryui.com/ticket/15142), [032ddc334](https://github.com/jquery/jquery-ui/commit/032ddc3349f625e0840aa8e266b5d8ebee994853))
+* Fixed: Prev/next button behavior with `showCurrentAtPos` ([trac-15102](https://bugs.jqueryui.com/ticket/15102), [17404ced4](https://github.com/jquery/jquery-ui/commit/17404ced478a235651513fa7bef3473ef1b039e8))
+* Fixed: Traditional Chinese translation ([trac-15060](https://bugs.jqueryui.com/ticket/15060), [129434384](https://github.com/jquery/jquery-ui/commit/12943438478e71db02e861b02cd406429fc3b080))
+* Fixed: Adapt `datepicker.js` for a11y ([b864cd103](https://github.com/jquery/jquery-ui/commit/b864cd103a0acb76b0a34fb1dd382dc0925ef9a8))
+
+### Dialog
+
+* Fixed: Broken focus re-triggering in jQuery 3.4/3.5 ([834ee5f7c](https://github.com/jquery/jquery-ui/commit/834ee5f7cfb621b5f75292915a00319927a9a6d0))
+* Fixed: Shared event handler for modal dialogs ([trac-15182](https://bugs.jqueryui.com/ticket/15182), [5708046ea](https://github.com/jquery/jquery-ui/commit/5708046ea1ba4d6d86f431ec9fd32d28ae7542f6))
+
+### Menu
+
+* Fixed: Account for scrollbars in jQuery 3.2 ([1712b9bbb](https://github.com/jquery/jquery-ui/commit/1712b9bbb2e214819508b00d8f318713e27cd949))
+* Fixed: Ignore mouse events triggered due to page scrolling ([trac-9356](https://bugs.jqueryui.com/ticket/9356), [50efd6e1b](https://github.com/jquery/jquery-ui/commit/50efd6e1b063822c4a0ecb38f324ed3354f387c4))
+* Fixed: Handle mouse movement mixed with keyboard navigation ([trac-9357](https://bugs.jqueryui.com/ticket/9357), [7d992ae29](https://github.com/jquery/jquery-ui/commit/7d992ae29d27cdab8787691a14e689e60c74c05c))
+* Fixed: Don't focus dividers when wrapping via keyboard navigation ([trac-15157](https://bugs.jqueryui.com/ticket/15157), [a3e953b49](https://github.com/jquery/jquery-ui/commit/a3e953b495905d0c67790e65032841451b470ce1))
+* Fixed: Close menus immediately on selection or click outside ([trac-15034](https://bugs.jqueryui.com/ticket/15034), [0d25a36ee](https://github.com/jquery/jquery-ui/commit/0d25a36eecb9e5598596208e4852b3c3fdbf5510))
+
+### Selectmenu
+
+* Fixed: Don't render options with the `hidden` attribute ([trac-15098](https://bugs.jqueryui.com/ticket/15098), [a2b25ef6c](https://github.com/jquery/jquery-ui/commit/a2b25ef6caae3e1a272214839b815a6387618124))
+
+### Slider
+
+* Changed: Use `cursor: pointer` on handles ([trac-9371](https://bugs.jqueryui.com/ticket/9371), [c6e2b52d7](https://github.com/jquery/jquery-ui/commit/c6e2b52d70b8caf920f382402aba9f04de7e32b2))
+
+### Spinner
+
+* Spinner: Ignore `mousewheel` events when not focused ([trac-15139](https://bugs.jqueryui.com/ticket/15139), [a3b9129be](https://github.com/jquery/jquery-ui/commit/a3b9129be19afabb3fa6b2fb913b85aab43f4652))
+* Spinner: Fix typo ([863a49f95](https://github.com/jquery/jquery-ui/commit/863a49f95b181adaf76cbaf268e4ecf5485dbcf1))
+
+### Tabs
+
+* Fixed: Don't blur focused tab on sort ([trac-14627](https://bugs.jqueryui.com/ticket/14627), [f1fa076f6](https://github.com/jquery/jquery-ui/commit/f1fa076f62e99089257f6f8159cb2ce503f0abc2))
+* Fixed: Remove presentation role ([trac-10122](https://bugs.jqueryui.com/ticket/10122), [b9ffc3471](https://github.com/jquery/jquery-ui/commit/b9ffc34710212fd910717ab735818ef265c9372e))
+
+### Tooltip
+
+* Fixed: Clear interval for delayed tracking tooltips on remove ([trac-15099](https://bugs.jqueryui.com/ticket/15099), [9a4c05715](https://github.com/jquery/jquery-ui/commit/9a4c0571577e20795c19796594747f0f8beb476a))
+
+## Interactions
+
+### Droppable
+
+* Fixed: Use `$.ui.intersect()` ([trac-14963](https://bugs.jqueryui.com/ticket/14963), [fd30534b7](https://github.com/jquery/jquery-ui/commit/fd30534b73eaf9c076f93a349dbe0c7a77efc209))
+
+### Focusable
+
+* Fixed: Handling of `visibility: collapse` ([f5d38e2e0](https://github.com/jquery/jquery-ui/commit/f5d38e2e05bd54073c2bf8e8210b78b2cf2637d8))
+
+### Position
+
+* Fixed: Make sure `of` is treated as a CSS selector ([CVE-2021-41184](https://github.com/jquery/jquery-ui/security/advisories/GHSA-gpqq-952q-5327), [effa323f1](https://github.com/jquery/jquery-ui/commit/effa323f1505f2ce7a324e4f429fa9032c72f280))
+* Fixed: Increase scrollbar test div to handle larger scrollbars ([trac-15106](https://bugs.jqueryui.com/ticket/15106), [efb1fee02](https://github.com/jquery/jquery-ui/commit/efb1fee02b53c8fc17c3ffe68162f51b583e75f0))
+
+### Resizable
+
+* Fixed: CSP violation (style `unsafe-inline`) ([dadde722a](https://github.com/jquery/jquery-ui/commit/dadde722a40ee41bd721e7d4609ee190815055c2))
+* Fixed: Keep user-provided handles on destroy ([c426b9a20](https://github.com/jquery/jquery-ui/commit/c426b9a203271ab5e5e5f165a1d686c8281164bf))
+* Fixed: Keep user defined handles on `_setOption` ([trac-15084](https://bugs.jqueryui.com/ticket/15084), [278d1e110](https://github.com/jquery/jquery-ui/commit/278d1e1108e6c12d35be9edce2a9efcab1946229))
+* Fixed: `aspectRatio` cannot be changed after initialization. ([trac-4186](https://bugs.jqueryui.com/ticket/4186), [c481400f2](https://github.com/jquery/jquery-ui/commit/c481400f222c871ba5853bc2930a3b8b4375d08b))
+
+### Sortable
+
+* Sortable: Remove reference to .disableSelection() from demos ([d193d0ba8](https://github.com/jquery/jquery-ui/commit/d193d0ba8532206763b666bcc62665b357aef021))
+* Sortable: Fix various scrolling issues ([trac-3173](https://bugs.jqueryui.com/ticket/3173), [trac-15165](https://bugs.jqueryui.com/ticket/15165), [trac-15166](https://bugs.jqueryui.com/ticket/15166), [trac-15167](https://bugs.jqueryui.com/ticket/15167), [trac-15168](https://bugs.jqueryui.com/ticket/15168), [trac-15169](https://bugs.jqueryui.com/ticket/15169), [trac-15170](https://bugs.jqueryui.com/ticket/15170), [c866e4553](https://github.com/jquery/jquery-ui/commit/c866e455373028a62a0956455a229fef63e91fac))
+* Sortable: Fix `z-index` switching from `auto` to `0` ([trac-14683](https://bugs.jqueryui.com/ticket/14683), [9c5ce4c3e](https://github.com/jquery/jquery-ui/commit/9c5ce4c3e986136b8dce14b6b1ccd5296d932f01))
+* Sortable: Setting table row placeholder height to be same as sorted row ([trac-13662](https://bugs.jqueryui.com/ticket/13662), [87eab46a5](https://github.com/jquery/jquery-ui/commit/87eab46a589031d781299937f95f22bf61b5ef27))
+* Sortable: Fix parent offset detection ([trac-15021](https://bugs.jqueryui.com/ticket/15021), [1d409528a](https://github.com/jquery/jquery-ui/commit/1d409528a164c550e4e167c367f33ab3b7ad0e66))
+
+## CSS
+
+* Fixed: Resolve csslint issues with the IE filter property ([b15e45a45](https://github.com/jquery/jquery-ui/commit/b15e45a45100ad8e64ef0d362380d9aa27fe6862))
+* Fixed: Don't load the image sprite for 'ui-icon-blank' ([43254468d](https://github.com/jquery/jquery-ui/commit/43254468de7d69b5422e667ba7ebbe864fc34a63), [87656cdf5](https://github.com/jquery/jquery-ui/commit/87656cdf576f1b56dbd6cd731d3830a993c42d26))
+* Changed: Optimize images ([d85c68f6c](https://github.com/jquery/jquery-ui/commit/d85c68f6cdc02266ab8972e5c4159514b4d2598f))
+* Changed: Optimize PNG files with zopflipng ([cc37fe76a](https://github.com/jquery/jquery-ui/commit/cc37fe76aac4a09c37de83178e2c818c4400dff6))
+
+## Build
+
+* Changed: Update npm dependencies ([491ecc1bd](https://github.com/jquery/jquery-ui/commit/491ecc1bd5c48a24d8a4bcff6f74ca368b37fdf3), [91b6fc3f0](https://github.com/jquery/jquery-ui/commit/91b6fc3f08a6256ebb8006f96661db163aa8b5bc), [a22361dbe](https://github.com/jquery/jquery-ui/commit/a22361dbe491c494a87f38600d9c1f91aa07d3e0))
+* Changed: Don't publish `dist/cdn` to npm ([74af51279](https://github.com/jquery/jquery-ui/commit/74af51279419b2f901cfbacbbecd47136b3d7569))
+* Changed: Update dependencies passed to `jquery-release` ([399c81e07](https://github.com/jquery/jquery-ui/commit/399c81e077823f83faf18d9366e5a09d1c0734a2))
+* Changed: Migrate from JSHint & JSCS to ESLint ([trac-15393](https://bugs.jqueryui.com/ticket/15393), [70dae67b7](https://github.com/jquery/jquery-ui/commit/70dae67b73dfea9126f126f516fe8286f1e73417))
+* Changed: Rename the primary branch `master` to `main` ([19c628675](https://github.com/jquery/jquery-ui/commit/19c628675dadc714616af975969694267f3840df))
+* Changed: Rename `jquery-1-7` to `jquery-patch` ([7caf8f61d](https://github.com/jquery/jquery-ui/commit/7caf8f61df7840fb3de2478a75aec229d9f84f15))
+* Changed: Require jQuery `>=1.8.0 <4.0.0`, not `>=1.6` in bower.json ([b0ed787d1](https://github.com/jquery/jquery-ui/commit/b0ed787d18e606afd81f941065ba35f291ffb245))
+* Changed: Update jQuery used for demos to 3.6.0 ([f381ec051](https://github.com/jquery/jquery-ui/commit/f381ec0513a896332a2bcfc1b53b77353adae9cc))
+
diff --git a/page/changelog/1.13.1.md b/page/changelog/1.13.1.md
new file mode 100644
index 0000000..a26b997
--- /dev/null
+++ b/page/changelog/1.13.1.md
@@ -0,0 +1,34 @@
+
+
+Released on January 20, 2022
+
+## Core & Utilities
+
+### Widget factory
+
+* Fixed: Optimize attachment of the _untrackClassesElement listener ([#2014](https://github.com/jquery/jquery-ui/issues/2014), [0c5becce0](https://github.com/jquery/jquery-ui/commit/0c5becce0e395b89de0f526e857e7ca2717d4ab2))
+* Fixed: Make contextless widget construction work ([#2015](https://github.com/jquery/jquery-ui/issues/2015), [ed637b04d](https://github.com/jquery/jquery-ui/commit/ed637b04d75e4ebd6ea523f23e6dee7f64b68145))
+
+## Widgets
+
+### Autocomplete
+
+* Fixed: Rewrite with a delay instead of appending the live region ([#2002](https://github.com/jquery/jquery-ui/issues/2002), [933ce5d77](https://github.com/jquery/jquery-ui/commit/933ce5d779135ad04734f14c50b38f9a8d8564f5))
+
+### Tooltip
+
+* Fixed: Don't crash on empty content ([#1990](https://github.com/jquery/jquery-ui/issues/1990), [85fba3f10](https://github.com/jquery/jquery-ui/commit/85fba3f107a4a03bdac43f06c81ab2f2a3c2fea5))
+
+## Interactions
+
+### Sortable
+
+* Fixed: Fix positioning when moving a Draggable item into a Sortable ([#2001](https://github.com/jquery/jquery-ui/issues/2001), [b52ee4012](https://github.com/jquery/jquery-ui/commit/b52ee4012d13e2f531a39fe0a53366e119dd1501))
+* Fixed: Allow 0-height containers to be sortable as in 1.12.1 ([#1998](https://github.com/jquery/jquery-ui/issues/1998), [efe3b2251](https://github.com/jquery/jquery-ui/commit/efe3b225179f8f2f3f2c05484f7757f90bc5a27b))
+
+## Build
+
+* Changed: Update the bug tracker from bugs.jqueryui.com to GitHub ([1f0851b53](https://github.com/jquery/jquery-ui/commit/1f0851b5381143e78d4ded1877b2a0e4d2aec5ca))
+* Changed: Switch from Travis to GitHub actions ([e0a78d440](https://github.com/jquery/jquery-ui/commit/e0a78d440048c9a192713c1dac0529cfbacbe993))
diff --git a/page/changelog/1.13.2.md b/page/changelog/1.13.2.md
new file mode 100644
index 0000000..5b91c0b
--- /dev/null
+++ b/page/changelog/1.13.2.md
@@ -0,0 +1,30 @@
+
+
+Released on July 14, 2022
+
+## Widgets
+
+### Checkboxradio
+
+* Fixed: Don't re-evaluate text labels as HTML ([#2101](https://github.com/jquery/jquery-ui/issues/2101), [8cc5bae1c](https://github.com/jquery/jquery-ui/commit/8cc5bae1caa1fcf96bf5862c5646c787020ba3f9))
+
+### Datepicker
+
+* Fixed: Capitalize some Indonesian words ([9d1fc97b4](https://github.com/jquery/jquery-ui/commit/9d1fc97b4ea5c364b8f1c7d9ab2a3c28f8c594e7))
+* Fixed: Add missing localization for prevText and nextText ([#2048](https://github.com/jquery/jquery-ui/issues/2048), [395aa7d05](https://github.com/jquery/jquery-ui/commit/395aa7d05601aa1f2ebeae272f81f0014c0cae90))
+* Fixed: Remove symbols in localization ([#2048](https://github.com/jquery/jquery-ui/issues/2048), [218c6af95](https://github.com/jquery/jquery-ui/commit/218c6af95a5d72134c1b32220995b161c56a1453), [3126e1286](https://github.com/jquery/jquery-ui/commit/3126e128691fd9fa78f33930ba9cb37609d0a64f))
+
+### Selectmenu
+
+* Fixed: Remove a call to the deprecated .focus() method ([1f467baaa](https://github.com/jquery/jquery-ui/commit/1f467baaacf0f9927cb73482a9f3ac0253739c4a))
+
+### All
+
+* Fixed: Remove deprecated .click() usage in demos/tests ([b53e7beb6](https://github.com/jquery/jquery-ui/commit/b53e7beb6884a8de7710146112bc48aecd8737b4))
+
+## Build
+
+* Changed: Add dependabot.yml config (GitHub Actions) ([d66fdd5c9](https://github.com/jquery/jquery-ui/commit/d66fdd5c9a1afac13138c7f48b068c36236b9358))
+* Changed: Include all the files published to the CDN in npm/Bower packages ([#2011](https://github.com/jquery/jquery-ui/issues/2011), [e21a2543b](https://github.com/jquery/jquery-ui/commit/e21a2543b55680f23aaa7efa38f3288b8e767e7d))
diff --git a/page/changelog/1.13.3.md b/page/changelog/1.13.3.md
new file mode 100644
index 0000000..e7fe48b
--- /dev/null
+++ b/page/changelog/1.13.3.md
@@ -0,0 +1,45 @@
+
+
+Released on April 26, 2024
+
+## Core & Utilities
+
+### UI Core
+
+* Fixed: Fix dependencies in ui/core.js ([#2107](https://github.com/jquery/jquery-ui/issues/2107), [5fa0db48d](https://github.com/jquery/jquery-ui/commit/5fa0db48d73887facf891eb05b43c443b5baeca3))
+* Fixed: Fix IE `-ms-filter` property values ([#2190](https://github.com/jquery/jquery-ui/issues/2190), [jquery/jquery-ui-themeroller#19](https://github.com/jquery/jquery-ui-themeroller/pull/19), [jquery/download.jqueryui.com#612](https://github.com/jquery/download.jqueryui.com/pull/612))
+
+## Widgets
+
+### Dialog
+
+* Fixed: Fix IE dialog focus handling with jQuery <3.7 ([7adb13ac7](https://github.com/jquery/jquery-ui/commit/7adb13ac7c30a7ba33f1db256952be77b9e7a310))
+
+### Selectmenu
+
+* Fixed: Fix selecting options following hidden ones via the `hidden` attribute ([#2082](https://github.com/jquery/jquery-ui/issues/2082), [020828e7f](https://github.com/jquery/jquery-ui/commit/020828e7ffd5e7830d979b4c5cf8412f04223973))
+
+## Interactions
+
+### Resizable
+
+* Fixed: Fix resizing of elems with `box-sizing: border-box` ([#1979](https://github.com/jquery/jquery-ui/issues/1979), [#2083](https://github.com/jquery/jquery-ui/issues/2083), [62f2ccc56](https://github.com/jquery/jquery-ui/commit/62f2ccc5678a8b09df85afd006eb623ac38af189))
+
+## Build
+
+* Added: Add a maintenance mode info to README ([988b73d20](https://github.com/jquery/jquery-ui/commit/988b73d20fb555131827e4585a7fcfbaf1ae15d9))
+* Added: Add a security policy in SECURITY.md ([4bae79d53](https://github.com/jquery/jquery-ui/commit/4bae79d534aa62a6383d12cbfbeb1d0eea4afe8b))
+* Added: Align test runner with other repos ([4af5caed7](https://github.com/jquery/jquery-ui/commit/4af5caed7a16cc0aca6b8f2b65ab0d697df139eb)), ([91df20be6](https://github.com/jquery/jquery-ui/commit/91df20be6b488ac6cf4da291d7ee3aa5d6feac73))
+* Fixed: Replace search.php with $.ajaxTransport() mock in demos ([604aae1a5](https://github.com/jquery/jquery-ui/commit/604aae1a5739f4b1980959ceed024e44619f6c7e))
+* Fixed: Avoid self-closing HTML tags in demos/tests ([0977ea1b4](https://github.com/jquery/jquery-ui/commit/0977ea1b48355bfddc98cb16673ea8b627904dab))
+* Fixed: remove a duplicated "be" in an accordion demo ([4da7a30ff](https://github.com/jquery/jquery-ui/commit/4da7a30ff4d3ebd733fa538a0253d114ca0fc348))
+* Changed: Update JS Foundation mentions to OpenJS Foundation ([0df6e6583](https://github.com/jquery/jquery-ui/commit/0df6e658307f8936a477deb9674d643d18a2469b))
+* Changed: Change Node tested versions from 10/16/18 to 10/18/20 ([2de8604b6](https://github.com/jquery/jquery-ui/commit/2de8604b67983a53fd42b24610a59e140a1425e9))
+* Changed: Fork vendors to remove QUnit deprecated API usage ([546214e86](https://github.com/jquery/jquery-ui/commit/546214e86956804a1b02da173a4c6c5ddea11454))
+* Changed: Update dependencies, including QUnit 1 -> 2 ([f68d655af](https://github.com/jquery/jquery-ui/commit/f68d655aff81273d431d5e58bc8af775fc9bd231))
+* Changed: Optimize PNG files in selectmenu demos ([827abdfcc](https://github.com/jquery/jquery-ui/commit/827abdfccd13033a7cd0c5d83b213d38f20a4fa2))
+* Changed: Better wording for the purposefully broken tab demo ([455884470](https://github.com/jquery/jquery-ui/commit/455884470c269939411d1704949a89f7e8d9ec7c))
+* Changed: Update HTTP URLs to HTTPS ([8e34aa615](https://github.com/jquery/jquery-ui/commit/8e34aa6155d2c0770962c42d49a696183fe6d80f)), ([4966aea38](https://github.com/jquery/jquery-ui/commit/4966aea381403ce368c17bcf4b2ecd836c82487d))
+* Changed: Switch from QUnit.jsDump to QUnit.dump ([f36fe9e50](https://github.com/jquery/jquery-ui/commit/f36fe9e50d2a83a9bc5c4eb18fdfd5abe754e300))
diff --git a/page/changelog/1.14.0-beta.1.md b/page/changelog/1.14.0-beta.1.md
new file mode 100644
index 0000000..cb23b2c
--- /dev/null
+++ b/page/changelog/1.14.0-beta.1.md
@@ -0,0 +1,35 @@
+
+
+Released on May 15, 2024
+
+## General
+
+* Removed: Support for IE & other legacy browsers ([bb49bd794](https://github.com/jquery/jquery-ui/commit/bb49bd794bc8ea4238162725b518fb46234f3cf9))
+* Removed: Support for jQueries different from the latest for each major ([daa6fb55b](https://github.com/jquery/jquery-ui/commit/daa6fb55b35065c49c0ffc879c94627bbf85404c), [ec3edb687](https://github.com/jquery/jquery-ui/commit/ec3edb687609af9677317dfd2ec80a5bec7b35c5))
+* Changed: Stop relying on `jquery-patch.js` internally, add tests ([9887579b6](https://github.com/jquery/jquery-ui/commit/9887579b61972647f1478e64c5d7987f9d9cb039))
+
+## Core & Utilities
+
+### UI Core
+
+* Removed: The deprecated `ui/core.js` file ([03cde342c](https://github.com/jquery/jquery-ui/commit/03cde342cd360793a2439fa8dc93e441bbf73333))
+* Changed: Make back compat disabled by default ([ac8b1e4ee](https://github.com/jquery/jquery-ui/commit/ac8b1e4eee8682e6825730c4823036a90031edad))
+* Changed: Fix form-reset-mixin test module name, add to the tests HTML ([5f615c275](https://github.com/jquery/jquery-ui/commit/5f615c275d2c88305dd0733a12de3915a7c501af))
+
+## Interactions
+
+### Sortable
+
+* Changed: Rename `storedStylesheet` to `_storedStylesheet` ([f90eab84b](https://github.com/jquery/jquery-ui/commit/f90eab84b5e9a65ce62f18106e3db0ee316913f6))
+
+## Effects
+
+* Changed: Update jQuery Color from `2.2.0` to `3.0.0` ([#2240](https://github.com/jquery/jquery-ui/issues/2240), [68fda5beb](https://github.com/jquery/jquery-ui/commit/68fda5beb2035faa1e30f26722417206705f3746))
+
+## Build
+
+* Added: Add `/.github`, `/build` & `/external` to `.npmignore` ([#2075](https://github.com/jquery/jquery-ui/issues/2075), [f849c50db](https://github.com/jquery/jquery-ui/commit/f849c50db11039c01e299b56c4f65dc6bd1e5fc0))
+* Removed: Support for Node 10 ([99250fe51](https://github.com/jquery/jquery-ui/commit/99250fe517bf70a8d190b4a32a6633e4776e87fe))
+* Removed: Unused `build/themes` ([448df32bb](https://github.com/jquery/jquery-ui/commit/448df32bb1fd468fc367fe82555b484a1405d554))
diff --git a/page/changelog/1.14.0-beta.2.md b/page/changelog/1.14.0-beta.2.md
new file mode 100644
index 0000000..8e68b6e
--- /dev/null
+++ b/page/changelog/1.14.0-beta.2.md
@@ -0,0 +1,26 @@
+
+
+Released on June 14, 2024
+
+## Supported jQuery versions
+
+This release was tested against jQuery 1.12, 2.2, 3.6 & 3.7. Since jQuery follows semver, newer jQuery <4 versions should work as well.
+
+## General
+
+* Changed: Update compatible jQuery versions ([ec3edb687](https://github.com/jquery/jquery-ui/commit/ec3edb687609af9677317dfd2ec80a5bec7b35c5))
+
+## Widgets
+
+### Dialog
+
+* Added: `aria-modal` support ([#2246](https://github.com/jquery/jquery-ui/issues/2246), [376f142b9](https://github.com/jquery/jquery-ui/commit/376f142b9de42241a20efa9c89644ff5425da174))
+
+## Build
+
+* Added: Test on more jQuery Core versions ([aa06be981](https://github.com/jquery/jquery-ui/commit/aa06be9813abeea148738ed3bae0ec638a535545))
+* Removed: `testswarm` Grunt task ([1f251ca39](https://github.com/jquery/jquery-ui/commit/1f251ca399ec01c75d24293e49ac767938a547e2))
+* Removed: Code supporting Jenkins and TestSwarm ([f47c7fe44](https://github.com/jquery/jquery-ui/commit/f47c7fe44d41d6af9b6f00c7201d991b01b93035))
+* Changed: Consolidate GH actions runs; separate git & stable jQuery versions ([d45638abf](https://github.com/jquery/jquery-ui/commit/d45638abfacbe58a134fd301e163420f742e8fba))
diff --git a/page/changelog/1.14.0.md b/page/changelog/1.14.0.md
new file mode 100644
index 0000000..97834ca
--- /dev/null
+++ b/page/changelog/1.14.0.md
@@ -0,0 +1,55 @@
+
+
+Released on August 5, 2024
+
+## Supported jQuery versions
+
+This release has been tested against **jQuery 1.12.4, 2.2.4, 3.6.4 & 3.7.1**. Since jQuery follows semver, newer jQuery <4 versions within each major version line should generally work as well.
+
+jQuery UI 1.14.0 triggers no jQuery Migrate warnings when running its test suite against jQuery 3.7.1 with jQuery Migrate 3.5.2, i.e. the latest versions at the time of this release.
+
+## General
+
+* Removed: Support for IE & other legacy browsers; APIs `$.fn._form`, `$.ui.ie`, `$.ui.safeActiveElement` & `$.ui.safeBlur` ([bb49bd794](https://github.com/jquery/jquery-ui/commit/bb49bd794bc8ea4238162725b518fb46234f3cf9))
+* Removed: Support for older jQueries within each major line ([daa6fb55b](https://github.com/jquery/jquery-ui/commit/daa6fb55b35065c49c0ffc879c94627bbf85404c), [ec3edb687](https://github.com/jquery/jquery-ui/commit/ec3edb687609af9677317dfd2ec80a5bec7b35c5), [aa06be981](https://github.com/jquery/jquery-ui/commit/aa06be9813abeea148738ed3bae0ec638a535545), [ec3edb687](https://github.com/jquery/jquery-ui/commit/ec3edb687609af9677317dfd2ec80a5bec7b35c5))
+* Changed: Stop relying on `jquery-patch.js` internally, add tests ([9887579b6](https://github.com/jquery/jquery-ui/commit/9887579b61972647f1478e64c5d7987f9d9cb039))
+* Fixed: Opacity of the `ui-widget-overlay` class in root-level files `jquery-ui.css` & `jquery-ui.theme.css` in `jquery-ui-1.14.0.zip` & `jquery-ui-themes-1.14.0.zip` - as well as their minified versions - is now correctly `.3` instead of `.003` ([jquery/download.jqueryui.com@f4c9d83](https://github.com/jquery/download.jqueryui.com/commit/f4c9d8311a181e08bd02b6530e51cb400484794c))
+
+## Core & Utilities
+
+### UI Core
+
+* Removed: The deprecated `ui/core.js` file ([03cde342c](https://github.com/jquery/jquery-ui/commit/03cde342cd360793a2439fa8dc93e441bbf73333))
+* Changed: Make back compat disabled by default ([ac8b1e4ee](https://github.com/jquery/jquery-ui/commit/ac8b1e4eee8682e6825730c4823036a90031edad))
+* Changed: Fix form-reset-mixin test module name, add to the tests HTML ([5f615c275](https://github.com/jquery/jquery-ui/commit/5f615c275d2c88305dd0733a12de3915a7c501af))
+
+## Interactions
+
+### Sortable
+
+* Changed: Rename `storedStylesheet` to `_storedStylesheet` ([f90eab84b](https://github.com/jquery/jquery-ui/commit/f90eab84b5e9a65ce62f18106e3db0ee316913f6))
+
+## Widgets
+
+### Datepicker
+
+* Fixed: Hide the UI on destroy ([#2178](https://github.com/jquery/jquery-ui/issues/2178), [02a6e6bcb](https://github.com/jquery/jquery-ui/commit/02a6e6bcb004696b21324ef14c07374a56d7cd02))
+
+### Dialog
+
+* Add: `aria-modal` support ([#2246](https://github.com/jquery/jquery-ui/issues/2246), [376f142b9](https://github.com/jquery/jquery-ui/commit/376f142b9de42241a20efa9c89644ff5425da174))
+
+## Effects
+
+* Changed: Update jQuery Color from `2.2.0` to `3.0.0` ([#2240](https://github.com/jquery/jquery-ui/issues/2240), [68fda5beb](https://github.com/jquery/jquery-ui/commit/68fda5beb2035faa1e30f26722417206705f3746))
+
+## Build
+
+* Added: Add `/.github`, `/build` & `/external` to `.npmignore` ([#2075](https://github.com/jquery/jquery-ui/issues/2075), [f849c50db](https://github.com/jquery/jquery-ui/commit/f849c50db11039c01e299b56c4f65dc6bd1e5fc0))
+* Removed: Support for Node 10 ([99250fe51](https://github.com/jquery/jquery-ui/commit/99250fe517bf70a8d190b4a32a6633e4776e87fe))
+* Removed: Unused `build/themes` ([448df32bb](https://github.com/jquery/jquery-ui/commit/448df32bb1fd468fc367fe82555b484a1405d554))
+* Removed: `testswarm` Grunt task ([1f251ca39](https://github.com/jquery/jquery-ui/commit/1f251ca399ec01c75d24293e49ac767938a547e2))
+* Removed: Code supporting Jenkins and TestSwarm ([f47c7fe44](https://github.com/jquery/jquery-ui/commit/f47c7fe44d41d6af9b6f00c7201d991b01b93035))
+* Changed: Consolidate GH actions runs; separate git & stable jQuery versions ([d45638abf](https://github.com/jquery/jquery-ui/commit/d45638abfacbe58a134fd301e163420f742e8fba))
diff --git a/page/changelog/1.14.1.md b/page/changelog/1.14.1.md
new file mode 100644
index 0000000..df56535
--- /dev/null
+++ b/page/changelog/1.14.1.md
@@ -0,0 +1,46 @@
+
+
+Released on October 30, 2024
+
+## Supported jQuery versions
+
+This release has been tested against **jQuery 1.12.4, 2.2.4, 3.6.4 & 3.7.1**. Since jQuery follows semver, newer jQuery <4 versions within each major version line should generally work as well.
+
+jQuery UI 1.14.1 triggers no jQuery Migrate warnings when running its test suite against jQuery 3.7.1 with jQuery Migrate 3.5.2, i.e. the latest versions at the time of this release.
+
+## Core & Utilities
+
+### Widget Factory
+
+* Fixed: Don't let widget name affect `$.ui` prototype & constructor ([d591bdd49](https://github.com/jquery/jquery-ui/commit/d591bdd494cf28a399ea7d7ae7ccbae3a5cab020))
+
+## Widgets
+
+### Dialog
+
+* Added: An option to put the dialog title in a header element ([#2271](https://github.com/jquery/jquery-ui/issues/2271), [d564731f2](https://github.com/jquery/jquery-ui/commit/d564731f20a5eee6c6e373344a2bd6fc9d047e63))
+
+### Tabs
+
+* Fixed: Use `CSS.escape` for sanitizing selectors ([af8adca54](https://github.com/jquery/jquery-ui/commit/af8adca5481d0ac5db0865032b6c4c7e21421be7))
+
+## Interactions
+
+### Resizable
+
+* Fixed: Content shrink on resize ([#2277](https://github.com/jquery/jquery-ui/issues/2277), [c934995ef](https://github.com/jquery/jquery-ui/commit/c934995efa431efe0b15b6f9a6b614e6b8e88399))
+
+## Demos
+
+* Fixed: Removed 404 scripts from removeClass demo ([f068bf450](https://github.com/jquery/jquery-ui/commit/f068bf4509d11d781512874e18e9506525ad6dcc))
+* Fixed: Remove usage of deprecated button APIs ([#2295](https://github.com/jquery/jquery-ui/issues/2295), [b8fff16dc](https://github.com/jquery/jquery-ui/commit/b8fff16dc4580187d26a8468ee9dc31387a3b225))
+* Removed: Demos & visual tests of the transfer effect ([#2278](https://github.com/jquery/jquery-ui/issues/2278), [36ed9fc3b](https://github.com/jquery/jquery-ui/commit/36ed9fc3b0f0ce348a360e8a10500475337368b3))
+
+## Build
+
+* Added: A CodeQL non-mandatory check ([e399092c3](https://github.com/jquery/jquery-ui/commit/e399092c3ef6ea29443e879695268fc09c6ea9bf))
+* Fixed: A potential XSS in the test server HTML serving logic ([85bed8ddd](https://github.com/jquery/jquery-ui/commit/85bed8ddd893390fd41bd7e93d2a44a1b5d9b885))
+* Fixed: Titles of `jquery-patch.js` tests ([ebdcd0d86](https://github.com/jquery/jquery-ui/commit/ebdcd0d866a5d318c5255c2d6404867878d06d47))
+* Fixed: Properly check `$.uiBackCompat` in common widget tests ([fd1b8a03b](https://github.com/jquery/jquery-ui/commit/fd1b8a03b22411e68e703426fb85a2566318623d))
diff --git a/page/changelog/1.14.2.md b/page/changelog/1.14.2.md
new file mode 100644
index 0000000..77c93c0
--- /dev/null
+++ b/page/changelog/1.14.2.md
@@ -0,0 +1,36 @@
+
+
+Released on January 29, 2026
+
+## Supported jQuery versions
+
+This release has been tested against **jQuery 1.12.4, 2.2.4, 3.6.4, 3.7.1 & 4.0.0**. Since jQuery follows semver, newer jQuery <5 versions within each major version line should generally work as well.
+
+jQuery UI 1.14.2 triggers no jQuery Migrate messages except for its initialization one when running its test suite against jQuery 4.0.0 with jQuery Migrate 4.0.2 or jQuery 3.7.1 with jQuery Migrate 3.6.0, i.e. the latest versions at the time of this release.
+
+## Widgets
+
+### Spinner
+
+* Removed: The dependency on jQuery Mousewheel ([6843ced12](https://github.com/jquery/jquery-ui/commit/6843ced12e4051aefbee47cf87fa79794737eb8a), [44de3d325](https://github.com/jquery/jquery-ui/commit/44de3d325c1ac0c4a841deff0ec03265a0b670f7))
+
+### Tabs
+
+* Tabs: Properly handle decoded/encoded anchor hashes & panel IDs ([#2344](https://github.com/jquery/jquery-ui/issues/2344), [89b0ecaaa](https://github.com/jquery/jquery-ui/commit/89b0ecaaa3fc1f78e6b9f3d3b95de66f6bd22a2d))
+* Tabs: Support URL-based credentials ([#2213](https://github.com/jquery/jquery-ui/issues/2213), [53129e9cc](https://github.com/jquery/jquery-ui/commit/53129e9cc7eb1c4f55b44a14adc91da23c7be85b))
+
+## Demos
+
+* Fixed: Make all easing demos work ([0be13b57c](https://github.com/jquery/jquery-ui/commit/0be13b57cad253dbb5dc7fd3860239b4474d4b26))
+
+## Build
+
+* Changed: Update ESLint to v9, migrate to flat config, lint dist files ([1da395de2](https://github.com/jquery/jquery-ui/commit/1da395de2e6759dfe9a7a199b03a39365e30f16c))
+* Changed: Switch from UglifyJS to SWC minify, make the minified file ES5 ([302b488b9](https://github.com/jquery/jquery-ui/commit/302b488b9214e14830496578f7cf0aebcc33c132))
+
+## Tests
+
+* Fixed: Make tests not trigger Migrate 4.x warnings ([a7ac08100](https://github.com/jquery/jquery-ui/commit/a7ac0810095fe41405170dc85e36c55a57b09f02))
+* Changed: Migrate test runner to jquery-test-runner ([b68575366](https://github.com/jquery/jquery-ui/commit/b6857536606d5d0dd1b07ada519f845cdac5c96e))
diff --git a/page/changelog/1.5.1.md b/page/changelog/1.5.1.md
new file mode 100644
index 0000000..df59499
--- /dev/null
+++ b/page/changelog/1.5.1.md
@@ -0,0 +1,109 @@
+
+
+Released on June 26, 2008
+
+## Interactions
+
+### Draggable
+
+* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](https://bugs.jqueryui.com/ticket/3016))
+* Fixed issue when placeholder didn't exist ([#3018](https://bugs.jqueryui.com/ticket/3018))
+
+### Droppable
+
+* Disabling droppables does not prevent adding the hoverclass under some circumstances ([#3010](https://bugs.jqueryui.com/ticket/3010))
+
+### Resizable
+
+* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](https://bugs.jqueryui.com/ticket/3016))
+* Fixed exception when using containment: document option ([#2988](https://bugs.jqueryui.com/ticket/2988))
+* Renamed autohide option to autoHide (camelCase) for consistency ([#2990](https://bugs.jqueryui.com/ticket/2990))
+* Renamed proxy option to helper for consistency ([#2996](https://bugs.jqueryui.com/ticket/2996))
+* Fixed issues with alsoResize option
+
+### Selectable
+
+* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](https://bugs.jqueryui.com/ticket/3016))
+* Resize callback being called too early (before element resized) ([#3026](https://bugs.jqueryui.com/ticket/3026))
+
+### Sortable
+
+* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](https://bugs.jqueryui.com/ticket/3016))
+* Unexpected behavior with sortables, when items contain wrapped lines ([#3000](https://bugs.jqueryui.com/ticket/3000))
+* Corrected items callback to receive standard args: event, ui
+* Stop being fired too early ([#3019](https://bugs.jqueryui.com/ticket/3019))
+* Placeholder displays above dragged element ([#2951](https://bugs.jqueryui.com/ticket/2951))
+* Placeholder positioning issues; hierarchical sortable issues ([#2976](https://bugs.jqueryui.com/ticket/2976))
+* Connected lists items are not refreshed until you actually move into the connected list - this improves performance for connected lists
+* Extreme performance increase
+* Fixed serialize issue when a key was specified as option, but no custom expression
+* update callback was not called every time ([#3028](https://bugs.jqueryui.com/ticket/3028))
+
+## Widgets
+
+### Accordion
+
+* Various internal optimizations
+* Consistent parameters for dispatched events and callbacks. ([#2340](https://bugs.jqueryui.com/ticket/2340))
+
+### Datepicker
+
+* Various language file corrections
+* Allow setting of cell title via beforeShowDay
+* Fire event on change of month/year ([#2876](https://bugs.jqueryui.com/ticket/2876))
+* onClose bug for ranges in IE; wrapper span bug in IE; remove attribute bug in IE
+* Allow relative dates with multiple periods
+* Next link shows \> when hideIfNoPrevNext is true ([#2658](https://bugs.jqueryui.com/ticket/2658))
+* Datepicker does not allow manual entry of alphabetic characters ([#2700](https://bugs.jqueryui.com/ticket/2700))
+* Date range + restricting allows invalid range ([#2724](https://bugs.jqueryui.com/ticket/2724))
+* Date formatting characters can be used within the prev/current/next texts. ([#2593](https://bugs.jqueryui.com/ticket/2593))
+* Week row hover styling ([#2641](https://bugs.jqueryui.com/ticket/2641))
+* When showing "off page" behaves strangely ([#2371](https://bugs.jqueryui.com/ticket/2371))
+* Correct datepicker placement when used in static areas; Correct select coverage in IE 6
+* Split out display date and date value formats ([#2038](https://bugs.jqueryui.com/ticket/2038))
+
+### Dialog
+
+* The opening and closing of a dialog can now be animated with any jQuery UI effects, using two new options: show, hide. Currently no animation options can be supplied, only a string (the name of the effect). This issue is still in progress. ([#2358](https://bugs.jqueryui.com/ticket/2358))
+* Added resizeHelper
+* Added dragHelper
+* Corrected context (thisArg) for callbacks: dragStart, drag, dragStop, resizeStart, resize, resizeStop ([#3017](https://bugs.jqueryui.com/ticket/3017))
+* Added autoResize option; default value: true ([#3025](https://bugs.jqueryui.com/ticket/3025))
+* Fixed buttons so they can be changed after init using .data("buttons.dialog", ... )
+* Fixed stacking problem with modal dialogs.
+* Calling open on an already open dialog no longer causes problems ([#3032](https://bugs.jqueryui.com/ticket/3032))
+
+### Slider
+
+* Bug on destroy ([#2987](https://bugs.jqueryui.com/ticket/2987))
+* Range can now be toggled on-the-fly ([#3004](https://bugs.jqueryui.com/ticket/3004))
+
+### Tabs
+
+* Consistent parameters for dispatched events and callbacks. ([#2340](https://bugs.jqueryui.com/ticket/2340)) Note: This is an API change. The order of parameters for callbacks is different than previous version. Now the first parameter is Event, the second - ui interface object.
+
+### Effects
+
+## Core
+
+* Typo in createWrapper ([#2974](https://bugs.jqueryui.com/ticket/2974), [#2975](https://bugs.jqueryui.com/ticket/2975))
+
+### Clip
+
+* Clip effect should be animating the wrapper
+* Corrected context (thisArg) of callback
+* Fix for clip to better work with images (animates wrapper for images only)
+
+### Fold
+
+* Allow folding to occur horizontally first
+
+### Scale
+
+* Easing doesn't work for effects.scale ([#2967](https://bugs.jqueryui.com/ticket/2967))
+
+### Transfer
+
+* Transfer effect transfers to the wrong place in Safari 3.1.1 ([#2983](https://bugs.jqueryui.com/ticket/2983))
diff --git a/page/changelog/1.5.2.md b/page/changelog/1.5.2.md
new file mode 100644
index 0000000..e7668c0
--- /dev/null
+++ b/page/changelog/1.5.2.md
@@ -0,0 +1,90 @@
+
+
+Released on July 9, 2008
+
+## Interactions
+
+### Draggable
+
+* Add revert as a method ([#2914](https://bugs.jqueryui.com/ticket/2914))
+* Add an event to the droppable system ([#2436](https://bugs.jqueryui.com/ticket/2436))
+* Fixed ui.absolutePosition not updated when snapping is enabled ([#3002](https://bugs.jqueryui.com/ticket/3002))
+* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037))
+
+### Droppable
+
+* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037))
+
+### Resizable
+
+* Fixed resizable jumps when in scrolled container ([#3074](https://bugs.jqueryui.com/ticket/3074))
+* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037))
+
+### Selectable
+
+* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545))
+* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037))
+
+### Sortable
+
+* Add a hook in sortables to generate the list of sortables ([#2729](https://bugs.jqueryui.com/ticket/2729))
+* Fixed sortable element disappear after drag and double click ([#2945](https://bugs.jqueryui.com/ticket/2945))
+* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545))
+* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037))
+
+## Widgets
+
+### Accordion
+
+* Fixed dispatched events have incorrect parameters ([#3036](https://bugs.jqueryui.com/ticket/3036))
+* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545))
+* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037))
+
+### Datepicker
+
+* Add support unicode.org date formats ([#2044](https://bugs.jqueryui.com/ticket/2044))
+* Add custom cell renderer ([#2538](https://bugs.jqueryui.com/ticket/2538))
+* Add support to use UI effects on show/hide ([#3050](https://bugs.jqueryui.com/ticket/3050))
+* Change *speed* option to *duration* ([#3050](https://bugs.jqueryui.com/ticket/3050))
+* Fixed reduplicate days ([#3072](https://bugs.jqueryui.com/ticket/3072))
+* Fixed catalan localisation ([#3041](https://bugs.jqueryui.com/ticket/3041))
+* Fixed firstDay for Swedish locale ([#3033](https://bugs.jqueryui.com/ticket/3033))
+* Fixed does not cancel button click ([#3047](https://bugs.jqueryui.com/ticket/3047))
+* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545))
+* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037))
+
+### Dialog
+
+* Add activate() in dialog public ([#2728](https://bugs.jqueryui.com/ticket/2728))
+* Fixed wrong cursor in dialog title when draggable is false ([#3066](https://bugs.jqueryui.com/ticket/3066))
+* Fixed dialog buttons not visible without a theme file ([#3061](https://bugs.jqueryui.com/ticket/3061))
+* Fixed cannot select text in dialog content ([#3059](https://bugs.jqueryui.com/ticket/3059))
+* Fixed causing iframe load event to fire in Firefox 2 ([#3012](https://bugs.jqueryui.com/ticket/3012))
+* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545))
+* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037))
+
+### Slider
+
+* Add animation in slider ([#2978](https://bugs.jqueryui.com/ticket/2978))
+* Add allow cursor to be changed while dragging slider ([#2854](https://bugs.jqueryui.com/ticket/2854))
+* Fixed blue dot on ui-slider (Firefox 3) ([#3029](https://bugs.jqueryui.com/ticket/3029))
+* Fixed slider handle focus border ([#2949](https://bugs.jqueryui.com/ticket/2949))
+* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545))
+* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037))
+
+### Tabs
+
+* Fixed dispatched events have incorrect parameters ([#3035](https://bugs.jqueryui.com/ticket/3035))
+* Fixed handler to 'tabsselect' has incorrect parameters ([#3063](https://bugs.jqueryui.com/ticket/3063))
+* Fixed parameters be consistent in callbacks/events ([#2545](https://bugs.jqueryui.com/ticket/2545))
+* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037))
+
+## Effects
+
+### Slide
+
+* Fixed slide up/down at wrong position in IE7 ([#2952](https://bugs.jqueryui.com/ticket/2952))
+
+
diff --git a/page/changelog/1.5.3.md b/page/changelog/1.5.3.md
new file mode 100644
index 0000000..38dc642
--- /dev/null
+++ b/page/changelog/1.5.3.md
@@ -0,0 +1,7 @@
+
+
+Released on November 28, 2008
+
+This release is a minor update to 1.5.2. The only difference is a Daylight Saving fix for Datepicker.
\ No newline at end of file
diff --git a/page/changelog/1.5.md b/page/changelog/1.5.md
new file mode 100644
index 0000000..36922ab
--- /dev/null
+++ b/page/changelog/1.5.md
@@ -0,0 +1,130 @@
+
+
+Released on June 8, 2008
+
+## jQuery Enchant effects suite now part of jQuery UI
+
+* Can be used standalone without UI core
+* Extends the native jQuery API
+* Advanced easing functions
+* Class transitions (morphing): $("div").addClass("green", "slow")
+* Color animations: Accepts hex, rgb and names
+
+### more than 16 stand-alone effects
+
+* everything known from script.aculo.us, but highly configurable (blind,bounce,drop,fold,slide,puff ..)
+* brand-new effects: transfer, explode, clip, scale
+
+## New meta structure
+
+* Brand-new homepage, redefined logo
+* Design by Liferay art director Brian Miller
+* Download builder
+* Real-world and functional demos
+
+## ThemeRoller
+
+* Rich theming application by Filament Group
+* Create and share your own UI themes
+* Download and bundle them with the UI widgets
+
+## New bugtracker and SVN project
+
+* Dedicated bugtracker with version targeting and categories on [https://ui.jquery.com/bugs](https://ui.jquery.com/bugs)
+* Dedicated project on google code, restructured and cleaner SVN trunk and branches ([https://code.google.com/p/jquery-ui](https://code.google.com/p/jquery-ui))
+
+## New features and API changes
+* Hundreds of bugfixes, enhancements and performance improvements with many components completely rewritten
+* Unified API for all plugins (see [https://jquery.com/blog/2008/02/12/jquery-ui-15b-new-api-more-features-huge-performance-boost/](https://jquery.com/blog/2008/02/12/jquery-ui-15b-new-api-more-features-huge-performance-boost/))
+* New unit tests using a UI event-testing plugin called simulate
+* Exposed defaults for every plugin
+* Retrieve and change individual options during plugin runtime
+* Intelligent plugin cleanup on remove() calls
+* Easier file structure, fewer dependencies
+* jquery.dimensions.js now part of jQuery itself
+* removed the need for \*.ext.js files and ui.mouse.js, added a global ui.core.js
+
+### Datepicker
+
+* Countless new translations
+* Support for right-to-left languages
+* Enhanced date formatting
+* Many new options: showWeeks, calculateWeek, showAnim, onClose and more
+* Added status bar
+* Now allows control characters to be typed (copy/paste)
+
+### Dialog
+
+* Added stack option (bring dialog to front of other dialogs when given focus)
+* Extended resizable option to accept a list of handles
+* Added modal dialogs (modal/overlay options)
+* Added closeOnEscape option (pressing escape while the dialog has focus will close the dialog)
+* Added bgiframe option (applies bgiframe to dialog; requires bgiframe plugin)
+* Better position support
+* Added autoOpen option
+
+### Draggable
+
+* non-destrutive drag & drop: can handle fixed, absolute and relative positioned elements, and keeps the setting
+* better option naming: preventionTimeout becomes delay, preventionDistance becomes distance
+* new feature: snapping (snap to other elements, like the Winamp windows)
+* new feature: stack control - let the plugin automatically handle z-indexes
+* new feature: connectToSortable: allows dragging the draggable into a sortable list
+
+### Resizable
+
+* Added default theme support if the theme is not loaded
+* Support for canvas element
+* Added preventDefault (prevent native browser resize - safari)
+* Added transparent handles option
+* Added knobHandles (option to simulate image cropper styles on the handles)
+* Added grid option (resize on a grid)
+* Added animate option (animated resizing)
+* Added ghost option (creates a ghost of the element while resizing)
+* Added containment option (resize inside a limited area)
+
+### Accordion
+
+* Renamed option autoheight to autoHeight and changed the default to true
+* Autocreate additional elements required for theme when ui-accordion class isn't present on container element
+* Enhanced navigation-option by adding navigationFilter-option, accepting a custom filter to find the active panel
+* Reduced flexibility in terms of markup, in favor of much smoother animations: There must be exactly one content panel for each header
+
+### Selectable
+
+* Added start and stop callbacks
+* Improved hit detection so lasso selects item instead of mouse
+* Added autoRefresh option. default: true
+* Added manual refresh method (to be used with autoRefresh: false)
+* Added appendTo option
+
+### Slider
+
+* new feature: ranges and multiple handles
+* huge accessibility improvements: keyboard control, focussing individual handles
+* new logic: clicking or dragging somewhere other than a handle starts dragging the focussed handle
+* can generate handles now, with every handle having it's individual max/min option
+* new-feature: dual-axis slider, allowing do create widgets like colorpickers
+
+### Sortable
+
+* Rich interconnectivity
+ * Connect multiple sortables and allow sorting two-way or one-way
+ * Serialize sorting results to a url string or to arrays
+* Drag draggables into sortable lists, drop sortable items on droppables
+* Improved tolerance
+ * Three tolerance modes: "intersect", "pointer" and "guess", defaults to "guess"
+ * Now works for all kinds of different sized elements
+* Adds much of the draggable functionality: cursor, zIndex, revert, opacity, axis, handles, containment and scrolling
+* Introduces more callbacks: over/out, activate/deactivate and remove/receive
+* Better control the placeholder: insert object with element and update callbacks to do what you want
+
+### Tabs
+
+* all things zero-based for consistency
+* show callback is now called on initialization
+* set selected tab via selected option
+* set all tabs unselected via selected: null instead of another redundant option
+* simplified effects options - one fx option (which mirrors jQuery’s default animate options) instead of a bunch of others to remember.
diff --git a/page/changelog/1.6.md b/page/changelog/1.6.md
new file mode 100644
index 0000000..eb0ece2
--- /dev/null
+++ b/page/changelog/1.6.md
@@ -0,0 +1,151 @@
+
+
+Released on April 16, 2009
+
+## General
+
+What was originally planned as the 1.6 release was moved over to the 1.7 release. The final 1.6 release is 1.6rc2 plus fixes. This is a legacy compatibility release for those still using jQuery 1.2.6.
+
+## Core
+
+* Widget factory: Added trigger method for triggering callbacks and events.
+* cleaned up $.ui.hasScroll().
+* Fixed: UI plugins should support metadata ([#3187](https://bugs.jqueryui.com/ticket/3187))
+* Fixed: prevent exposure of internal methods ([#3188](https://bugs.jqueryui.com/ticket/3188))
+* Fixed: define key constants in ui.core.js ([#3233](https://bugs.jqueryui.com/ticket/3233))
+* Fixed: Add option method to widgets ([#3257](https://bugs.jqueryui.com/ticket/3257))
+* Fixed: drop is invoked as many times as droppable has been invoked ([#3275](https://bugs.jqueryui.com/ticket/3275))
+* Fixed: Return on enableSelection and disableSelection ([#3174](https://bugs.jqueryui.com/ticket/3174))
+* Fixed: .remove() doesn't call the plugin's destroy method ([#3457](https://bugs.jqueryui.com/ticket/3457))
+* Fixed: Remove .ariaRole() and .ariaState() ([#3529](https://bugs.jqueryui.com/ticket/3529))
+* Fixed: .removeAttr() needs to support ARIA properties ([#3562](https://bugs.jqueryui.com/ticket/3562))
+* Fixed: document elements can't retrieve mouse down/up event whendragging layer ([#3552](https://bugs.jqueryui.com/ticket/3552))
+* Removed names from ui.core.js as all contribution credit is given in AUTHORS.txt and https://jqueryui.com/about/.
+
+## Interactions
+
+### Draggable
+
+* added: more advanced features for the snap option - you can now passin a object instead of a bolean into "snap", possible keys are thecallbacks snap/release (which both receive ui.snapItem) and items(jQuery selector, defaults to :data(draggable))
+* added: since revert no longer checks for numbers, introduced arevertDuration option
+* added: cssNamespace option, if set to false/null, it won't add aclass to the element
+* fixed: overflow calculation in the positioning methods
+* fixed: issue when scroll was set to true, and therefore droppablesinside changed their position as well
+* fixed: IE scrolling but with overflowing containers and appendTobeing used
+* Fixed: iframeFix in draggable([#3161](https://bugs.jqueryui.com/ticket/3161))
+* Fixed: Put version numbers inside of individual files ([#3284](https://bugs.jqueryui.com/ticket/3284))
+* Fixed: Containment (resizable and draggable) not working whencontainer has overflow:hidden ([#3328](https://bugs.jqueryui.com/ticket/3328))
+* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](https://bugs.jqueryui.com/ticket/3164))
+* Fixed: Draggable revert: option can be a callback ([#3175](https://bugs.jqueryui.com/ticket/3175))
+* Fixed: iframeFix in draggable ([#3161](https://bugs.jqueryui.com/ticket/3161))
+* Fixed: Containment (resizable and draggable) not working whencontainer has overflow:hidden ([#3328](https://bugs.jqueryui.com/ticket/3328))
+* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](https://bugs.jqueryui.com/ticket/3164))
+* Fixed: Draggable revert: option can be a callback ([#3175](https://bugs.jqueryui.com/ticket/3175))
+* changed default for scroll option to true
+* made connectToSortable work fine with helper: 'original' (byremoving top/left properties at sort end)
+* fixed positioning issue with relative positioned elements relativeto the body during scroll
+* containment doesn't respect margins anymore, Sortable elements notstaying inside container ([#3538](https://bugs.jqueryui.com/ticket/3538)
+* Fixed: Draggable revert: option can be a callback ([#3175](https://bugs.jqueryui.com/ticket/3175))
+
+### Droppable
+
+* added: cssNamespace option, if set to false/null, it won't add aclass to the element
+* Fixed: accept.droppable not an option ([#3386](https://bugs.jqueryui.com/ticket/3386))
+* fixed missing default for option 'accept' (set to "\*" = everything)
+
+### Resizable
+
+* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](https://bugs.jqueryui.com/ticket/3164))
+* Fixed: Resizable aspectRatio is switched. Should be width/height ([#3450](https://bugs.jqueryui.com/ticket/3450))
+* Fixed: Resizable css cursor not getting applied ([#3480](https://bugs.jqueryui.com/ticket/3480))
+* Fixed: Resizable errors when alsoResize option is a jQuery object ([#3693](https://bugs.jqueryui.com/ticket/3693))
+* Fixed: Resizable: all classes added should have 'ui-' prefix,'proxy' should be 'ui-resizable-helper' ([#3708](https://bugs.jqueryui.com/ticket/3708))
+* Fixed: Resizable containment fix ([#3714](https://bugs.jqueryui.com/ticket/3714))
+
+### Selectable
+
+* Fixed: Ctrl-Select should use Cmd key on Mac ([#3169](https://bugs.jqueryui.com/ticket/3169))
+* Fixed: prevent exposure of internal methods ([#3205](https://bugs.jqueryui.com/ticket/3205))
+
+### Sortable
+
+* Fixed: prevent exposure of internal methods ([#3209](https://bugs.jqueryui.com/ticket/3209))
+* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](https://bugs.jqueryui.com/ticket/3164))
+* Fixed: createHelper is not passing the event object ([#3454](https://bugs.jqueryui.com/ticket/3454))
+* Fixed: ui.sortable - IE6+ doesn't fire click-event after sorting ([#3488](https://bugs.jqueryui.com/ticket/3488))
+* Fixed: sortable with default radio (prev ticket 2930) ([#3466](https://bugs.jqueryui.com/ticket/3466))
+* Fixed: a way to cancel a sort in sortable ([#3283](https://bugs.jqueryui.com/ticket/3283))
+* Added: Method to cancel a sortable attempt ([#3402](https://bugs.jqueryui.com/ticket/3402))
+* Fixed: Events removed on sortable elements ([#3541](https://bugs.jqueryui.com/ticket/3541))
+* fixed containment issue (with 'parent', height was miscalculated dueto wrong append order)
+* fixed issues with \_convertPositionTo, missed from latest re-factor,miscalculated the absolute position including scroll
+* fixed connectToSortable option, wasn't working with Arrays asdescribed in the documentation
+* accurateIntersection using outerWidth/outerHeight
+* removed default tolerance "guess" for the simplier (and betterworking) default mode, and the plain "pointer" intersection
+* merged draggable fixes into sortables (r1313, r1325)
+
+## Widgets
+
+### Accordion
+
+* Fixed: prevent exposure of internal methods ([#3194](https://bugs.jqueryui.com/ticket/3194))
+
+### Datepicker
+
+* Add day-of-year to format and parse date routines. Correct statusdisplay
+* Fixed: Datepicker Italian localization ([#3167](https://bugs.jqueryui.com/ticket/3167))
+* Fixed: invalid increment operand ([#3434](https://bugs.jqueryui.com/ticket/3434))
+* Fixed #3610. Error in French l18n file.
+* Fixed #3598. Datepicker Japanese translation replacement
+* Escape text to prevent date info substitution
+* Fixed #3610. Error in French l18n file.
+* Fixed #3642. firstDay displays day names incorrectly.
+
+### Dialog
+
+* Fixed: problem with auto margins in IE. ([3086](https://bugs.jqueryui.com/ticket/3086))
+* Fixed: Force dialog titlebars to have a full line height when notitle is provided. ([3013](https://bugs.jqueryui.com/ticket/3013))
+* Fixed: Modal dialog not working correctly on Opera 9.51 ([#3076](https://bugs.jqueryui.com/ticket/3076))
+* Fixed: prevent exposure of internal methods ([#3198](https://bugs.jqueryui.com/ticket/3198))
+* Fixed: closeOnEscape doesn't work on modal dialogs ([#3253](https://bugs.jqueryui.com/ticket/3253))
+* Fixed: Title of dialogs ([#3259](https://bugs.jqueryui.com/ticket/3259))
+* Fixed: Tabbing stops in modal dialog ([#3123](https://bugs.jqueryui.com/ticket/3123))
+* Fixed: Focus not going to Modal Dialog ([#3327](https://bugs.jqueryui.com/ticket/3327))
+* Fixed: fixed-size dialogs still have resizable border ([#3220](https://bugs.jqueryui.com/ticket/3220))
+* Fixed: fix handling on non-draggable dialgos ([#3389](https://bugs.jqueryui.com/ticket/3389))
+* Fixed: add beforeClose option ([#3087](https://bugs.jqueryui.com/ticket/3087))
+* Fixed: modal dialogs aren't greedy enough with element focus ([#3350](https://bugs.jqueryui.com/ticket/3350))
+* Fixed: Cannot select scrollbars inside dialog in Opera 9.51 ([#3193](https://bugs.jqueryui.com/ticket/3193))
+* Fixed: Remove .ariaRole() and .ariaState() ([#3529](https://bugs.jqueryui.com/ticket/3529))
+* Fixed #3637: Added role of button to close link.
+* Fixed #3638: Added closeText option (default 'close').
+* Fixed #3564: Proper positioning in Opera.
+* Fixed #3221: Use outerWidth/Height for positioning.
+
+### Slider
+
+* Fixed: fix for arrow key operation ([#3801](https://bugs.jqueryui.com/ticket/3801))
+* Fixed: prevent exposure of internal methods ([#3206](https://bugs.jqueryui.com/ticket/3206))
+* Fixed: prevent exposure of internal methods ([#3188](https://bugs.jqueryui.com/ticket/3188))
+* Fixed: Slider: keyboard event not swalled, causes scrolling ([#3342](https://bugs.jqueryui.com/ticket/3342))
+* Fixed: Slider fire beforeunload event ([#3228](https://bugs.jqueryui.com/ticket/3228))
+* Fixed: Callbacks in Slider ([#3465](https://bugs.jqueryui.com/ticket/3465))
+
+### Tabs
+
+* Fixed: Selected index becomes off by one when removing tabs ([#3065](https://bugs.jqueryui.com/ticket/3065))
+* Fixed: prevent exposure of internal methods ([#3208](https://bugs.jqueryui.com/ticket/3208))
+* Fixed: cookie value is not checked on init + selected tab is notstored in cookie on init ([#3015](https://bugs.jqueryui.com/ticket/3015))
+
+## Effects
+
+### Core
+
+* Fixed: Replace global jQuery with dollar sign ([#3596](https://bugs.jqueryui.com/ticket/3596))
+
+### Highlight
+
+* Fixed: Replace global jQuery with dollar sign ([#3596](https://bugs.jqueryui.com/ticket/3596))
+
diff --git a/page/changelog/1.7.1.md b/page/changelog/1.7.1.md
new file mode 100644
index 0000000..8fb6988
--- /dev/null
+++ b/page/changelog/1.7.1.md
@@ -0,0 +1,54 @@
+
+
+Released on March 18, 2009
+
+## General
+
+This is a maintenance release for [jQuery UI 1.7](/changelog/1.7). It changes only the plugins listed below. No changes to effects or themes.
+
+## Interactions
+
+### Droppable
+
+* Fixed: Droppable: option accept setter .droppable('option', 'accept', selector) fails ([#4278](https://bugs.jqueryui.com/ticket/4278))
+
+### Resizable
+
+* Fixed: Resizable with containment boundary - aspectRatio breaks ([#4199](https://bugs.jqueryui.com/ticket/4199))
+
+### Selectable
+
+* Fixed: Selectable: option appendTo is ignored, helper always appends to body ([#4341](https://bugs.jqueryui.com/ticket/4341))
+
+## Widgets
+
+### Accordion
+
+* Fixed: Accordion requires theme CSS to function in IE ([#4331](https://bugs.jqueryui.com/ticket/4331))
+
+### Datepicker
+
+* Fixed: Datepicker: Update Romanian Localization ([#4294](https://bugs.jqueryui.com/ticket/4294))
+* Fixed: Datepicker: Update Ukrainian Localization ([#4298](https://bugs.jqueryui.com/ticket/4298))
+* Fixed: Datepicker: destroy, disable, and enable methods affect sibling datepickers ([#4240](https://bugs.jqueryui.com/ticket/4240))
+* Fixed: Datepicker: Update Albanian Localization ([#4313](https://bugs.jqueryui.com/ticket/4313))
+
+### Slider
+
+* Fixed: Slider: ui.value incorrect in slide event if handle at value 0 ([#4292](https://bugs.jqueryui.com/ticket/4292))
+* Fixed: Slider: clicking on slider with negative values causes error 'closestHandle is undefined' ([#4315](https://bugs.jqueryui.com/ticket/4315))
+* Fixed: Slider: method destroy does not remove ui-slider-range ([#4318](https://bugs.jqueryui.com/ticket/4318))
+
+## Website
+
+### Download builder
+
+* Fixed: Invalid archive file from download builder ([#4010](https://bugs.jqueryui.com/ticket/4010))
+* Fixed: Generated styles are repeated many many times ([#4296](https://bugs.jqueryui.com/ticket/4296))
+
+### Demos & Documents
+
+* Added: Show/Hide code examples switcher
+
diff --git a/page/changelog/1.7.2.md b/page/changelog/1.7.2.md
new file mode 100644
index 0000000..0cfc0ad
--- /dev/null
+++ b/page/changelog/1.7.2.md
@@ -0,0 +1,69 @@
+
+
+Released on June 19, 2009
+
+## General
+
+This is a maintenance release for [jQuery UI 1.7](/changelog/1.7/). It changes only the plugins listed below. In addition to the plugin fixes below, 7 new themes were added: Sunny, Overcast, Le Frog, Flick, Pepper Grinder, Eggplant and Dark Hive.
+
+## Widgets
+
+### Accordion
+
+* Fixed: changestart event not documented ([#4471](https://bugs.jqueryui.com/ticket/4471))
+
+### Datepicker
+
+* Fixed: Datepicker: Datepicker: destroy, disable, and enable methods affect sibling datepickers ([#4240](https://bugs.jqueryui.com/ticket/4240))
+* Fixed: Datepicker: Datepicker: option dateFormat getter does not return same value as setter ([#4301](https://bugs.jqueryui.com/ticket/4301))
+
+### Dialog
+
+* Fixed: modal dialog + button locks page ([#4065](https://bugs.jqueryui.com/ticket/4065))
+* Fixed: Opening multiple modal dialogs causes access problems to inputs ([#4309](https://bugs.jqueryui.com/ticket/4309))
+
+### Progressbar
+
+* Fixed: progressbar('value') returns a reference to this instead of the value ([#4427](https://bugs.jqueryui.com/ticket/4427))
+
+### Slider
+
+* Fixed: ui-state-hover, ui-state-active and disabled sliders ([#4391](https://bugs.jqueryui.com/ticket/4391))
+* Fixed: some handles get stuck when using two or more handles ([#3736](https://bugs.jqueryui.com/ticket/3736))
+* Fixed: Slider code doesn't pack, due to missing semicolons ([#4492](https://bugs.jqueryui.com/ticket/4492))
+
+## Effects
+
+* Fixed: effects.core corrupts jQuery toggle functionality ([#4473](https://bugs.jqueryui.com/ticket/4473))
+
+## CSS Framework
+
+* Fixed: UI Icons are not even, causes misaligned buttons ([#4447](https://bugs.jqueryui.com/ticket/4447))
+* Fixed: added a rule for widget embedding font size. Resets ui-widget class font-size to 1em when inside another ui-widget.
+* Fixed: Update Google CDN with @import-less CSS ([#4463](https://bugs.jqueryui.com/ticket/4463))
+* Themes: minor changes to Blitzer, South Street, Cupertino, Mint Choc, Excite Bike ([#4517](https://bugs.jqueryui.com/ticket/4517))
+* Themes: Added new gallery themes: Sunny, Overcast, Le Frog, Flick, Pepper Grinder, Eggplant and Dark Hive ([#4517](https://bugs.jqueryui.com/ticket/4517))
+
+## Website
+
+### Download builder
+
+* Fixed: Redmond theme not included in latest build ([#4302](https://bugs.jqueryui.com/ticket/4302))
+* Fixed: 1.7 download fails WinZip Vista 64bit ([#4340](https://bugs.jqueryui.com/ticket/4340))
+* Fixed: Zip file containing CSS theme files does not unzip ([#4503](https://bugs.jqueryui.com/ticket/4503))
+* Fixed: Download Page Corrupt Zip File ([#4505](https://bugs.jqueryui.com/ticket/4505))
+* Fixed: Cannot download jQuery UI 1.7.1 custom theme ([#4507](https://bugs.jqueryui.com/ticket/4507))
+* Fixed: an issue with IE and the downloadbuilder ([#4291](https://bugs.jqueryui.com/ticket/4291))
+* Fixed: Custom theme generator produces buggy file ([#4496](https://bugs.jqueryui.com/ticket/4496))
+* Fixed: The Compressed (zipped) Folder is invalid or corrupted. ([#4574](https://bugs.jqueryui.com/ticket/4574))
+* Fixed: Themes Not Downloading ([#4283](https://bugs.jqueryui.com/ticket/4283))
+* Fixed: Invalid Zip Files when downloading ([#4323](https://bugs.jqueryui.com/ticket/4323))
+* Fixed: unable to download the UI themes ([#4384](https://bugs.jqueryui.com/ticket/4384))
+* Fixed: downloadbuilder - bung zip file ([#4426](https://bugs.jqueryui.com/ticket/4426))
+* Fixed: themeroller download outputs corrupted zip file ([#4543](https://bugs.jqueryui.com/ticket/4543))
+* Fixed: Theme roller does not seem to be working ([#4546](https://bugs.jqueryui.com/ticket/4546))
+* Fixed: Custom JQuery UI - created with theme roller is producing a corrupt zip file ([#4552](https://bugs.jqueryui.com/ticket/4552))
+* Fixed: Files for custom theme are not generated - default theme is downloaded instead ([#4594](https://bugs.jqueryui.com/ticket/4594))
+
diff --git a/page/changelog/1.7.md b/page/changelog/1.7.md
new file mode 100644
index 0000000..822ed7c
--- /dev/null
+++ b/page/changelog/1.7.md
@@ -0,0 +1,431 @@
+
+
+Released on March 3, 2009
+
+## Summary
+
+This release adds one new widget: Progressbar. It also modifies other widgets to utilize the new jQuery UI CSS Framework.
+
+## Core
+
+* Added: metadata support to the widget factory. ([#3187](https://bugs.jqueryui.com/ticket/3187))
+* Added: trigger method for triggering callbacks and events in widget factory.
+* Added: :data selector that matches elements that have data for a given key.
+* Added: :enableSelection/disableSelection now returns the chain ([#3174](https://bugs.jqueryui.com/ticket/3174))
+* Added: Made enableSelection/disableSelection standard jQuery methods ([#3459](https://bugs.jqueryui.com/ticket/3459))
+* Added: a namespace to the selectstart event handler in $.ui.disableSelection() so we don't remove other event handlers in $.ui.disableSelection().
+* Added: constants for key codes. ([#3233](https://bugs.jqueryui.com/ticket/3233))
+* Added: option method to widgets ([#3257](https://bugs.jqueryui.com/ticket/3257))
+* Added: Let mouse events propagate ([#3552](https://bugs.jqueryui.com/ticket/3552))
+* Added: All files now have version numbers in the header ([#3284](https://bugs.jqueryui.com/ticket/3284))
+* Added: :tabbable selector to find elements that participate in the tabbing order.
+* Fixed: Don't prevent click event if mouseup occurs on a different element than mousedown ([#4146](https://bugs.jqueryui.com/ticket/4146))
+* Fixed: Too much recursion with double include ([#4130](https://bugs.jqueryui.com/ticket/4130))
+* Fixed: Error triggering mousedown on elements that use $.ui.mouse ([#4061](https://bugs.jqueryui.com/ticket/4061))
+* Fixed: triggered events are missing properties from the original events ([#3965](https://bugs.jqueryui.com/ticket/3965))
+* Fixed: Components should use this.widgetName on internal methods ([#3838](https://bugs.jqueryui.com/ticket/3838))
+* Fixed: Mouse: Cancel drags in elements by default ([#3786](https://bugs.jqueryui.com/ticket/3786))
+* Fixed: keyCodes should be in the $.ui namespace ([#3665](https://bugs.jqueryui.com/ticket/3665))
+* Fixed: Prevent multiple instantiations of the same plugin on a single element
+* Fixed: The dollar sign should be used globally in UI instead of 'jQuery' ([#3596](https://bugs.jqueryui.com/ticket/3596))
+* Fixed: Instead of defining .ariaRole() and .ariaState(), ui.core is proxying .attr() for FF2 ([#3529](https://bugs.jqueryui.com/ticket/3529))
+* Fixed: Moved call to \_init outside of constructor. This makes it possible to invoke callbacks during initialization and have those callbacks use the widget ([#3633](https://bugs.jqueryui.com/ticket/3633))
+* Fixed: Modified widget factory to prevent access to internal methods through the API
+* Fixed: Removing elements causes instantiated plugins to be destroyed again ([#3457](https://bugs.jqueryui.com/ticket/3457))
+* Fixed: trigger() to be able to return a value from triggerHandler.
+* Fixed: selectionDisable for IE.
+* Fixed: hasScroll now checks for overflow hidden, since then the user wants the scrollbar to be hidden
+* Deprecated $.ui.plugin. Use the proxy pattern instead.
+
+## Interactions
+
+### Draggable
+
+* Added: addClasses option ([#4036](https://bugs.jqueryui.com/ticket/4036))
+* Added: revertDuration option since revert no longer checks for numbers
+* Added: Implemented more advanced features to the snap option - you can now pass in an object instead of a boolean into "snap", possible keys are the callbacks snap/release (which both receive ui.snapItem) and items (jQuery selector, defaults to :data(draggable))
+* Added: Implemented patch that allows revert to be a callback, receives one argument which is the droppable ([#3175](https://bugs.jqueryui.com/ticket/3175))
+* Removed: 'options' from ui hash ([#3917](https://bugs.jqueryui.com/ticket/3917))
+* Fixed: Margin on body element in safari caused bump ([#4141](https://bugs.jqueryui.com/ticket/4141))
+* Fixed: Defaults should be set to 'false' if disabled, not null ([#3878](https://bugs.jqueryui.com/ticket/3878))
+* Fixed: Containment (resizable and draggable) not working when container has overflow:hidden ([#3328](https://bugs.jqueryui.com/ticket/3328))
+* Fixed: draggable position refactoring - fixes many bugs, many edge case issues - added many new tests to draggable, especially related to scrolling and helper clone (fixes [3268](https://bugs.jqueryui.com/ticket/3268),[3227](https://bugs.jqueryui.com/ticket/3227))
+* Fixed: Containment broken in Chrome ([#4192](https://bugs.jqueryui.com/ticket/4192))
+* Fixed: Fixed positions include wrong scroll offset in Safari ([#4142](https://bugs.jqueryui.com/ticket/4142))
+* Fixed: Disabled sortable still receives elements from draggable ([#3980](https://bugs.jqueryui.com/ticket/3980))
+* Fixed: Removing ui.draggable immediately after the drop callback raises an error ([#4087](https://bugs.jqueryui.com/ticket/4087))
+* Fixed: Made connectToSortable accept strings ([#3984](https://bugs.jqueryui.com/ticket/3984))
+* Fixed: Respect padding in containment ([#3957](https://bugs.jqueryui.com/ticket/3957))
+* Fixed: Renamed absolutePosition to offset in ui hash ([#3976](https://bugs.jqueryui.com/ticket/3976))
+* Fixed: Respect 'axis' option during scrolling ([#3868](https://bugs.jqueryui.com/ticket/3868))
+* Fixed: Nested draggables should not conflict ([#3910](https://bugs.jqueryui.com/ticket/3910))
+* Fixed: Containment option doesn't work with Array ([#3877](https://bugs.jqueryui.com/ticket/3877))
+* Fixed: Snap positioning is wrong ([#3853](https://bugs.jqueryui.com/ticket/3853))
+* Fixed: connectToSortable revert valid/invalid bug ([#3556](https://bugs.jqueryui.com/ticket/3556))
+* Fixed: If cursorAt was used, draggable reverted to the wrong position ([#3699](https://bugs.jqueryui.com/ticket/3699))
+* Fixed: draggable snap option doesn't include scroll offsets ([#3710](https://bugs.jqueryui.com/ticket/3710))
+* Fixed: Re-implemented containment and grid support (fixes [3607](https://bugs.jqueryui.com/ticket/3607))
+* Fixed: wrong className in iframeFix ([#3653](https://bugs.jqueryui.com/ticket/3653))
+* Fixed: Error when the items are dragged back to a draggable when connected to a sortable ([#3502](https://bugs.jqueryui.com/ticket/3502))
+* Fixed and updated tests, rewrote positioning core, now passes the test suite completely in FF, IE6, IE7. ([#3535](https://bugs.jqueryui.com/ticket/3535),[#3555](https://bugs.jqueryui.com/ticket/3555))
+* Fixed: Draggable CSS classes aren't removed on destroy ([#3424](https://bugs.jqueryui.com/ticket/3424))
+* Fixed: Prevent exposure of internal methods ([#3200](https://bugs.jqueryui.com/ticket/3200))
+* Fixed: incorrect helper checking ([#3511](https://bugs.jqueryui.com/ticket/3511))
+* Fixed: helper function is applied incorrect parameters ([#3471](https://bugs.jqueryui.com/ticket/3471))
+
+* Fixed: Enhanced minor performance improvements at init
+* Fixed: relative position bug
+* Fixed: overflow calculation in the positioning methods
+* Fixed: issue when scroll was set to true, and therefore droppables inside changed their position as well
+* Fixed: IE scrolling but with overflowing containers and appendTo being used
+* Fixed: snapTolerance option instead of default
+* Fixed: proper usage of \_mouseCapture, fixes interaction issues when many plugins are used on the same element ([#3164](https://bugs.jqueryui.com/ticket/3164))
+* Fixed: problem with helper clone ([#3256](https://bugs.jqueryui.com/ticket/3256))
+* Fixed: Dragging fixed position elements throw error in browsers ([#3166](https://bugs.jqueryui.com/ticket/3166))
+
+### Droppable
+
+* Added: addClasses option ([#4037](https://bugs.jqueryui.com/ticket/4037))
+* Added: complete technical specification to [https://wiki.jqueryui.com/Droppable](https://wiki.jqueryui.com/Droppable) ([#3747](https://bugs.jqueryui.com/ticket/3747))
+* Fixed: Removed use and support for $.ui.plugin ([#3723](https://bugs.jqueryui.com/ticket/3723))
+* Fixed: Renamed offset to absolutePosition in ui hash ([#3978](https://bugs.jqueryui.com/ticket/3978))
+* Fixed: accept function - 'this' context should be DOMElement, not jQuery object ([#3955](https://bugs.jqueryui.com/ticket/3955))
+* Fixed: Droppable defaults should be set to 'false' if disabled, not null ([#3881](https://bugs.jqueryui.com/ticket/3881))
+* Fixed: Unable to remove() ui.draggable (sortable item) immediately after the drop callback ([#4088](https://bugs.jqueryui.com/ticket/4088))
+* Fixed: Use the jQuery UI event triggering ([#3727](https://bugs.jqueryui.com/ticket/3727))
+* Fixed: accept.droppable not an option ([#3386](https://bugs.jqueryui.com/ticket/3386))
+* Fixed: Prevent exposure of internal method ([#3201](https://bugs.jqueryui.com/ticket/3201))
+* Fixed: .is(accept) on init()
+* Fixed: droppables and sortables in the current dragged item are filtered out at start, preventing node hierarchy issues
+* Fixed: proper usage of \_mouseCapture, fixes interaction issues when many plugins are used on the same element ([#3164](https://bugs.jqueryui.com/ticket/3164))
+* Fixed: Droppable Elements jump and move below mouse when page is scrolled down ([#3268](https://bugs.jqueryui.com/ticket/3268))
+* Fixed: drop is invoked as many times as droppable has been invoked ([#3275](https://bugs.jqueryui.com/ticket/3275))
+
+### Resizable
+
+* Fixed: prevent exposure of internal methods ([#3204](https://bugs.jqueryui.com/ticket/3204))
+* Fixed: Resizable aspectRatio is switched. Should be width/height ([#3450](https://bugs.jqueryui.com/ticket/3450))
+* Fixed: Resizable css cursor not getting applied ([#3480](https://bugs.jqueryui.com/ticket/3480))
+* Fixed: errors when alsoResize option is a jQuery object ([#3693](https://bugs.jqueryui.com/ticket/3693))
+* Fixed: all classes added should have 'ui-' prefix, 'proxy' should be 'ui-resizable-helper' ([#3708](https://bugs.jqueryui.com/ticket/3708))
+* Fixed: containment fix ([#3714](https://bugs.jqueryui.com/ticket/3714)) ([#3067](https://bugs.jqueryui.com/ticket/3067))
+* Fixed: 'grid' option ([#3131](https://bugs.jqueryui.com/ticket/3131))
+* Fixed: default resizable has no visual indication ([#3767](https://bugs.jqueryui.com/ticket/3767))
+* Fixed: animate event has no callback ([#3843](https://bugs.jqueryui.com/ticket/3843))
+* Fixed: animated option broken ([#3841](https://bugs.jqueryui.com/ticket/3841))
+* Fixed: handles fail to disappear ([#3237](https://bugs.jqueryui.com/ticket/3237))
+* Fixed: Attempt to make textarea resizable in IE7 fails if textarea in hidden container ([#3058](https://bugs.jqueryui.com/ticket/3058))
+* Fixed: containment - only scales on x-axis ([#3733](https://bugs.jqueryui.com/ticket/3733))
+* Fixed: the knobHandles and theme detection things should be removed from resizable ([#3906](https://bugs.jqueryui.com/ticket/3906))
+* Fixed: alsoResize changes size of other element(s) in IE6 ([#3879](https://bugs.jqueryui.com/ticket/3879))
+* Fixed: !respecting min height || width ([#3251](https://bugs.jqueryui.com/ticket/3251))
+* Fixed: bug in IE6, IE7 ([#3894](https://bugs.jqueryui.com/ticket/3894))
+* Fixed: containment option, container size changes during resize in IE6 ([#3954](https://bugs.jqueryui.com/ticket/3954))
+* Fixed: dialog jumps in IE6 when scrolled down ([#3971](https://bugs.jqueryui.com/ticket/3971))
+* Fixed: animated resizable broken ([#3775](https://bugs.jqueryui.com/ticket/3775))
+* Fixed: disableSelection option should be removed ([#4093](https://bugs.jqueryui.com/ticket/4093))
+* Fixed: remove transparent option ([#4098](https://bugs.jqueryui.com/ticket/4098))
+* Fixed: preserveCursor option should be removed ([#4092](https://bugs.jqueryui.com/ticket/4092))
+* Fixed: proportionallyResize option should be removed (made internal) ([#4090](https://bugs.jqueryui.com/ticket/4090))
+* Fixed: preventDefault should not be an option as there's not use case for false ([#4135](https://bugs.jqueryui.com/ticket/4135))
+* Fixed: Little jump when a resizable is about to reach the coordinate 0 (in x- or y-axis) ([#4147](https://bugs.jqueryui.com/ticket/4147))
+* Fixed: Left Margin Calculated Incorrectly (Using Containment) ([#3882](https://bugs.jqueryui.com/ticket/3882))
+
+### Selectable
+
+* Added: missing ui-selectable-helper class to helper/lasso element
+* Removed: element and options from ui hash ([#3752](https://bugs.jqueryui.com/ticket/3752))
+* Fixed: random Safari issues ([#3854](https://bugs.jqueryui.com/ticket/3854))
+* Fixed: Use the jQuery UI trigger method to trigger events ([#3729](https://bugs.jqueryui.com/ticket/3729))
+* Fixed: Prevent exposure of internal methods ([#3205](https://bugs.jqueryui.com/ticket/3205))
+
+### Sortable
+
+* Added: support helper: "original" and fixes tons of issues (placeholder zIndex issue for example).
+* Added: forcePlaceholderSize option
+* Added: cancel method to ui-event-object: call to prevent sort ([#3283](https://bugs.jqueryui.com/ticket/3283), [3402](https://bugs.jqueryui.com/ticket/3402))
+* Fixed: Enhanced intersectWidth maths accuracy
+* Fixed: Changed default tolerance to a more meaningful name: "intersect" ([#3887](https://bugs.jqueryui.com/ticket/3887))
+* Fixed: Implemented the option connected (boolean), for the method serialize to also serialize connected lists
+* Fixed: an items issue caused the items of the container itself to be doubled if the connected query also match on it
+* Fixed: droppables and sortables in the current dragged item are filtered out at start, preventing node hierarchy issues
+* Fixed: the outer container is not set to relative anymore, preventing some weird IE bugs
+* Fixed: beforeStop should work properly in all cases
+* Fixed: wrong parameter in toArray
+* Fixed: proper usage of \_mouseCapture, fixes interaction issues when many plugins are used on the same element ([#3164](https://bugs.jqueryui.com/ticket/3164))
+* Fixed: if a key option is specified to sortable("serialize"), brackets are no longer automatically added to it
+* Fixed: UI Sortables IE issue with CSS overflow property ([#3052](https://bugs.jqueryui.com/ticket/3052), [https://bugs.jqueryui.com/ticket/3039](https://bugs.jqueryui.com/ticket/3039))
+* Fixed: IE6+ doesn't fire click-event after sorting ([#3488](https://bugs.jqueryui.com/ticket/3488))
+* Fixed: Sortable doesn't prevent click on dragged link ([#3132](https://bugs.jqueryui.com/ticket/3132))
+* Fixed: sortable with default radio (prev ticket 2930) ([#3466](https://bugs.jqueryui.com/ticket/3466))
+* Fixed: prevent exposure of internal methods ([#3209](https://bugs.jqueryui.com/ticket/3209))
+* Fixed: Sortables do not work on sorted elements that are also resizable ([#3164](https://bugs.jqueryui.com/ticket/3164))
+* Fixed: select boxes in a sortable can't be changed ([#3485](https://bugs.jqueryui.com/ticket/3485))
+* Fixed: Events removed on sortable elements ([#3541](https://bugs.jqueryui.com/ticket/3541))
+* Fixed: Positioning issue on sortable connected to draggable ([#3479](https://bugs.jqueryui.com/ticket/3479))
+* Fixed: Inline styles not removed after sorting ([#3542](https://bugs.jqueryui.com/ticket/3542))
+* Fixed: Scroll jumping on drag elements in sortable ([#3591](https://bugs.jqueryui.com/ticket/3591))
+* Fixed: Sortable elements not staying inside container ([#3538](https://bugs.jqueryui.com/ticket/3538))
+* Fixed: update is called before receive ([#3658](https://bugs.jqueryui.com/ticket/3658), [3780](https://bugs.jqueryui.com/ticket/3780))
+* Fixed: Error when dragging an item before last item has finished dragging ([#3545](https://bugs.jqueryui.com/ticket/3545))
+* Fixed: inconsistent drag behavior across browsers ([#3546](https://bugs.jqueryui.com/ticket/3546))
+* Fixed: reloading iframe ([#3595](https://bugs.jqueryui.com/ticket/3595))
+* Fixed: fast click bugs with sortable ([#3329](https://bugs.jqueryui.com/ticket/3329))
+* Fixed: 'update' option broken in rails 1.3 ([#3828](https://bugs.jqueryui.com/ticket/3828))
+* Fixed: Removed use and support of $.ui.plugin ([#3725](https://bugs.jqueryui.com/ticket/3725))
+* Fixed: connected sortable provides wrong ui.sender property in receive callback ([#3856](https://bugs.jqueryui.com/ticket/3856))
+* Fixed: missing connectWith default ([#3888](https://bugs.jqueryui.com/ticket/3888))
+* Fixed: missing default for handle option ([#3889](https://bugs.jqueryui.com/ticket/3889))
+* Fixed: missing default for placeholder option ([#3890](https://bugs.jqueryui.com/ticket/3890))
+* Fixed: connectWith should accept string selectors ([#3892](https://bugs.jqueryui.com/ticket/3892))
+* Fixed: ui hash should have offset instead of absolutePosition ([#3977](https://bugs.jqueryui.com/ticket/3977))
+* Fixed: padding space should not be used in certain calculations ([#3958](https://bugs.jqueryui.com/ticket/3958))
+* Fixed: events are improperly named ([#4008](https://bugs.jqueryui.com/ticket/4008))
+* Fixed: opacity is not reset when placed ([#4017](https://bugs.jqueryui.com/ticket/4017))
+* Fixed: dragging nested sortable children results in chaotic movement of elements ([#3962](https://bugs.jqueryui.com/ticket/3962))
+* Fixed: connectToSortable doesn't contain ui.item in callbacks ([#4009](https://bugs.jqueryui.com/ticket/4009))
+* Fixed: "out" event is being fired on drop ([#3988](https://bugs.jqueryui.com/ticket/3988))
+* Fixed: connectWith fails ([#3979](https://bugs.jqueryui.com/ticket/3979))
+* Fixed: fixed position bug in webkit ([#4041](https://bugs.jqueryui.com/ticket/4041))
+
+## Widgets
+
+### Accordion
+
+* Added: trigger changestart event when the animation starts ([#2932](https://bugs.jqueryui.com/ticket/2932))
+* Renamed alwaysOpen option to collapsible ([#3969](https://bugs.jqueryui.com/ticket/3969))
+* Removed deprecated method fn.activate for 1.6
+* Removed selectedClass for consistency reasons to the CSS Framework ([#3886](https://bugs.jqueryui.com/ticket/3886))
+* Fixed: IE js error when autoHeight is false ([#4100](https://bugs.jqueryui.com/ticket/4100))
+* Fixed: autoHeight:false animation jumps in 1.6rc6 ([#4011](https://bugs.jqueryui.com/ticket/4011))
+* Fixed: accordion jumpy with clearStyle true ([#3961](https://bugs.jqueryui.com/ticket/3961))
+* Fixed: overflow is set to hidden during calculations for fillSpace in IE6 ([#3883](https://bugs.jqueryui.com/ticket/3883))
+* Fixed: Error when using navigation option in accordion ([#3944](https://bugs.jqueryui.com/ticket/3944))
+* Fixed: Accordion icons are not being shown correctly in IE(6) ([#3844](https://bugs.jqueryui.com/ticket/3844))
+* Fixed: clearStyle broken in ui.accordion ([#3896](https://bugs.jqueryui.com/ticket/3896))
+* Fixed: Missing defaults for active, clearStyle, fillSpace and navigation ([#3884](https://bugs.jqueryui.com/ticket/3884))
+* Fixed: accordion activate behavior ([#3785](https://bugs.jqueryui.com/ticket/3785))
+* Fixed: Error in accordion documentation (or implementation) ([#3686](https://bugs.jqueryui.com/ticket/3686))
+* Fixed: set overflow:auto for fillSpace:true accordions ([#3682](https://bugs.jqueryui.com/ticket/3682))
+* Fixed: Update markup to new UI CSS Framework specs ([#3646](https://bugs.jqueryui.com/ticket/3646))
+* Fixed: Automatically add ui- classes ([#2513](https://bugs.jqueryui.com/ticket/2513)) ([#3705](https://bugs.jqueryui.com/ticket/3705))
+* Fixed: ui.accordion resize not possible ([#3626](https://bugs.jqueryui.com/ticket/3626))
+* Fixed: prevent exposure of internal methods ([#3194](https://bugs.jqueryui.com/ticket/3194))
+* Fixed: use new trigger() method.
+* Fixed: inconsistent accordionchange event arguments ([#jQuery \#3111](https://bugs.jquery.com/ticket/3111))
+
+### Datepicker
+
+* Added: support for mousewheel
+* Added: day-of-year to format and parse date routines
+* Added: big previous/next links to scroll by year using showBigPrevNext setting. Use prevBigText and nextBigText for the displayed text and prevBigStatus and nextBigStatus for their status values ([#3111](https://bugs.jqueryui.com/ticket/3111))
+* Added: refresh command ([#3159](https://bugs.jqueryui.com/ticket/3159))
+* Added: Croatian localisation ([#3224](https://bugs.jqueryui.com/ticket/3224))
+* Added: Esperanto localisation ([#3170](https://bugs.jqueryui.com/ticket/3170))
+* Added: Serbian localization ([#4156](https://bugs.jqueryui.com/ticket/4156))
+* Added: Albanian localization ([#3550](https://bugs.jqueryui.com/ticket/3550))
+* Added: Persian localization ([#3536](https://bugs.jqueryui.com/ticket/3536))
+* Added: Malaysian (Bahasa Malaysia) localization ([#3764](https://bugs.jqueryui.com/ticket/3764))
+* Added: Greek localization ([#3805](https://bugs.jqueryui.com/ticket/3805))
+* Added: complete functional specification on [https://wiki.jqueryui.com/DatePickerCalendar](https://wiki.jqueryui.com/DatePickerCalendar) ([#3744](https://bugs.jqueryui.com/ticket/3744))
+* Renamed monthAfterYear setting to showMonthAfterYear
+* Removed all unused values from i18n files ([#3751](https://bugs.jqueryui.com/ticket/3751))
+* Removed not used clearText option from source ([#3755](https://bugs.jqueryui.com/ticket/3755))
+* Fixed: Updated japanese localization ([#3598](https://bugs.jqueryui.com/ticket/3598))
+* Fixed: prev and next buttons should not have hover effect when disabled ([#3774](https://bugs.jqueryui.com/ticket/3774))
+* Fixed: Made datepicker work with jQuery.noConflict(true) ([#4055](https://bugs.jqueryui.com/ticket/4055))
+* Fixed: Incorrect layout in multiple month rows ([#4032](https://bugs.jqueryui.com/ticket/4032))
+* Fixed: Changed inline datepicker so it hides the Close button only and not the whole button panel when showButtonPanel=true ([#4003](https://bugs.jqueryui.com/ticket/4003))
+* Fixed: Datepicker calendar renders at wrong vertical position ([#3863](https://bugs.jqueryui.com/ticket/3863))
+* Fixed: Unable to select month: numberOfMonths - maxDate - changeMonth combi bug ([#3778](https://bugs.jqueryui.com/ticket/3778))
+* Fixed: Can't pick years before 1999 ([#3859](https://bugs.jqueryui.com/ticket/3859))
+* Fixed: DatePicker not hiding consistently on external click ([#3858](https://bugs.jqueryui.com/ticket/3858))
+* Fixed: In quirksmode the datepicker does not obey the viewport ([#3779](https://bugs.jqueryui.com/ticket/3779))
+* Fixed: Themeroller doesn't work well with min/max dates in datepicker ([#3507](https://bugs.jqueryui.com/ticket/3507))
+* Fixed: Themeroller doesn't support datepicker for right-to-left languages ([#3503](https://bugs.jqueryui.com/ticket/3503))
+* Fixed: Themeroller doesn't support disabled inline datepickers ([#3505](https://bugs.jqueryui.com/ticket/3505))
+* Fixed: Themeroller changes datepicker appearance when can't change month/year ([#3509](https://bugs.jqueryui.com/ticket/3509))
+* Fixed: Themeroller for datepicker doesn't highlight today or selected days ([#3506](https://bugs.jqueryui.com/ticket/3506))
+* Fixed: Themeroller doesn't support multiple months for datepicker ([#3504](https://bugs.jqueryui.com/ticket/3504))
+* Fixed: clicking on a date causes the browser to follow '\#' anchor ([#3709](https://bugs.jqueryui.com/ticket/3709))
+* Fixed: Month and year dropdown mis-alignment in datepicker ([#3712](https://bugs.jqueryui.com/ticket/3712))
+* Fixed: multi-datepicker layout is messed up in IE 6 & 7 ([#3695](https://bugs.jqueryui.com/ticket/3695))
+* Fixed: Updated markup to new UI CSS Framework specs ([#3647](https://bugs.jqueryui.com/ticket/3647))
+* Fixed: firstDay displays day names incorrectly in multi-month view ([#3642](https://bugs.jqueryui.com/ticket/3642))
+* Fixed: error in french l18n file for ui.datepicker ([#3610](https://bugs.jqueryui.com/ticket/3610))
+* Fixed: Setting a date pops up the datepicker window ([#3619](https://bugs.jqueryui.com/ticket/3619))
+* Fixed: invalid increment operand in Firefox ([#3434](https://bugs.jqueryui.com/ticket/3434))
+* Fixed: daylight saving issue ([#3537](https://bugs.jqueryui.com/ticket/3537),[3512](https://bugs.jqueryui.com/ticket/3512),[3566](https://bugs.jqueryui.com/ticket/3566),[3395](https://bugs.jqueryui.com/ticket/3395),[3560](https://bugs.jqueryui.com/ticket/3560),[3597](https://bugs.jqueryui.com/ticket/3597))
+* Fixed: Only move focus if the datepicker is already showing for that input field ([#3258](https://bugs.jqueryui.com/ticket/3258))
+* Fixed: ui.datepicker range selection causing previous month image to be replaced by text ([#3307](https://bugs.jqueryui.com/ticket/3307))
+* Fixed: Update altField on load for inline datepicker ([#3547](https://bugs.jqueryui.com/ticket/3547))
+* Fixed: The year is now defaulted to the current one if not set in the input field ([#3526](https://bugs.jqueryui.com/ticket/3526))
+* Fixed: IDs are now sequential (Fixes [3338](https://bugs.jqueryui.com/ticket/3338))
+* Fixed: Datepicker breaks with form elements whose ids contain square brackets ([#3108](https://bugs.jqueryui.com/ticket/3108))
+* Datepicker div now appends to the document after the datepicker(); function is called instead of automatically on include
+* Fixed: Keystrokes not recognized by datepicker are passed onto field ([#3082](https://bugs.jqueryui.com/ticket/3082))
+* Fixed: Inline datepicker doesn't initialize from input field ([#3080](https://bugs.jqueryui.com/ticket/3080))
+* Fixed: Control order of month and year select boxes using showMonthAfterYear setting ([#3084](https://bugs.jqueryui.com/ticket/3084))
+* Fixed: Handle IDs with embedded meta-characters ([#3108](https://bugs.jqueryui.com/ticket/3108), [3113](https://bugs.jqueryui.com/ticket/3113))
+* Fixed: date duplications (again) ([#3088](https://bugs.jqueryui.com/ticket/3088), [3105](https://bugs.jqueryui.com/ticket/3105), [3281](https://bugs.jqueryui.com/ticket/3281), [3339](https://bugs.jqueryui.com/ticket/3339))
+* Fixed: Display simultaneously past and current month in datepicker using showCurrentAtPos setting ([#2818](https://bugs.jqueryui.com/ticket/2818))
+* Fixed: Corrected assignment/comparison in \_changeDatepicker ([#3165](https://bugs.jqueryui.com/ticket/3165))
+* Fixed: Corrected automatic ID assignment ([#3180](https://bugs.jqueryui.com/ticket/3180), [3235](https://bugs.jqueryui.com/ticket/3235), [3338](https://bugs.jqueryui.com/ticket/3338))
+* Fixed: Handle NaN in relative date calculations ([#3191](https://bugs.jqueryui.com/ticket/3191))
+* Fixed: Handle errors on getting instance data ([#3238](https://bugs.jqueryui.com/ticket/3238))
+* Fixed: Alternate field is now updated when using "setDate" ([#3267](https://bugs.jqueryui.com/ticket/3267))
+* Fixed: Made callback signatures consistent: onSelect and onClose return the text form of the date(s), while onChangeMonthYear returns year and month separately ([#3183](https://bugs.jqueryui.com/ticket/3183))
+* Fixed: position problem in IE 6/7 ([#3232](https://bugs.jqueryui.com/ticket/3232))
+* Fixed: displayed when using "setDate" and "change" method ([#3266](https://bugs.jqueryui.com/ticket/3266))
+
+### Dialog
+
+* Added an id to the title span (needed for ARIA support) ([#3451](https://bugs.jqueryui.com/ticket/3451))
+* Added isOpen method
+* Added closeText option (default 'close') ([#3638](https://bugs.jqueryui.com/ticket/3638))
+* Added role of button to close link ([#3637](https://bugs.jqueryui.com/ticket/3637))
+* Added beforeclose callback for dialogs (can prevent closing the dialog by returning false) ([#3087](https://bugs.jqueryui.com/ticket/3087))
+* Removed autoResize option (now always auto resizes) ([#3117](https://bugs.jqueryui.com/ticket/3117))
+* Complete written technical specification at [https://wiki.jqueryui.com/Dialog](https://wiki.jqueryui.com/Dialog) ([#3745](https://bugs.jqueryui.com/ticket/3745))
+* Fixed: Dialog z-index adjusted incorrectly on mousedown ([#4214](https://bugs.jqueryui.com/ticket/4214))
+* Fixed: Dialog close event occurs too early with hide effect ([#4207](https://bugs.jqueryui.com/ticket/4207))
+* Fixed: Major performance improvements ([#2807](https://bugs.jqueryui.com/ticket/2807))
+* Fixed: Don't set focus to elements in the titlebar on open (fixes [4126](https://bugs.jqueryui.com/ticket/4126))
+* Fixed: Can't change dialogClass option after init ([#4086](https://bugs.jqueryui.com/ticket/4086))
+* Fixed: content jumps up when dialog resized in IE6 ([#3982](https://bugs.jqueryui.com/ticket/3982))
+* Fixed: undefined class being added to ui-dialog element ([#4050](https://bugs.jqueryui.com/ticket/4050))
+* Fixed: Pass related events to all triggered events (fixes [3718](https://bugs.jqueryui.com/ticket/3718))
+* Fixed: Don't allow minHeight to be negative (fixes [3901](https://bugs.jqueryui.com/ticket/3901))
+* Fixed: Don't add the button pane div if there are no buttons (fixes [3688](https://bugs.jqueryui.com/ticket/3688))
+* Fixed: Setting default opacity to null (preserve current opacity) (fixes [3808](https://bugs.jqueryui.com/ticket/3808))
+* Fixed: Ensure the content is visible during init ([#3813](https://bugs.jqueryui.com/ticket/3813))
+* Fixed: Wrong height on every other open ([#3756](https://bugs.jqueryui.com/ticket/3756))
+* Fixed: The ui hash in callbacks should not contain the plugin element or the options hash ([#3753](https://bugs.jqueryui.com/ticket/3753))
+* Fixed: Contain dialogs within the document when dragging (fixes [3731](https://bugs.jqueryui.com/ticket/3731))
+* Fixed: Set default height to auto and default minHeight to 150. Now applying minHeight to the content div instead of only using it for resizing (related to [3713](https://bugs.jqueryui.com/ticket/3713))
+* Fixed: Dialog is created with wrong height/width when a string is passed ([#3667](https://bugs.jqueryui.com/ticket/3667))
+* Fixed: User outerWidth/Height for positioning (fixed [3221](https://bugs.jqueryui.com/ticket/3221))
+* Fixed: Proper positioning in Opera ([#3564](https://bugs.jqueryui.com/ticket/3564))
+* Fixed: Content may be cutted at the right side because of padding of content ([#3038](https://bugs.jqueryui.com/ticket/3038))
+* Fixed: Resizing bug in IE6 ([#3095](https://bugs.jqueryui.com/ticket/3095))
+* Fixed: Dialog button pane was covered up by main content ([#3094](https://bugs.jqueryui.com/ticket/3094))
+* Fixed: Updated markup to new UI CSS Framework specs ([#3648](https://bugs.jqueryui.com/ticket/3648))
+* Fixed: Dialog fails to init on removed elements ([#3664](https://bugs.jqueryui.com/ticket/3664))
+* Fixed: Non-draggable dialogs shouldn't instantiate draggables ([#3389](https://bugs.jqueryui.com/ticket/3389))
+* Fixed: Non-resizable dialogs shouldn't instantiate resizables ([#3220](https://bugs.jqueryui.com/ticket/3220))
+* Fixed: Prevent tabbing out of modal dialogs ([#3123](https://bugs.jqueryui.com/ticket/3123))
+* Fixed: Remove title attribute from dialog elements on init ([#3259](https://bugs.jqueryui.com/ticket/3259))
+* Fixed: Prevent exposure of internal methods ([#3198](https://bugs.jqueryui.com/ticket/3198))
+* Fixed: Cannot select scrollbars inside dialog in Opera 9.51 ([#3193](https://bugs.jqueryui.com/ticket/3193))
+* Fixed: Focus not going to modal dialog ([#3327](https://bugs.jqueryui.com/ticket/3327))
+* Fixed: use new trigger() method.
+* Fixed: problem with auto margins in IE ([#3086](https://bugs.jqueryui.com/ticket/3086))
+* Fixed: force dialog titlebars to have a full line height when no title is provided ([#3013](https://bugs.jqueryui.com/ticket/3013))
+* Fixed: If options.title is empty on init, set it to the title attribute of the dialog element
+* Fixed: sizing of overlays in Opera 9.51 ([#3076](https://bugs.jqueryui.com/ticket/3076))
+* Fixed: Ctrl-Select should use Cmd key on Mac ([#3169](https://bugs.jqueryui.com/ticket/3169))
+* Fixed: When opening a dialog, give focus to the first tabbable element inside the dialog ([#3327](https://bugs.jqueryui.com/ticket/3327))
+* Fixed: Don't allow closing modal dialogs on escape if closeOnEscape is set to false ([#3253](https://bugs.jqueryui.com/ticket/3253))
+
+### Slider
+
+* Fixed: keyboard interaction to match dhtml style guide ([#3081](https://bugs.jqueryui.com/ticket/3081))
+* Fixed: prevent bubbling (and default key behaviour) for slider based key events ([#3342](https://bugs.jqueryui.com/ticket/3342))
+* Fixed: Slider Gallery doesn't behave the same on ui.jquery.com as it does on jqueryfordesigners.com ([#3064](https://bugs.jqueryui.com/ticket/3064))
+* Fixed: Small dot appears in upper left corner of the slider in Firefox 3 ([#3468](https://bugs.jqueryui.com/ticket/3468))
+* Fixed: Callbacks in Slider ([#3465](https://bugs.jqueryui.com/ticket/3465))
+* Fixed: prevent exposure of internal methods ([#3206](https://bugs.jqueryui.com/ticket/3206))
+* Fixed: keyboard event not swalled, causes scrolling ([#3342](https://bugs.jqueryui.com/ticket/3342))
+* Fixed: fire beforeunload event ([#3228](https://bugs.jqueryui.com/ticket/3228))
+* Fixed: steps option ([#3489](https://bugs.jqueryui.com/ticket/3489))
+* Fixed: Update markup to new UI CSS Framework specs ([#3650](https://bugs.jqueryui.com/ticket/3650))
+* Fixed: range handles should not be able to cross ([#3716](https://bugs.jqueryui.com/ticket/3716))
+* Fixed: Incorrect event types for callbacks ([#3717](https://bugs.jqueryui.com/ticket/3717))
+* Fixed: 'startValue' option or 'start' option of handler of ui slider has no any effect under Safari ([#3703](https://bugs.jqueryui.com/ticket/3703))
+* Fixed: JavaScript Error when clicking on a Disabled Slider in IE7 ([#3668](https://bugs.jqueryui.com/ticket/3668))
+* Fixed: click and drag mode error in slider.js ([#3242](https://bugs.jqueryui.com/ticket/3242))
+* Fixed: Slider handle runs over right slider track edge by 3px ([#3618](https://bugs.jqueryui.com/ticket/3618))
+* Fixed: "slide" callback not executing with jQuery 1.3b2 ([#3783](https://bugs.jqueryui.com/ticket/3783))
+* Fixed: Vertical Range Slider Demo Broken ([#3848](https://bugs.jqueryui.com/ticket/3848))
+* Fixed: missing ui.handle property in options ([#3766](https://bugs.jqueryui.com/ticket/3766))
+* Fixed: misbehaves when going from min to max or vice versa ([#3948](https://bugs.jqueryui.com/ticket/3948))
+* Fixed: exceeds min and max limits when using keyboard ([#3737](https://bugs.jqueryui.com/ticket/3737))
+* Fixed: animation change event returns wrong value if you move mouse ([#3643](https://bugs.jqueryui.com/ticket/3643))
+* Fixed: support floating values, set number of decimals ([#3282](https://bugs.jqueryui.com/ticket/3282))
+* Fixed: improvement for \_trigger-Method and more consistency in slider events ([#3528](https://bugs.jqueryui.com/ticket/3528))
+* Fixed: Vertical slider stops working when set to minimum ([#4016](https://bugs.jqueryui.com/ticket/4016))
+* Fixed: Second handle gets stuck when using two handles ([#3736](https://bugs.jqueryui.com/ticket/3736))
+* Fixed: Multiple Slider Focus Issues ([#3804](https://bugs.jqueryui.com/ticket/3804))
+* Fixed: vertical slider handle jumps up when you click on it ([#4062](https://bugs.jqueryui.com/ticket/4062))
+* Fixed: JS error when slider is on minimum and mouse up is not on handle ([#4106](https://bugs.jqueryui.com/ticket/4106))
+* Fixed: IE6 error by min==max ([#4155](https://bugs.jqueryui.com/ticket/4155))
+* Fixed: animation for single handles broken ([#4167](https://bugs.jqueryui.com/ticket/4167))
+* Fixed: slider and change callback with range: true ([#4005](https://bugs.jqueryui.com/ticket/4005))
+* Fixed: Value should always be constrained to valid step values ([#4124](https://bugs.jqueryui.com/ticket/4124))
+* Fixed: Remove orientation "auto" option ([#4174](https://bugs.jqueryui.com/ticket/4174))
+* Fixed: min/max classes aren't being added to range div ([#4182](https://bugs.jqueryui.com/ticket/4182))
+* Fixed: range styling messed up in IE6 ([#3997](https://bugs.jqueryui.com/ticket/3997))
+* Fixed: Slider should respect the click offset from the handle ([#3972](https://bugs.jqueryui.com/ticket/3972))
+* Fixed: If animation is set to true, the range of a slider with 2 handles will not work properly ([#4194](https://bugs.jqueryui.com/ticket/4194))
+
+### Tabs
+
+* Added: support for tab hover class ([#3661](https://bugs.jqueryui.com/ticket/3661))
+* Added: add ability to define cookie name for UI Tabs ([#2393](https://bugs.jqueryui.com/ticket/2393))
+* Rename deselctable option to collapsible ([#4029](https://bugs.jqueryui.com/ticket/4029))
+* Remove options in tabs for specifying classes ([#3691](https://bugs.jqueryui.com/ticket/3691))
+* Fixed: use new trigger() method.
+* Fixed: cookie name generation which wasn't based on DOM element any longer after change in this.element, update cookie after init/add/destroy ([#3015](https://bugs.jqueryui.com/ticket/3015))
+* Fixed: Update selected property after add/remove. ([#3065](https://bugs.jqueryui.com/ticket/3065))
+* Fixed: Themeroller theme does not work with ui.tabs ([#3021](https://bugs.jqueryui.com/ticket/3021))
+* Fixed: cookie value is not checked on init + selected tab is not stored in cookie on init ([#3015](https://bugs.jqueryui.com/ticket/3015))
+* Fixed: tabs relies on theme CSS ([#2609](https://bugs.jqueryui.com/ticket/2609))
+* Fixed: Reset styles more carefully after animation ([#3122](https://bugs.jqueryui.com/ticket/3122))
+* Fixed: breaks when tab links contain colons ([#2715](https://bugs.jqueryui.com/ticket/2715))
+* Fixed: UI Tabs ThemeRoller - gap between tabs and tab panel under ie7 ([#3447](https://bugs.jqueryui.com/ticket/3447))
+* Fixed: Selected index becomes off by one when removing tabs ([#3065](https://bugs.jqueryui.com/ticket/3065))
+* Fixed: prevent exposure of internal methods ([#3208](https://bugs.jqueryui.com/ticket/3208))
+* Fixed: After removal $tabs.data('selected.tabs') contains wrong information ([#3490](https://bugs.jqueryui.com/ticket/3490))
+* Fixed: Update markup to new UI CSS Framework specs ([#3651](https://bugs.jqueryui.com/ticket/3651))
+* Fixed: Add method doesn't work ([#3734](https://bugs.jqueryui.com/ticket/3734))
+* Fixed: Can't initialize an empty ul tabset ([#3683](https://bugs.jqueryui.com/ticket/3683))
+* Fixed: if the first 'li' refers to remote file. The content coming from the remove file is append outside of the tab (mytabs) div element. ([#3795](https://bugs.jqueryui.com/ticket/3795))
+* Fixed: Ajax Tabs Demo Bug ([#3852](https://bugs.jqueryui.com/ticket/3852))
+* Fixed: destroy method: needs to be adapted to new markup ([#3798](https://bugs.jqueryui.com/ticket/3798))
+* Fixed: mouseover option: conflicts with state handling ([#3799](https://bugs.jqueryui.com/ticket/3799))
+* Fixed: tabs() causes error when no UL available ([#3855](https://bugs.jqueryui.com/ticket/3855))
+* Fixed: ajax tabs fail in internet explorer when url has a fragment ([#3627](https://bugs.jqueryui.com/ticket/3627))
+* Fixed: Animations are broken ([#3872](https://bugs.jqueryui.com/ticket/3872))
+* Fixed: Adding existing div as a new panel should have ui-tabs-hide class ([#3875](https://bugs.jqueryui.com/ticket/3875))
+* Fixed: ajax ui.tabs and rotation causes error ([#2651](https://bugs.jqueryui.com/ticket/2651))
+* Fixed: Specifications needed ([#3750](https://bugs.jqueryui.com/ticket/3750))
+* Fixed: Cookie is not updated with all tabs unselected (deselectable: true) ([#3936](https://bugs.jqueryui.com/ticket/3936))
+* Fixed: Link pseudo classes overwrite Themeroller styles in IE6 ([#4044](https://bugs.jqueryui.com/ticket/4044))
+* Fixed: Tab hover class doesn't work for dynamically added tabs ([#4097](https://bugs.jqueryui.com/ticket/4097))
+* Fixed: Ajax tabs: spinner option issues ([#4109](https://bugs.jqueryui.com/ticket/4109))
+* Fixed: In-page tab has to cancel a loading Ajax tab ([#3929](https://bugs.jqueryui.com/ticket/3929))
+* Fixed: Inconsistent href in IE/FF for newly added tabs: "[http://domain.com/\#name](http://domain.com/#name)" vs "\#name" ([#4134](https://bugs.jqueryui.com/ticket/4134))
+* Fixed: Selected tab isn't read from cookie in case page url contains fragment identifier ([#4210](https://bugs.jqueryui.com/ticket/4210))
+* Fixed: Tabs should NOT use togleClass() for .ui-state-hover ([#4212](https://bugs.jqueryui.com/ticket/4212))
+* Fixed: Tab hrefs may be converted to full URLs in IE, then misinterpreted as ajax tabs ([#4033](https://bugs.jqueryui.com/ticket/4033))
+* Fixed: Panels retain opacity if animation is stopped by choosing another tab ([#4060](https://bugs.jqueryui.com/ticket/4060))
+* Fixed: Tabs in Dialog: quirky tab positioning in IE ([#3470](https://bugs.jqueryui.com/ticket/3470))
+
+## Effects
+
+### Core
+
+* Fixed: Effects methods don't allow callback as the second parameter ([#4181](https://bugs.jqueryui.com/ticket/4181))
+* Fixed: Effects ignored speed in some situations ([#4057](https://bugs.jqueryui.com/ticket/4057))
+* Fixed: Effects problems with non-numeric duration ([#3912](https://bugs.jqueryui.com/ticket/3912))
+* Fixed: toggleClass override breaks new jQuery 1.3 toggleClass state parameter ([#3857](https://bugs.jqueryui.com/ticket/3857))
+* Fixed: Easing doesn't work on class animations (single-line fix) ([#3674](https://bugs.jqueryui.com/ticket/3674))
+
+### Individual effects
+
+* Added: size: documentation of size ([#3042](https://bugs.jqueryui.com/ticket/3042))
+* Fixed: transfer: throws 'Invalid Argument' in IE7 without CSS border property ([#4153](https://bugs.jqueryui.com/ticket/4153))
+* Fixed: effect: Classes added should have 'ui-' prefix ([#3704](https://bugs.jqueryui.com/ticket/3704))
+
diff --git a/page/changelog/1.8.1.md b/page/changelog/1.8.1.md
index b9431dd..86efe95 100644
--- a/page/changelog/1.8.1.md
+++ b/page/changelog/1.8.1.md
@@ -2,70 +2,72 @@
"title": "jQuery UI 1.8.1 Changelog"
}
+Released on April 21, 2010
+
## Build
-* Moved to using Google Closure Compiler from YUI Compressor. ([062f034](http://github.com/jquery/jquery-ui/commit/062f0346e6f3c72f7e61f486eaa6d6b26fed81b8))
+* Moved to using Google Closure Compiler from YUI Compressor. ([062f034](https://github.com/jquery/jquery-ui/commit/062f0346e6f3c72f7e61f486eaa6d6b26fed81b8))
## Core & Utilities
### UI Core
-* Added: $.ui.keyCode.ALT to complete list of metakeys, used in autocomplete ([40e3637](http://github.com/jquery/jquery-ui/commit/40e36371173ba2304623fac3ab81ee2d63187649))
+* Added: $.ui.keyCode.ALT to complete list of metakeys, used in autocomplete ([40e3637](https://github.com/jquery/jquery-ui/commit/40e36371173ba2304623fac3ab81ee2d63187649))
### Widget Factory
-* Fixed: $.Widget uses [namespace]-state-disabled, must be ui-state-disabled to be useful ([#5443](http://bugs.jqueryui.com/ticket/5443))
+* Fixed: $.Widget uses [namespace]-state-disabled, must be ui-state-disabled to be useful ([#5443](https://bugs.jqueryui.com/ticket/5443))
### Position
-* Fixed: ui.position generates different position in static context ([#5280](http://bugs.jqueryui.com/ticket/5280))
+* Fixed: ui.position generates different position in static context ([#5280](https://bugs.jqueryui.com/ticket/5280))
## Interactions
-* Added: shopping cart demo for integration of accordion, draggable, droppable and sortable ([c9a877e](http://github.com/jquery/jquery-ui/commit/c9a877e81a0138c933c0bc6171e6948949c5c2c9))
+* Added: shopping cart demo for integration of accordion, draggable, droppable and sortable ([c9a877e](https://github.com/jquery/jquery-ui/commit/c9a877e81a0138c933c0bc6171e6948949c5c2c9))
### Draggable
-* Fixed: Draggable/Stackable Demo broken and docs need to be updated ([36cb3f7](http://github.com/jquery/jquery-ui/commit/36cb3f7da35ed18c726f0345d5156fb136065dd1))
+* Fixed: Draggable/Stackable Demo broken and docs need to be updated ([36cb3f7](https://github.com/jquery/jquery-ui/commit/36cb3f7da35ed18c726f0345d5156fb136065dd1))
### Sortable
-* Fixed: disabled should not have the ui-state-disabled class ([#5501](http://bugs.jqueryui.com/ticket/5501))
+* Fixed: disabled should not have the ui-state-disabled class ([#5501](https://bugs.jqueryui.com/ticket/5501))
## Widgets
### Autocomplete
-* Removed: width:100%; from menu-item styles - was there for icon-support, which was dropped. ([e7c2eb4](http://github.com/jquery/jquery-ui/commit/e7c2eb42d08c5ee7b444c3c0274758df46202dfb))
-* Added: demos for multiple values ([5c55462](http://github.com/jquery/jquery-ui/commit/5c55462a9024351f3c6084ea2ec862a19cba5b67), [dbc9add](http://github.com/jquery/jquery-ui/commit/dbc9addfae0c9a2aee2d4a1833b2b1d3ba83f8de))
-* Fixed: Don't trigger a search when the left or right arrow keys are used. ([#5289](http://bugs.jqueryui.com/ticket/5289))
-* Fixed: menu items have no default-state-class, need to override font-weight ([#5491](http://bugs.jqueryui.com/ticket/5491))
-* Fixed: Change event doesn't provide selected item ([#5490](http://bugs.jqueryui.com/ticket/5490))
-* Fixed: Refactor menu rendering for more customizing ([#5188](http://bugs.jqueryui.com/ticket/5188))
-* Fixed: Add option to allow form submission when option is chosen ([#5343](http://bugs.jqueryui.com/ticket/5343))
-* Fixed: Menu plugin fires select when border is clicked ([#5376](http://bugs.jqueryui.com/ticket/5376))
-* Fixed: combobox demo look weird in opera 10.50 ([#5338](http://bugs.jqueryui.com/ticket/5338))
-* Fixed: combobox demo doesn't remove invalid values ([#5453](http://bugs.jqueryui.com/ticket/5453))
-* Fixed: combobox demo should use $.ui.autocomplete.escapeRegex ([#5436](http://bugs.jqueryui.com/ticket/5436))
+* Removed: width:100%; from menu-item styles - was there for icon-support, which was dropped. ([e7c2eb4](https://github.com/jquery/jquery-ui/commit/e7c2eb42d08c5ee7b444c3c0274758df46202dfb))
+* Added: demos for multiple values ([5c55462](https://github.com/jquery/jquery-ui/commit/5c55462a9024351f3c6084ea2ec862a19cba5b67), [dbc9add](https://github.com/jquery/jquery-ui/commit/dbc9addfae0c9a2aee2d4a1833b2b1d3ba83f8de))
+* Fixed: Don't trigger a search when the left or right arrow keys are used. ([#5289](https://bugs.jqueryui.com/ticket/5289))
+* Fixed: menu items have no default-state-class, need to override font-weight ([#5491](https://bugs.jqueryui.com/ticket/5491))
+* Fixed: Change event doesn't provide selected item ([#5490](https://bugs.jqueryui.com/ticket/5490))
+* Fixed: Refactor menu rendering for more customizing ([#5188](https://bugs.jqueryui.com/ticket/5188))
+* Fixed: Add option to allow form submission when option is chosen ([#5343](https://bugs.jqueryui.com/ticket/5343))
+* Fixed: Menu plugin fires select when border is clicked ([#5376](https://bugs.jqueryui.com/ticket/5376))
+* Fixed: combobox demo look weird in opera 10.50 ([#5338](https://bugs.jqueryui.com/ticket/5338))
+* Fixed: combobox demo doesn't remove invalid values ([#5453](https://bugs.jqueryui.com/ticket/5453))
+* Fixed: combobox demo should use $.ui.autocomplete.escapeRegex ([#5436](https://bugs.jqueryui.com/ticket/5436))
### Datepicker
-* Fixed: Spelling of Poniedziałek ([#5487](http://bugs.jqueryui.com/ticket/5487))
-* Fixed: Encoding error in Swiss-French (fr-CH) file ([#5532](http://bugs.jqueryui.com/ticket/5532))
+* Fixed: Spelling of Poniedziałek ([#5487](https://bugs.jqueryui.com/ticket/5487))
+* Fixed: Encoding error in Swiss-French (fr-CH) file ([#5532](https://bugs.jqueryui.com/ticket/5532))
### Dialog
-* Fixed: Dialog explicit height doesn't match given value from set option ([#5392](http://bugs.jqueryui.com/ticket/5392))
+* Fixed: Dialog explicit height doesn't match given value from set option ([#5392](https://bugs.jqueryui.com/ticket/5392))
### Slider
-* Fixed: value not aligned to step when set programatically ([#5471](http://bugs.jqueryui.com/ticket/5471))
-* Fixed: event start not cancelable ([#5472](http://bugs.jqueryui.com/ticket/5472))
+* Fixed: value not aligned to step when set programatically ([#5471](https://bugs.jqueryui.com/ticket/5471))
+* Fixed: event start not cancelable ([#5472](https://bugs.jqueryui.com/ticket/5472))
### Tabs
-* Added: demo using cookie option for persistence ([af2296b](http://github.com/jquery/jquery-ui/commit/af2296b3b0bcdf1a0bd1613fb344915c163fd157))
-* Fixed: ui-tabs-panel border override should be border-width, not border ([#5475](http://bugs.jqueryui.com/ticket/5475))
+* Added: demo using cookie option for persistence ([af2296b](https://github.com/jquery/jquery-ui/commit/af2296b3b0bcdf1a0bd1613fb344915c163fd157))
+* Fixed: ui-tabs-panel border override should be border-width, not border ([#5475](https://bugs.jqueryui.com/ticket/5475))
## CSS Framework
-* Fixed: Anchor font color inside ui widget header not theme color ([#5386](http://bugs.jqueryui.com/ticket/5386))
+* Fixed: Anchor font color inside ui widget header not theme color ([#5386](https://bugs.jqueryui.com/ticket/5386))
diff --git a/page/changelog/1.8.10.md b/page/changelog/1.8.10.md
index 0a8251e..b79c03f 100644
--- a/page/changelog/1.8.10.md
+++ b/page/changelog/1.8.10.md
@@ -2,42 +2,44 @@
"title": "jQuery UI 1.8.10 Changelog"
}
+Released on February 22, 2011
+
## Interactions
### Resizable
-* Fixed: Element doesn't change to size that helper shows when snapping to grid ([#6926](http://bugs.jqueryui.com/ticket/6926), [d6fa44a](http://github.com/jquery/jquery-ui/commit/d6fa44a0b4c5bf08f31040f9008e8fb54b36db02))
+* Fixed: Element doesn't change to size that helper shows when snapping to grid ([#6926](https://bugs.jqueryui.com/ticket/6926), [d6fa44a](https://github.com/jquery/jquery-ui/commit/d6fa44a0b4c5bf08f31040f9008e8fb54b36db02))
## Widgets
### Autocomplete
-* Fixed: Handling of race conditions when using jQuery 1.3.2. ([#6904](http://bugs.jqueryui.com/ticket/6904), [6b9b513](http://github.com/jquery/jquery-ui/commit/6b9b513e77deebe33bf8c81268a587c1f022556f))
+* Fixed: Handling of race conditions when using jQuery 1.3.2. ([#6904](https://bugs.jqueryui.com/ticket/6904), [6b9b513](https://github.com/jquery/jquery-ui/commit/6b9b513e77deebe33bf8c81268a587c1f022556f))
### Button
-* Fixed: Batched class changes to improve performance. ([#6934](http://bugs.jqueryui.com/ticket/6934), [9191ee3](http://github.com/jquery/jquery-ui/commit/9191ee3cd806c0e93a2cdf37125ff7b70e738e6b))
+* Fixed: Batched class changes to improve performance. ([#6934](https://bugs.jqueryui.com/ticket/6934), [9191ee3](https://github.com/jquery/jquery-ui/commit/9191ee3cd806c0e93a2cdf37125ff7b70e738e6b))
### Datepicker
-* Fixed: Incorrect semi-colon that should have been a comma. ([#6916](http://bugs.jqueryui.com/ticket/6916), [d4e715f](http://github.com/jquery/jquery-ui/commit/d4e715f4bc82f7020bc26808abfd5e1b9a174d7f))
-* Fixed: Account for daylight saving when calculating number of days in a month. ([#6978](http://bugs.jqueryui.com/ticket/6978), [9162679](http://github.com/jquery/jquery-ui/commit/9162679e1589e6883cee0ec462bce5e20ef47ec7))
-* Fixed: Display Year before Month in Hungarian i18n. ([#7019](http://bugs.jqueryui.com/ticket/7019), [971566d](http://github.com/jquery/jquery-ui/commit/971566d258af5ed5762e70ba7aa132f25121aed7))
-* Fixed: Improved translation of Norwegian names for days and months. ([#6986](http://bugs.jqueryui.com/ticket/6986), [685ac7a](http://github.com/jquery/jquery-ui/commit/685ac7a042536b005ab1cf8a59464d66bcc32cde))
-* Fixed: Datepicker does not fire change event in IE8. ([#6694](http://bugs.jqueryui.com/ticket/6694), [d14366a](http://github.com/jquery/jquery-ui/commit/d14366abcea59b4fb6d0fb1ce48a6ad196ddff3a))
-* Fixed: Datepicker creates extra dom element with empty object. ([#6976](http://bugs.jqueryui.com/ticket/6976), [ab7a5b4](http://github.com/jquery/jquery-ui/commit/ab7a5b441aab8722429f8333bf8524fea4b00374))
-* Fixed: Properly handle datepickers attached to inputs that are hidden using CSS. ([#6988](http://bugs.jqueryui.com/ticket/6988), [cf9dac6](http://github.com/jquery/jquery-ui/commit/cf9dac6c1704150d40191573767e5bfa58dcd9d2))
+* Fixed: Incorrect semi-colon that should have been a comma. ([#6916](https://bugs.jqueryui.com/ticket/6916), [d4e715f](https://github.com/jquery/jquery-ui/commit/d4e715f4bc82f7020bc26808abfd5e1b9a174d7f))
+* Fixed: Account for daylight saving when calculating number of days in a month. ([#6978](https://bugs.jqueryui.com/ticket/6978), [9162679](https://github.com/jquery/jquery-ui/commit/9162679e1589e6883cee0ec462bce5e20ef47ec7))
+* Fixed: Display Year before Month in Hungarian i18n. ([#7019](https://bugs.jqueryui.com/ticket/7019), [971566d](https://github.com/jquery/jquery-ui/commit/971566d258af5ed5762e70ba7aa132f25121aed7))
+* Fixed: Improved translation of Norwegian names for days and months. ([#6986](https://bugs.jqueryui.com/ticket/6986), [685ac7a](https://github.com/jquery/jquery-ui/commit/685ac7a042536b005ab1cf8a59464d66bcc32cde))
+* Fixed: Datepicker does not fire change event in IE8. ([#6694](https://bugs.jqueryui.com/ticket/6694), [d14366a](https://github.com/jquery/jquery-ui/commit/d14366abcea59b4fb6d0fb1ce48a6ad196ddff3a))
+* Fixed: Datepicker creates extra dom element with empty object. ([#6976](https://bugs.jqueryui.com/ticket/6976), [ab7a5b4](https://github.com/jquery/jquery-ui/commit/ab7a5b441aab8722429f8333bf8524fea4b00374))
+* Fixed: Properly handle datepickers attached to inputs that are hidden using CSS. ([#6988](https://bugs.jqueryui.com/ticket/6988), [cf9dac6](https://github.com/jquery/jquery-ui/commit/cf9dac6c1704150d40191573767e5bfa58dcd9d2))
### Dialog
-* Fixed: Documentation does not list position as a dependency. ([#6964](http://bugs.jqueryui.com/ticket/6964))
+* Fixed: Documentation does not list position as a dependency. ([#6964](https://bugs.jqueryui.com/ticket/6964))
## Effects
### Individual effects
-* Fixed: Docs say that in Effect/Size the origin argument default is middle,center but it seems to be top,left. ([#6961](http://bugs.jqueryui.com/ticket/6961))
+* Fixed: Docs say that in Effect/Size the origin argument default is middle,center but it seems to be top,left. ([#6961](https://bugs.jqueryui.com/ticket/6961))
## Website
-* Fixed: Text in "Build custom download" button wraps in Linux browsers. ([#6903](http://bugs.jqueryui.com/ticket/6903))
+* Fixed: Text in "Build custom download" button wraps in Linux browsers. ([#6903](https://bugs.jqueryui.com/ticket/6903))
diff --git a/page/changelog/1.8.11.md b/page/changelog/1.8.11.md
index 6596054..08e53ae 100644
--- a/page/changelog/1.8.11.md
+++ b/page/changelog/1.8.11.md
@@ -2,51 +2,53 @@
"title": "jQuery UI 1.8.11 Changelog"
}
+Released on March 5, 2011
+
## Core & Utilities
### Mouse
-* Fixed: click event suppressed after drag in Gecko. ([#6946](http://bugs.jqueryui.com/ticket/6946), [15aec63](http://github.com/jquery/jquery-ui/commit/15aec63edc10bffcce638ff5244b5faba1ef51fd))
+* Fixed: click event suppressed after drag in Gecko. ([#6946](https://bugs.jqueryui.com/ticket/6946), [15aec63](https://github.com/jquery/jquery-ui/commit/15aec63edc10bffcce638ff5244b5faba1ef51fd))
## Interactions
### Draggable
-* Fixed: connectToSortable misbehaves if the position of the sortable changes after the sortable and draggable have been initialised as _refreshItems no longer updating container cache. ([#5563](http://bugs.jqueryui.com/ticket/5563), [6fcdff1](http://github.com/jquery/jquery-ui/commit/6fcdff13fa4a14dd5427f71f83727b87520349fb))
-* Fixed: Draggable li with connectToSortable option cannot be dropped on the connected sortable ol. ([#5811](http://bugs.jqueryui.com/ticket/5811), [6fcdff1](http://github.com/jquery/jquery-ui/commit/6fcdff13fa4a14dd5427f71f83727b87520349fb))
-* Fixed: Draggable with parent containment and margin. ([#7084](http://bugs.jqueryui.com/ticket/7084), [a067dfa](http://github.com/jquery/jquery-ui/commit/a067dfa8a22f9705bd062cfd651feb0bff3e3cf6))
+* Fixed: connectToSortable misbehaves if the position of the sortable changes after the sortable and draggable have been initialised as _refreshItems no longer updating container cache. ([#5563](https://bugs.jqueryui.com/ticket/5563), [6fcdff1](https://github.com/jquery/jquery-ui/commit/6fcdff13fa4a14dd5427f71f83727b87520349fb))
+* Fixed: Draggable li with connectToSortable option cannot be dropped on the connected sortable ol. ([#5811](https://bugs.jqueryui.com/ticket/5811), [6fcdff1](https://github.com/jquery/jquery-ui/commit/6fcdff13fa4a14dd5427f71f83727b87520349fb))
+* Fixed: Draggable with parent containment and margin. ([#7084](https://bugs.jqueryui.com/ticket/7084), [a067dfa](https://github.com/jquery/jquery-ui/commit/a067dfa8a22f9705bd062cfd651feb0bff3e3cf6))
### Droppable
-* Fixed: If activeClass changes the geometry of a droppable, then dnd uses the wrong geometry. ([#7104](http://bugs.jqueryui.com/ticket/7104), [c5b0a86](http://github.com/jquery/jquery-ui/commit/c5b0a8660a57676815901b24be84b3a4bb5a625a))
+* Fixed: If activeClass changes the geometry of a droppable, then dnd uses the wrong geometry. ([#7104](https://bugs.jqueryui.com/ticket/7104), [c5b0a86](https://github.com/jquery/jquery-ui/commit/c5b0a8660a57676815901b24be84b3a4bb5a625a))
### Sortable
-* Fixed: Horizontal sortable not working. ([#6702](http://bugs.jqueryui.com/ticket/6702), [20b0106](http://github.com/jquery/jquery-ui/commit/20b010640e837cad1ad7203e02b28b399e328725))
+* Fixed: Horizontal sortable not working. ([#6702](https://bugs.jqueryui.com/ticket/6702), [20b0106](https://github.com/jquery/jquery-ui/commit/20b010640e837cad1ad7203e02b28b399e328725))
## Widgets
### Accordion
-* Fixed: Set aria-selected. ([#7078](http://bugs.jqueryui.com/ticket/7078), [69ebdf4](http://github.com/jquery/jquery-ui/commit/69ebdf46a596de6e6889f9532fdad6ad841cc765))
+* Fixed: Set aria-selected. ([#7078](https://bugs.jqueryui.com/ticket/7078), [69ebdf4](https://github.com/jquery/jquery-ui/commit/69ebdf46a596de6e6889f9532fdad6ad841cc765))
### Autocomplete
-* Added: Option to automatically highlight the first result. ([#7032](http://bugs.jqueryui.com/ticket/7032), [779df65](http://github.com/jquery/jquery-ui/commit/779df6517d4e1bdd7ed3667537adb67c7443d15f))
-* Fixed: jQuery UI Autocomplete Documentation Does not Show Position As an Option. ([#6933](http://bugs.jqueryui.com/ticket/6933))
+* Added: Option to automatically highlight the first result. ([#7032](https://bugs.jqueryui.com/ticket/7032), [779df65](https://github.com/jquery/jquery-ui/commit/779df6517d4e1bdd7ed3667537adb67c7443d15f))
+* Fixed: jQuery UI Autocomplete Documentation Does not Show Position As an Option. ([#6933](https://bugs.jqueryui.com/ticket/6933))
### Button
-* Fixed: .last() used in ui.button but does not exist in jQuery 1.3. ([#7089](http://bugs.jqueryui.com/ticket/7089), [6bbc431](http://github.com/jquery/jquery-ui/commit/6bbc43113ccd2722919e4149248c3316c143b287))
-* Fixed: Button creation that requires a matching label does not find label in all cases. ([#7092](http://bugs.jqueryui.com/ticket/7092), [2d6ad06](http://github.com/jquery/jquery-ui/commit/2d6ad068733a18e5b69815192e7c0f5614410c56))
-* Fixed: Button class change breaks icon only buttons. ([#7040](http://bugs.jqueryui.com/ticket/7040), [c9bbd9a](http://github.com/jquery/jquery-ui/commit/c9bbd9aa6e8bd23e314f4e284aec3b18c6ad797c))
+* Fixed: .last() used in ui.button but does not exist in jQuery 1.3. ([#7089](https://bugs.jqueryui.com/ticket/7089), [6bbc431](https://github.com/jquery/jquery-ui/commit/6bbc43113ccd2722919e4149248c3316c143b287))
+* Fixed: Button creation that requires a matching label does not find label in all cases. ([#7092](https://bugs.jqueryui.com/ticket/7092), [2d6ad06](https://github.com/jquery/jquery-ui/commit/2d6ad068733a18e5b69815192e7c0f5614410c56))
+* Fixed: Button class change breaks icon only buttons. ([#7040](https://bugs.jqueryui.com/ticket/7040), [c9bbd9a](https://github.com/jquery/jquery-ui/commit/c9bbd9aa6e8bd23e314f4e284aec3b18c6ad797c))
### Datepicker
-* Added: Tajikistan localization. ([#7034](http://bugs.jqueryui.com/ticket/7034), [9851398](http://github.com/jquery/jquery-ui/commit/98513985a27153e54eac5cdccd4643047f88c63a))
-* Fixed: Arabic month name has March in place of May. ([#7055](http://bugs.jqueryui.com/ticket/7055), [bfb5582](http://github.com/jquery/jquery-ui/commit/bfb5582435bf330b1cbae5953bfa6fbe9747bafe))
-* Fixed: Reformat minDate/maxDate when dateFormat changes. ([#7009](http://bugs.jqueryui.com/ticket/7009), [12d38b1](http://github.com/jquery/jquery-ui/commit/12d38b1886b1e4a17d3bd018f028f7fa2b821229))
+* Added: Tajikistan localization. ([#7034](https://bugs.jqueryui.com/ticket/7034), [9851398](https://github.com/jquery/jquery-ui/commit/98513985a27153e54eac5cdccd4643047f88c63a))
+* Fixed: Arabic month name has March in place of May. ([#7055](https://bugs.jqueryui.com/ticket/7055), [bfb5582](https://github.com/jquery/jquery-ui/commit/bfb5582435bf330b1cbae5953bfa6fbe9747bafe))
+* Fixed: Reformat minDate/maxDate when dateFormat changes. ([#7009](https://bugs.jqueryui.com/ticket/7009), [12d38b1](https://github.com/jquery/jquery-ui/commit/12d38b1886b1e4a17d3bd018f028f7fa2b821229))
## Effects
-* Fixed: Easing demo only first click is working. ([#7086](http://bugs.jqueryui.com/ticket/7086), [6bd5c08](http://github.com/jquery/jquery-ui/commit/6bd5c08a1d3f28976ef2fb8c31988cd9c18ee055))
+* Fixed: Easing demo only first click is working. ([#7086](https://bugs.jqueryui.com/ticket/7086), [6bd5c08](https://github.com/jquery/jquery-ui/commit/6bd5c08a1d3f28976ef2fb8c31988cd9c18ee055))
diff --git a/page/changelog/1.8.12.md b/page/changelog/1.8.12.md
index 7c98604..14076a7 100644
--- a/page/changelog/1.8.12.md
+++ b/page/changelog/1.8.12.md
@@ -2,35 +2,37 @@
"title": "jQuery UI 1.8.12 Changelog"
}
+Released on April 13, 2011
+
## Interactions
### Resizable
-* Fixed: Resizable handles fail to work in IE if transparent and content overlaps ([#7233](http://bugs.jqueryui.com/ticket/7233), [371f1a4](http://github.com/jquery/jquery-ui/commit/371f1a4ffd7533aa97353ca04ec7ca27b588c8ae))
+* Fixed: Resizable handles fail to work in IE if transparent and content overlaps ([#7233](https://bugs.jqueryui.com/ticket/7233), [371f1a4](https://github.com/jquery/jquery-ui/commit/371f1a4ffd7533aa97353ca04ec7ca27b588c8ae))
## Widgets
### Autocomplete
-* Fixed: Documentation for autoFocus option ([#7188](http://bugs.jqueryui.com/ticket/7188))
+* Fixed: Documentation for autoFocus option ([#7188](https://bugs.jqueryui.com/ticket/7188))
### Datepicker
-* Fixed: Can't minify with YUI Compressor. ([#7129](http://bugs.jqueryui.com/ticket/7129), [2b4a902](http://github.com/jquery/jquery-ui/commit/2b4a902e00b076661dc99528c88536e9460d415a))
-* Fixed: Datepicker shows only single year in year dropdown if numberOfMonths > 1. ([#7176](http://bugs.jqueryui.com/ticket/7176), [a8fc3da](http://github.com/jquery/jquery-ui/commit/a8fc3da62885c2d7c692e24f8416e320886e1e7b))
+* Fixed: Can't minify with YUI Compressor. ([#7129](https://bugs.jqueryui.com/ticket/7129), [2b4a902](https://github.com/jquery/jquery-ui/commit/2b4a902e00b076661dc99528c88536e9460d415a))
+* Fixed: Datepicker shows only single year in year dropdown if numberOfMonths > 1. ([#7176](https://bugs.jqueryui.com/ticket/7176), [a8fc3da](https://github.com/jquery/jquery-ui/commit/a8fc3da62885c2d7c692e24f8416e320886e1e7b))
### Dialog
-* Fixed: buttons badly handled with JQuery 1.3.2. ([#7226](http://bugs.jqueryui.com/ticket/7226), [e388153](http://github.com/jquery/jquery-ui/commit/e388153049503255810d4a871e06e9930de74c70))
+* Fixed: buttons badly handled with JQuery 1.3.2. ([#7226](https://bugs.jqueryui.com/ticket/7226), [e388153](https://github.com/jquery/jquery-ui/commit/e388153049503255810d4a871e06e9930de74c70))
### Progressbar
-* Fixed: valueDiv should be hidden when value is at 0% ([#7231](http://bugs.jqueryui.com/ticket/7231), [3c13b33](http://github.com/jquery/jquery-ui/commit/3c13b33682655be2a2f1c68b45cd500530997c41))
+* Fixed: valueDiv should be hidden when value is at 0% ([#7231](https://bugs.jqueryui.com/ticket/7231), [3c13b33](https://github.com/jquery/jquery-ui/commit/3c13b33682655be2a2f1c68b45cd500530997c41))
### Slider
-* Fixed: value and values methods as setters aren't chainable. ([#4881](http://bugs.jqueryui.com/ticket/4881), [8310d18](http://github.com/jquery/jquery-ui/commit/8310d185b3a5fc8f433f0736a22298e84ac73f7d))
+* Fixed: value and values methods as setters aren't chainable. ([#4881](https://bugs.jqueryui.com/ticket/4881), [8310d18](https://github.com/jquery/jquery-ui/commit/8310d185b3a5fc8f433f0736a22298e84ac73f7d))
### Tabs
-* Fixed: [Documentation] Explain cookie plugin is included in externals. ([#7172](http://bugs.jqueryui.com/ticket/7172), [c9341a3](http://github.com/jquery/jquery-ui/commit/c9341a3619a56fabe2025761961b39f0d661db0f))
+* Fixed: [Documentation] Explain cookie plugin is included in externals. ([#7172](https://bugs.jqueryui.com/ticket/7172), [c9341a3](https://github.com/jquery/jquery-ui/commit/c9341a3619a56fabe2025761961b39f0d661db0f))
diff --git a/page/changelog/1.8.13.md b/page/changelog/1.8.13.md
index d77ef25..07b8a04 100644
--- a/page/changelog/1.8.13.md
+++ b/page/changelog/1.8.13.md
@@ -2,54 +2,56 @@
"title": "jQuery UI 1.8.13 Changelog"
}
+Released on May 12, 2011
+
## Core & Utilities
### UI Core
-* Fixed: Optimize :tabbable. ([#7257](http://bugs.jqueryui.com/ticket/7257), [96f6b1a](http://github.com/jquery/jquery-ui/commit/96f6b1a7db1e3bc74de66153cf9be80152e04430))
+* Fixed: Optimize :tabbable. ([#7257](https://bugs.jqueryui.com/ticket/7257), [96f6b1a](https://github.com/jquery/jquery-ui/commit/96f6b1a7db1e3bc74de66153cf9be80152e04430))
## Interactions
### Draggable
-* Fixed: Nested draggables problem in IE. ([#4333](http://bugs.jqueryui.com/ticket/4333), [7eda94a](http://github.com/jquery/jquery-ui/commit/7eda94a8c916760de4093df85f58cc694838b52b))
-* Fixed: Containment ignored when scrolling in overflow div. ([#4445](http://bugs.jqueryui.com/ticket/4445), [a6d8fd1](http://github.com/jquery/jquery-ui/commit/a6d8fd1480d1d020a32cad015b43689fdefec352))
-* Fixed: Load iframe shims prior to dragging. ([#7270](http://bugs.jqueryui.com/ticket/7270), [15b9e9d](http://github.com/jquery/jquery-ui/commit/15b9e9d176a7796f1582ba5c0a7d06e4ad7cc8e9))
-* Fixed: Draggable+Sortable Demo duplicates DOM Ids. ([#4564](http://bugs.jqueryui.com/ticket/4564), [201b5ed](http://github.com/jquery/jquery-ui/commit/201b5ed48c0b848a38e8e43c4f187c44e2e16ddd))
+* Fixed: Nested draggables problem in IE. ([#4333](https://bugs.jqueryui.com/ticket/4333), [7eda94a](https://github.com/jquery/jquery-ui/commit/7eda94a8c916760de4093df85f58cc694838b52b))
+* Fixed: Containment ignored when scrolling in overflow div. ([#4445](https://bugs.jqueryui.com/ticket/4445), [a6d8fd1](https://github.com/jquery/jquery-ui/commit/a6d8fd1480d1d020a32cad015b43689fdefec352))
+* Fixed: Load iframe shims prior to dragging. ([#7270](https://bugs.jqueryui.com/ticket/7270), [15b9e9d](https://github.com/jquery/jquery-ui/commit/15b9e9d176a7796f1582ba5c0a7d06e4ad7cc8e9))
+* Fixed: Draggable+Sortable Demo duplicates DOM Ids. ([#4564](https://bugs.jqueryui.com/ticket/4564), [201b5ed](https://github.com/jquery/jquery-ui/commit/201b5ed48c0b848a38e8e43c4f187c44e2e16ddd))
### Resizable
-* Fixed: Resizable autoHide Doesn't Work With Resizable's disable. ([#6948](http://bugs.jqueryui.com/ticket/6948), [38af07e](http://github.com/jquery/jquery-ui/commit/38af07ec4e916bc5fe1268b9878a21801368a78d))
-* Fixed: Chrome dev tools console shows GET data: undefined (undefined). ([#7293](http://bugs.jqueryui.com/ticket/7293), [5e095e9](http://github.com/jquery/jquery-ui/commit/5e095e9f4cf0ebd1593183b1df7413031f1990fb))
+* Fixed: Resizable autoHide Doesn't Work With Resizable's disable. ([#6948](https://bugs.jqueryui.com/ticket/6948), [38af07e](https://github.com/jquery/jquery-ui/commit/38af07ec4e916bc5fe1268b9878a21801368a78d))
+* Fixed: Chrome dev tools console shows GET data: undefined (undefined). ([#7293](https://bugs.jqueryui.com/ticket/7293), [5e095e9](https://github.com/jquery/jquery-ui/commit/5e095e9f4cf0ebd1593183b1df7413031f1990fb))
## Widgets
### Autocomplete
-* Fixed: Scrollable results don't visually update with jQuery 1.6. ([#7354](http://bugs.jqueryui.com/ticket/7354), [36110e0](http://github.com/jquery/jquery-ui/commit/36110e07d471ee0d59d9ac5b5077deda7005d155))
+* Fixed: Scrollable results don't visually update with jQuery 1.6. ([#7354](https://bugs.jqueryui.com/ticket/7354), [36110e0](https://github.com/jquery/jquery-ui/commit/36110e07d471ee0d59d9ac5b5077deda7005d155))
### Button
-* Fixed: Disabled buttons still allow clicks. ([#5945](http://bugs.jqueryui.com/ticket/5945), [4c218ee](http://github.com/jquery/jquery-ui/commit/4c218eeb0a4e6b06d055fcfe0b45ff034ecbfa43))
+* Fixed: Disabled buttons still allow clicks. ([#5945](https://bugs.jqueryui.com/ticket/5945), [4c218ee](https://github.com/jquery/jquery-ui/commit/4c218eeb0a4e6b06d055fcfe0b45ff034ecbfa43))
### Datepicker
-* Fixed: Minimize event binding in Datepicker initialization. ([#7256](http://bugs.jqueryui.com/ticket/7256), [0da176b](http://github.com/jquery/jquery-ui/commit/0da176b0062f497b13eddcf4c8312f960019f4d3))
-* Fixed: Year selector disappears after setting an option in Firefox. ([#7322](http://bugs.jqueryui.com/ticket/7322), [10fa7f9](http://github.com/jquery/jquery-ui/commit/10fa7f9ae9ea68ac11795862a2ccdc813256eb8e))
-* Fixed: Display overflow when multiple datepickers have different numberOfMonths. ([#6704](http://bugs.jqueryui.com/ticket/6704), [870977a](http://github.com/jquery/jquery-ui/commit/870977ae6b314cecb27a7bfe18b0fdf46c8e9f79))
-* Fixed: Problem with JavascriptPacker (Files include BOMs). ([#6734](http://bugs.jqueryui.com/ticket/6734), [0d0adde](http://github.com/jquery/jquery-ui/commit/0d0addee1621f231a6f8b9bc33c087f70cd5628b))
-* Fixed: $.datepicker.parseDate does not work for some locale date strings. ([#7062](http://bugs.jqueryui.com/ticket/7062), [f9faa0a](http://github.com/jquery/jquery-ui/commit/f9faa0ab5fb2b9f332de93fd9d8fb97e9957ff6d))
-* Fixed: Incorrect day name for Slovak localization. ([#7254](http://bugs.jqueryui.com/ticket/7254), [df7e300](http://github.com/jquery/jquery-ui/commit/df7e3000382e9c1e11659f5a65d43a93cc99c0e9))
-* Fixed: Incorrect dateFormat in jquery.ui.datepicker-nl.js. ([#7250](http://bugs.jqueryui.com/ticket/7250), [06815a9](http://github.com/jquery/jquery-ui/commit/06815a98b121072ab38b6117652e9a1e31813742))
-* Fixed: Disabled datepicker should disable month and year dropdowns. ([#6850](http://bugs.jqueryui.com/ticket/6850), [2b84107](http://github.com/jquery/jquery-ui/commit/2b84107b3149631f6f09b69af9bc3a61be32b7c2))
-* Fixed: Datepicker remains open when tabbing out. ([#6775](http://bugs.jqueryui.com/ticket/6775), [7360265](http://github.com/jquery/jquery-ui/commit/73602652acd6908acaad27c29a5e3562e7538b5b))
-* Fixed: Rendering problem after changing numberOfMonths option. ([#6949](http://bugs.jqueryui.com/ticket/6949), [870977a](http://github.com/jquery/jquery-ui/commit/870977ae6b314cecb27a7bfe18b0fdf46c8e9f79))
-* Fixed: Typo in Datepicker docs. ([#7282](http://bugs.jqueryui.com/ticket/7282))
+* Fixed: Minimize event binding in Datepicker initialization. ([#7256](https://bugs.jqueryui.com/ticket/7256), [0da176b](https://github.com/jquery/jquery-ui/commit/0da176b0062f497b13eddcf4c8312f960019f4d3))
+* Fixed: Year selector disappears after setting an option in Firefox. ([#7322](https://bugs.jqueryui.com/ticket/7322), [10fa7f9](https://github.com/jquery/jquery-ui/commit/10fa7f9ae9ea68ac11795862a2ccdc813256eb8e))
+* Fixed: Display overflow when multiple datepickers have different numberOfMonths. ([#6704](https://bugs.jqueryui.com/ticket/6704), [870977a](https://github.com/jquery/jquery-ui/commit/870977ae6b314cecb27a7bfe18b0fdf46c8e9f79))
+* Fixed: Problem with JavascriptPacker (Files include BOMs). ([#6734](https://bugs.jqueryui.com/ticket/6734), [0d0adde](https://github.com/jquery/jquery-ui/commit/0d0addee1621f231a6f8b9bc33c087f70cd5628b))
+* Fixed: $.datepicker.parseDate does not work for some locale date strings. ([#7062](https://bugs.jqueryui.com/ticket/7062), [f9faa0a](https://github.com/jquery/jquery-ui/commit/f9faa0ab5fb2b9f332de93fd9d8fb97e9957ff6d))
+* Fixed: Incorrect day name for Slovak localization. ([#7254](https://bugs.jqueryui.com/ticket/7254), [df7e300](https://github.com/jquery/jquery-ui/commit/df7e3000382e9c1e11659f5a65d43a93cc99c0e9))
+* Fixed: Incorrect dateFormat in jquery.ui.datepicker-nl.js. ([#7250](https://bugs.jqueryui.com/ticket/7250), [06815a9](https://github.com/jquery/jquery-ui/commit/06815a98b121072ab38b6117652e9a1e31813742))
+* Fixed: Disabled datepicker should disable month and year dropdowns. ([#6850](https://bugs.jqueryui.com/ticket/6850), [2b84107](https://github.com/jquery/jquery-ui/commit/2b84107b3149631f6f09b69af9bc3a61be32b7c2))
+* Fixed: Datepicker remains open when tabbing out. ([#6775](https://bugs.jqueryui.com/ticket/6775), [7360265](https://github.com/jquery/jquery-ui/commit/73602652acd6908acaad27c29a5e3562e7538b5b))
+* Fixed: Rendering problem after changing numberOfMonths option. ([#6949](https://bugs.jqueryui.com/ticket/6949), [870977a](https://github.com/jquery/jquery-ui/commit/870977ae6b314cecb27a7bfe18b0fdf46c8e9f79))
+* Fixed: Typo in Datepicker docs. ([#7282](https://bugs.jqueryui.com/ticket/7282))
### Slider
-* Fixed: Optimize handle creation. ([#7259](http://bugs.jqueryui.com/ticket/7259), [03ce9fb](http://github.com/jquery/jquery-ui/commit/03ce9fb8cd3d81227dcaf878f8cea5540bbd868a))
+* Fixed: Optimize handle creation. ([#7259](https://bugs.jqueryui.com/ticket/7259), [03ce9fb](https://github.com/jquery/jquery-ui/commit/03ce9fb8cd3d81227dcaf878f8cea5540bbd868a))
## Effects
-* Fixed: $.effects.animateClass broken in jQuery 1.6. ([#7275](http://bugs.jqueryui.com/ticket/7275), [5439940](http://github.com/jquery/jquery-ui/commit/54399403e76d4fbd17c8f2664e591fd89801fab1))
+* Fixed: $.effects.animateClass broken in jQuery 1.6. ([#7275](https://bugs.jqueryui.com/ticket/7275), [5439940](https://github.com/jquery/jquery-ui/commit/54399403e76d4fbd17c8f2664e591fd89801fab1))
diff --git a/page/changelog/1.8.14.md b/page/changelog/1.8.14.md
index 6a8bcac..0cdfad6 100644
--- a/page/changelog/1.8.14.md
+++ b/page/changelog/1.8.14.md
@@ -2,66 +2,68 @@
"title": "jQuery UI 1.8.14 Changelog"
}
+Released on June 17, 2011
+
## Core & Utilities
### Mouse
-* Fixed: IE Bug Large ComboBox (Dialog). ([#7118](http://bugs.jqueryui.com/ticket/7118), [b04c6ec](http://github.com/jquery/jquery-ui/commit/b04c6ece34a57840cce22e8680e9bb7a766994df))
+* Fixed: IE Bug Large ComboBox (Dialog). ([#7118](https://bugs.jqueryui.com/ticket/7118), [b04c6ec](https://github.com/jquery/jquery-ui/commit/b04c6ece34a57840cce22e8680e9bb7a766994df))
## Interactions
### Draggable
-* Fixed: containment: 'document' is incorrect for top and left in draggable. ([#4838](http://bugs.jqueryui.com/ticket/4838), [1866905](http://github.com/jquery/jquery-ui/commit/18669056957c49d5b72693a1d61d47f041d6e5ff))
-* Fixed: IE 8 invalid drag and drop error. ([#6950](http://bugs.jqueryui.com/ticket/6950), [16b4ffb](http://github.com/jquery/jquery-ui/commit/16b4ffb791f50d8852289db88eef175b6d1adb97))
+* Fixed: containment: 'document' is incorrect for top and left in draggable. ([#4838](https://bugs.jqueryui.com/ticket/4838), [1866905](https://github.com/jquery/jquery-ui/commit/18669056957c49d5b72693a1d61d47f041d6e5ff))
+* Fixed: IE 8 invalid drag and drop error. ([#6950](https://bugs.jqueryui.com/ticket/6950), [16b4ffb](https://github.com/jquery/jquery-ui/commit/16b4ffb791f50d8852289db88eef175b6d1adb97))
### Droppable
-* Fixed: Scroll on Droppable Demo Breaks Demo. ([#5003](http://bugs.jqueryui.com/ticket/5003), [ce2fbb9](http://github.com/jquery/jquery-ui/commit/ce2fbb9429dd5fcaf80b1f3eef3d922b7ca06ec8))
+* Fixed: Scroll on Droppable Demo Breaks Demo. ([#5003](https://bugs.jqueryui.com/ticket/5003), [ce2fbb9](https://github.com/jquery/jquery-ui/commit/ce2fbb9429dd5fcaf80b1f3eef3d922b7ca06ec8))
### Resizable
-* Fixed: Resizable with aspectRatio true & a maxWidth doesn't obey ratio once hit max width. ([#4951](http://bugs.jqueryui.com/ticket/4951), [b196d1f](http://github.com/jquery/jquery-ui/commit/b196d1fb611a4fa627a29e3ff973148ccbe00dfe))
-* Fixed: https domain reports 'unsecured items' in IE7. ([#7390](http://bugs.jqueryui.com/ticket/7390), [#7397](http://bugs.jqueryui.com/ticket/7397), [9c0cd47](http://github.com/jquery/jquery-ui/commit/9c0cd477848aa3782b36b8af95b073e11285e653))
+* Fixed: Resizable with aspectRatio true & a maxWidth doesn't obey ratio once hit max width. ([#4951](https://bugs.jqueryui.com/ticket/4951), [b196d1f](https://github.com/jquery/jquery-ui/commit/b196d1fb611a4fa627a29e3ff973148ccbe00dfe))
+* Fixed: https domain reports 'unsecured items' in IE7. ([#7390](https://bugs.jqueryui.com/ticket/7390), [#7397](https://bugs.jqueryui.com/ticket/7397), [9c0cd47](https://github.com/jquery/jquery-ui/commit/9c0cd477848aa3782b36b8af95b073e11285e653))
### Sortable
-* Fixed: Unable to remove() ui.draggable (sortable item) immediately after the drop callback. ([#4088](http://bugs.jqueryui.com/ticket/4088), [ed65ce7](http://github.com/jquery/jquery-ui/commit/ed65ce7a14882df12d2e029a4be84680a8b68240))
+* Fixed: Unable to remove() ui.draggable (sortable item) immediately after the drop callback. ([#4088](https://bugs.jqueryui.com/ticket/4088), [ed65ce7](https://github.com/jquery/jquery-ui/commit/ed65ce7a14882df12d2e029a4be84680a8b68240))
## Widgets
### Autocomplete
-* Fixed: Docs: theming, classes not bold when stated as being bold. ([#7425](http://bugs.jqueryui.com/ticket/7425))
-* Fixed: Incorrect documentation for change event. ([#7424](http://bugs.jqueryui.com/ticket/7424))
+* Fixed: Docs: theming, classes not bold when stated as being bold. ([#7425](https://bugs.jqueryui.com/ticket/7425))
+* Fixed: Incorrect documentation for change event. ([#7424](https://bugs.jqueryui.com/ticket/7424))
### Button
-* Fixed: Buttons problem in Opera. ([#7094](http://bugs.jqueryui.com/ticket/7094), [4e3f8bd](http://github.com/jquery/jquery-ui/commit/4e3f8bdb70b67882decdecc62c63d39e8ce3d1fc))
-* Fixed: Buttonset on rtl. ([#6796](http://bugs.jqueryui.com/ticket/6796), [15cb567](http://github.com/jquery/jquery-ui/commit/15cb56726f8b05be40dd7dc6590cef017cd8e953))
-* Fixed: Disabled buttons still allow clicks. ([#5945](http://bugs.jqueryui.com/ticket/5945), [3735bab](http://github.com/jquery/jquery-ui/commit/3735bab147b663767d2268b90ac27234b1c19fbf))
-* Fixed: Button state inconsistencies after (accidental) drag-clicking the button. ([#6970](http://bugs.jqueryui.com/ticket/6970), [427f3d4](http://github.com/jquery/jquery-ui/commit/427f3d4345c6c3507fefcd9319adaf5588faaad4))
-* Fixed: Checkbox/radio button do not show focused state when using Keyboard Navigation. ([#6711](http://bugs.jqueryui.com/ticket/6711), [ad947c7](http://github.com/jquery/jquery-ui/commit/ad947c7ba981a371469bafd34ac7f88dee8995bb))
-* Fixed: Button .enable() strange behavior on Webkit (Google Chrome, Safari). ([#6242](http://bugs.jqueryui.com/ticket/6242), [3842fa9](http://github.com/jquery/jquery-ui/commit/3842fa9f948283fa4bab9a99ad8d0a8a2adcc175))
-* Fixed: Refresh scope in formResetHandler unintentionally wide. ([#7261](http://bugs.jqueryui.com/ticket/7261), [c45dd91](http://github.com/jquery/jquery-ui/commit/c45dd91f1b25a9edb8e168acf58e7224c46e0182))
+* Fixed: Buttons problem in Opera. ([#7094](https://bugs.jqueryui.com/ticket/7094), [4e3f8bd](https://github.com/jquery/jquery-ui/commit/4e3f8bdb70b67882decdecc62c63d39e8ce3d1fc))
+* Fixed: Buttonset on rtl. ([#6796](https://bugs.jqueryui.com/ticket/6796), [15cb567](https://github.com/jquery/jquery-ui/commit/15cb56726f8b05be40dd7dc6590cef017cd8e953))
+* Fixed: Disabled buttons still allow clicks. ([#5945](https://bugs.jqueryui.com/ticket/5945), [3735bab](https://github.com/jquery/jquery-ui/commit/3735bab147b663767d2268b90ac27234b1c19fbf))
+* Fixed: Button state inconsistencies after (accidental) drag-clicking the button. ([#6970](https://bugs.jqueryui.com/ticket/6970), [427f3d4](https://github.com/jquery/jquery-ui/commit/427f3d4345c6c3507fefcd9319adaf5588faaad4))
+* Fixed: Checkbox/radio button do not show focused state when using Keyboard Navigation. ([#6711](https://bugs.jqueryui.com/ticket/6711), [ad947c7](https://github.com/jquery/jquery-ui/commit/ad947c7ba981a371469bafd34ac7f88dee8995bb))
+* Fixed: Button .enable() strange behavior on Webkit (Google Chrome, Safari). ([#6242](https://bugs.jqueryui.com/ticket/6242), [3842fa9](https://github.com/jquery/jquery-ui/commit/3842fa9f948283fa4bab9a99ad8d0a8a2adcc175))
+* Fixed: Refresh scope in formResetHandler unintentionally wide. ([#7261](https://bugs.jqueryui.com/ticket/7261), [c45dd91](https://github.com/jquery/jquery-ui/commit/c45dd91f1b25a9edb8e168acf58e7224c46e0182))
### Datepicker
-* Fixed: Using multiple months always renders 6 rows of dates even if only 5 are needed. ([#7043](http://bugs.jqueryui.com/ticket/7043), [57b9e9d](http://github.com/jquery/jquery-ui/commit/57b9e9d399fd5e04d60428ed98f585e49373dc85))
-* Fixed: Datepicker 1.8.x can't be used with jQuery 1.3.2 due to use of .delegate(). ([#7470](http://bugs.jqueryui.com/ticket/7470), [4d8529c](http://github.com/jquery/jquery-ui/commit/4d8529cf8406a3feecbe30d57c2ceb366ec71eb4))
-* Fixed: Incorrect value for "oo" during Daylight Saving Time. ([#6827](http://bugs.jqueryui.com/ticket/6827), [c147049](http://github.com/jquery/jquery-ui/commit/c1470492bd902738a54b994ee29ff4eecedae855))
-* Fixed: onClose event not triggered. ([#6656](http://bugs.jqueryui.com/ticket/6656), [3124864](http://github.com/jquery/jquery-ui/commit/31248645418a1288c12c61c4d85d8c698b3bd305))
-* Fixed: parseDate() does not throw an exception for long years. ([#7244](http://bugs.jqueryui.com/ticket/7244), [e05559e](http://github.com/jquery/jquery-ui/commit/e05559eb162b0a3b1c090604a144262de2f9a5d3))
+* Fixed: Using multiple months always renders 6 rows of dates even if only 5 are needed. ([#7043](https://bugs.jqueryui.com/ticket/7043), [57b9e9d](https://github.com/jquery/jquery-ui/commit/57b9e9d399fd5e04d60428ed98f585e49373dc85))
+* Fixed: Datepicker 1.8.x can't be used with jQuery 1.3.2 due to use of .delegate(). ([#7470](https://bugs.jqueryui.com/ticket/7470), [4d8529c](https://github.com/jquery/jquery-ui/commit/4d8529cf8406a3feecbe30d57c2ceb366ec71eb4))
+* Fixed: Incorrect value for "oo" during Daylight Saving Time. ([#6827](https://bugs.jqueryui.com/ticket/6827), [c147049](https://github.com/jquery/jquery-ui/commit/c1470492bd902738a54b994ee29ff4eecedae855))
+* Fixed: onClose event not triggered. ([#6656](https://bugs.jqueryui.com/ticket/6656), [3124864](https://github.com/jquery/jquery-ui/commit/31248645418a1288c12c61c4d85d8c698b3bd305))
+* Fixed: parseDate() does not throw an exception for long years. ([#7244](https://bugs.jqueryui.com/ticket/7244), [e05559e](https://github.com/jquery/jquery-ui/commit/e05559eb162b0a3b1c090604a144262de2f9a5d3))
## Effects
-* Fixed: animateClass ignores easing due to typo 'easding'. ([#7435](http://bugs.jqueryui.com/ticket/7435), [d3ffacb](http://github.com/jquery/jquery-ui/commit/d3ffacb75674a0c86d930299c69946646d3d6ba0))
+* Fixed: animateClass ignores easing due to typo 'easding'. ([#7435](https://bugs.jqueryui.com/ticket/7435), [d3ffacb](https://github.com/jquery/jquery-ui/commit/d3ffacb75674a0c86d930299c69946646d3d6ba0))
## CSS Framework
-* Added: support for konqueror border-radius. ([#6097](http://bugs.jqueryui.com/ticket/6097), [fcd6e8d](http://github.com/jquery/jquery-ui/commit/fcd6e8d365c17c3e17d62811a2e6baccac7c3d48))
-* Added: Reducing size of some CSS ([#7356](http://bugs.jqueryui.com/ticket/7356), [c8326a4](http://github.com/jquery/jquery-ui/commit/c8326a499637318a62307c0751a37470cc50062b))
+* Added: support for konqueror border-radius. ([#6097](https://bugs.jqueryui.com/ticket/6097), [fcd6e8d](https://github.com/jquery/jquery-ui/commit/fcd6e8d365c17c3e17d62811a2e6baccac7c3d48))
+* Added: Reducing size of some CSS ([#7356](https://bugs.jqueryui.com/ticket/7356), [c8326a4](https://github.com/jquery/jquery-ui/commit/c8326a499637318a62307c0751a37470cc50062b))
## Tests
-* Fixed: jQuery.Simulate drag behaves incorrect when container scrolled. ([#6859](http://bugs.jqueryui.com/ticket/6859))
+* Fixed: jQuery.Simulate drag behaves incorrect when container scrolled. ([#6859](https://bugs.jqueryui.com/ticket/6859))
diff --git a/page/changelog/1.8.15.md b/page/changelog/1.8.15.md
index 231d42d..80a57d8 100644
--- a/page/changelog/1.8.15.md
+++ b/page/changelog/1.8.15.md
@@ -2,26 +2,28 @@
"title": "jQuery UI 1.8.15 Changelog"
}
+Released on August 1, 2011
+
## Core & Utilities
### Mouse
-* Fixed: When event propagation is stopped, all future mousedown events are improperly considered to be 'handled'. ([#7544](http://bugs.jqueryui.com/ticket/7544), [bd48ddf](http://github.com/jquery/jquery-ui/commit/bd48ddfa94ff673cc5dfef749fe0565f1bc02d0f))
+* Fixed: When event propagation is stopped, all future mousedown events are improperly considered to be 'handled'. ([#7544](https://bugs.jqueryui.com/ticket/7544), [bd48ddf](https://github.com/jquery/jquery-ui/commit/bd48ddfa94ff673cc5dfef749fe0565f1bc02d0f))
## Widgets
### Datepicker
-* Fixed: Dutch march name translation. ([#7566](http://bugs.jqueryui.com/ticket/7566), [c1929fc](http://github.com/jquery/jquery-ui/commit/c1929fc2906aad0174fadf0b8fb6c513f389e5f6))
-* Fixed: onSelect does not fire when enter button is pushed. ([#7124](http://bugs.jqueryui.com/ticket/7124), [bb9f9fa](http://github.com/jquery/jquery-ui/commit/bb9f9fac816dd379e810e8b70823bb7980250ffb))
-* Fixed: onSelect does not fire when setDate is called. ([#6264](http://bugs.jqueryui.com/ticket/6264), [b8e14e7](http://github.com/jquery/jquery-ui/commit/b8e14e79e5bc630bf459137896c08fc37936f52f))
-* Fixed: Month and Year dropdowns in IE have to click twice. ([#6198](http://bugs.jqueryui.com/ticket/6198), [1d47956](http://github.com/jquery/jquery-ui/commit/1d4795683e21a49115f1b0458349c63c5f54ac33))
-* Fixed: _selectDate restores focus to non-object. ([#6669](http://bugs.jqueryui.com/ticket/6669), [86a09ae](http://github.com/jquery/jquery-ui/commit/86a09aeb332851971bc2b2ce6bbf4d4292b12020))
-* Fixed: A Datepicker created on a detached div has zero height. ([#7552](http://bugs.jqueryui.com/ticket/7552), [c81bfb9](http://github.com/jquery/jquery-ui/commit/c81bfb9815405cd0a1da41ffbfe97bfc0f4ab11b))
-* Fixed: Disabled parameter doesn't work. ([#5665](http://bugs.jqueryui.com/ticket/5665), [ab3b78e](http://github.com/jquery/jquery-ui/commit/ab3b78e9eb6d6231e68d29aa3b8b7654d732eb52))
-* Fixed: Typo in demo of datepicker: div type=text. ([#7527](http://bugs.jqueryui.com/ticket/7527))
-* Fixed: Misspelling in Datepicker options. ([#7553](http://bugs.jqueryui.com/ticket/7553))
+* Fixed: Dutch march name translation. ([#7566](https://bugs.jqueryui.com/ticket/7566), [c1929fc](https://github.com/jquery/jquery-ui/commit/c1929fc2906aad0174fadf0b8fb6c513f389e5f6))
+* Fixed: onSelect does not fire when enter button is pushed. ([#7124](https://bugs.jqueryui.com/ticket/7124), [bb9f9fa](https://github.com/jquery/jquery-ui/commit/bb9f9fac816dd379e810e8b70823bb7980250ffb))
+* Fixed: onSelect does not fire when setDate is called. ([#6264](https://bugs.jqueryui.com/ticket/6264), [b8e14e7](https://github.com/jquery/jquery-ui/commit/b8e14e79e5bc630bf459137896c08fc37936f52f))
+* Fixed: Month and Year dropdowns in IE have to click twice. ([#6198](https://bugs.jqueryui.com/ticket/6198), [1d47956](https://github.com/jquery/jquery-ui/commit/1d4795683e21a49115f1b0458349c63c5f54ac33))
+* Fixed: _selectDate restores focus to non-object. ([#6669](https://bugs.jqueryui.com/ticket/6669), [86a09ae](https://github.com/jquery/jquery-ui/commit/86a09aeb332851971bc2b2ce6bbf4d4292b12020))
+* Fixed: A Datepicker created on a detached div has zero height. ([#7552](https://bugs.jqueryui.com/ticket/7552), [c81bfb9](https://github.com/jquery/jquery-ui/commit/c81bfb9815405cd0a1da41ffbfe97bfc0f4ab11b))
+* Fixed: Disabled parameter doesn't work. ([#5665](https://bugs.jqueryui.com/ticket/5665), [ab3b78e](https://github.com/jquery/jquery-ui/commit/ab3b78e9eb6d6231e68d29aa3b8b7654d732eb52))
+* Fixed: Typo in demo of datepicker: div type=text. ([#7527](https://bugs.jqueryui.com/ticket/7527))
+* Fixed: Misspelling in Datepicker options. ([#7553](https://bugs.jqueryui.com/ticket/7553))
### Slider
-* Fixed: alignValue Global Scope. ([#7564](http://bugs.jqueryui.com/ticket/7564), [8d43fe7](http://github.com/jquery/jquery-ui/commit/8d43fe7e3428e4fb4e5d9ca9e76a0d5078dfe708))
+* Fixed: alignValue Global Scope. ([#7564](https://bugs.jqueryui.com/ticket/7564), [8d43fe7](https://github.com/jquery/jquery-ui/commit/8d43fe7e3428e4fb4e5d9ca9e76a0d5078dfe708))
diff --git a/page/changelog/1.8.16.md b/page/changelog/1.8.16.md
index d32b8eb..40da475 100644
--- a/page/changelog/1.8.16.md
+++ b/page/changelog/1.8.16.md
@@ -2,48 +2,50 @@
"title": "jQuery UI 1.8.16 Changelog"
}
+Released on August 15, 2011
+
## Core & Utilities
### Mouse
-* Fixed: Nested draggables problem in IE. ([#4333](http://bugs.jqueryui.com/ticket/4333), [14ab4f4](http://github.com/jquery/jquery-ui/commit/14ab4f4f374ddda1eaa552072e6e3a86a91db4bd))
-* Fixed: Error in IE 8 with disabled inputs. ([#7620](http://bugs.jqueryui.com/ticket/7620), [c5799b5](http://github.com/jquery/jquery-ui/commit/c5799b51415cd6c855a05028bf55abe69f570313))
+* Fixed: Nested draggables problem in IE. ([#4333](https://bugs.jqueryui.com/ticket/4333), [14ab4f4](https://github.com/jquery/jquery-ui/commit/14ab4f4f374ddda1eaa552072e6e3a86a91db4bd))
+* Fixed: Error in IE 8 with disabled inputs. ([#7620](https://bugs.jqueryui.com/ticket/7620), [c5799b5](https://github.com/jquery/jquery-ui/commit/c5799b51415cd6c855a05028bf55abe69f570313))
### Widget Factory
-* Fixed: jQuery.data throws a script error in certain circumstances. ([#7510](http://bugs.jqueryui.com/ticket/7510), [c7c5b6b](http://github.com/jquery/jquery-ui/commit/c7c5b6b15cd24ae0de95ff576f8ca6b6b8892ced))
+* Fixed: jQuery.data throws a script error in certain circumstances. ([#7510](https://bugs.jqueryui.com/ticket/7510), [c7c5b6b](https://github.com/jquery/jquery-ui/commit/c7c5b6b15cd24ae0de95ff576f8ca6b6b8892ced))
## Interactions
### Draggable
-* Fixed: iframeFix always runs with old versions of jQuery. ([#7632](http://bugs.jqueryui.com/ticket/7632), [930c650](http://github.com/jquery/jquery-ui/commit/930c65011c28dfef4b206d476d6dd1da2c131bce))
+* Fixed: iframeFix always runs with old versions of jQuery. ([#7632](https://bugs.jqueryui.com/ticket/7632), [930c650](https://github.com/jquery/jquery-ui/commit/930c65011c28dfef4b206d476d6dd1da2c131bce))
### Droppable
-* Fixed: Droppable fails on a.element.parentsuntil. ([#7530](http://bugs.jqueryui.com/ticket/7530), [7b3e6a8](http://github.com/jquery/jquery-ui/commit/7b3e6a85c189e703573edd662ced72a3d5eec425))
+* Fixed: Droppable fails on a.element.parentsuntil. ([#7530](https://bugs.jqueryui.com/ticket/7530), [7b3e6a8](https://github.com/jquery/jquery-ui/commit/7b3e6a85c189e703573edd662ced72a3d5eec425))
## Widgets
### Button
-* Fixed: Button label selector omits quotes / fails for ids with ":". ([#7534](http://bugs.jqueryui.com/ticket/7534), [07d5271](http://github.com/jquery/jquery-ui/commit/07d5271f7eac17a1a732b562b836b12a889e3b60))
+* Fixed: Button label selector omits quotes / fails for ids with ":". ([#7534](https://bugs.jqueryui.com/ticket/7534), [07d5271](https://github.com/jquery/jquery-ui/commit/07d5271f7eac17a1a732b562b836b12a889e3b60))
### Datepicker
-* Added: Ability to stop datepicker from appearing with beforeShow event handler. ([#7602](http://bugs.jqueryui.com/ticket/7602), [1b5af10](http://github.com/jquery/jquery-ui/commit/1b5af10bb1f4602885ea7be41262d3cd7e72adc4))
-* Fixed: DatePicker reappears after selection in ie8. ([#7623](http://bugs.jqueryui.com/ticket/7623), [7c15d3c](http://github.com/jquery/jquery-ui/commit/7c15d3c19f9cdde9cc82ac0486a93b01ec03eb6b))
-* Fixed: onSelect triggered too often. ([#7618](http://bugs.jqueryui.com/ticket/7618), [3e98e73](http://github.com/jquery/jquery-ui/commit/3e98e737725ef247b765406330dfadf9e28ee049))
-* Fixed: "Maximum call stack size exceeded" when selecting date in range demo. ([#7629](http://bugs.jqueryui.com/ticket/7629), [3e98e73](http://github.com/jquery/jquery-ui/commit/3e98e737725ef247b765406330dfadf9e28ee049))
+* Added: Ability to stop datepicker from appearing with beforeShow event handler. ([#7602](https://bugs.jqueryui.com/ticket/7602), [1b5af10](https://github.com/jquery/jquery-ui/commit/1b5af10bb1f4602885ea7be41262d3cd7e72adc4))
+* Fixed: DatePicker reappears after selection in ie8. ([#7623](https://bugs.jqueryui.com/ticket/7623), [7c15d3c](https://github.com/jquery/jquery-ui/commit/7c15d3c19f9cdde9cc82ac0486a93b01ec03eb6b))
+* Fixed: onSelect triggered too often. ([#7618](https://bugs.jqueryui.com/ticket/7618), [3e98e73](https://github.com/jquery/jquery-ui/commit/3e98e737725ef247b765406330dfadf9e28ee049))
+* Fixed: "Maximum call stack size exceeded" when selecting date in range demo. ([#7629](https://bugs.jqueryui.com/ticket/7629), [3e98e73](https://github.com/jquery/jquery-ui/commit/3e98e737725ef247b765406330dfadf9e28ee049))
### Dialog
-* Fixed: Pressing ESC on dialog when 2 dialogs are open closes both dialogs. ([#6966](http://bugs.jqueryui.com/ticket/6966), [abf97f7](http://github.com/jquery/jquery-ui/commit/abf97f73017794f93c52876221cf34018da5781c))
+* Fixed: Pressing ESC on dialog when 2 dialogs are open closes both dialogs. ([#6966](https://bugs.jqueryui.com/ticket/6966), [abf97f7](https://github.com/jquery/jquery-ui/commit/abf97f73017794f93c52876221cf34018da5781c))
## Effects
-* Fixed: Wrapper-creating jquery-ui animations will discard any focus state during the animation. ([#7595](http://bugs.jqueryui.com/ticket/7595), [82df692](http://github.com/jquery/jquery-ui/commit/82df6924cbb0fa080590d83b4edc6183dd05ce93))
+* Fixed: Wrapper-creating jquery-ui animations will discard any focus state during the animation. ([#7595](https://bugs.jqueryui.com/ticket/7595), [82df692](https://github.com/jquery/jquery-ui/commit/82df6924cbb0fa080590d83b4edc6183dd05ce93))
## Website
-* Fixed: XSS jqueryui.com/demos. ([#7616](http://bugs.jqueryui.com/ticket/7616))
+* Fixed: XSS jqueryui.com/demos. ([#7616](https://bugs.jqueryui.com/ticket/7616))
diff --git a/page/changelog/1.8.17.md b/page/changelog/1.8.17.md
index df172c0..ca60423 100644
--- a/page/changelog/1.8.17.md
+++ b/page/changelog/1.8.17.md
@@ -2,71 +2,73 @@
"title": "jQuery UI 1.8.17 Changelog"
}
+Released on November 29, 2011
+
## Build
-* Added: Switching to uglify.js instead of closure compilier. ([eee4db7](http://github.com/jquery/jquery-ui/commit/eee4db7866fcba3d5bea72be311445cde62b13ca))
+* Added: Switching to uglify.js instead of closure compilier. ([eee4db7](https://github.com/jquery/jquery-ui/commit/eee4db7866fcba3d5bea72be311445cde62b13ca))
## Core & Utilities
### Position
-* Fixed: Revisit solution for off-by-1 errors. ([#7255](http://bugs.jqueryui.com/ticket/7255), [bfbc0b1](http://github.com/jquery/jquery-ui/commit/bfbc0b1fb3c0bf43ccbaefd03bcfa2cf19ea4a03))
+* Fixed: Revisit solution for off-by-1 errors. ([#7255](https://bugs.jqueryui.com/ticket/7255), [bfbc0b1](https://github.com/jquery/jquery-ui/commit/bfbc0b1fb3c0bf43ccbaefd03bcfa2cf19ea4a03))
## Interactions
### Droppable
-* Fixed: Parent droppable takes precedence over dynamically created child droppable. ([#6085](http://bugs.jqueryui.com/ticket/6085), [#6009](http://bugs.jqueryui.com/ticket/6009), [f7b28df](http://github.com/jquery/jquery-ui/commit/f7b28df28809bca05623b7394919d15919334afb))
-* Fixed: Droppable event target changes under jQuery 1.7. ([#7852](http://bugs.jqueryui.com/ticket/7852), [aa4e8ab](http://github.com/jquery/jquery-ui/commit/aa4e8ab3fb83f2550bac1e5476bd20f84a5883d9))
+* Fixed: Parent droppable takes precedence over dynamically created child droppable. ([#6085](https://bugs.jqueryui.com/ticket/6085), [#6009](https://bugs.jqueryui.com/ticket/6009), [f7b28df](https://github.com/jquery/jquery-ui/commit/f7b28df28809bca05623b7394919d15919334afb))
+* Fixed: Droppable event target changes under jQuery 1.7. ([#7852](https://bugs.jqueryui.com/ticket/7852), [aa4e8ab](https://github.com/jquery/jquery-ui/commit/aa4e8ab3fb83f2550bac1e5476bd20f84a5883d9))
### Selectable
-* Fixed: new elements added programatically don't have class ui-selectee. ([#7716](http://bugs.jqueryui.com/ticket/7716), [e9002c4](http://github.com/jquery/jquery-ui/commit/e9002c4c8f04266497926419034ea44f62725bcf))
-* Fixed: ctrl-click to select multiple elements not working. ([#7858](http://bugs.jqueryui.com/ticket/7858), [ffd3f51](http://github.com/jquery/jquery-ui/commit/ffd3f510f1c0fbfe99ce2f1aab81d56d9b03f88e))
+* Fixed: new elements added programatically don't have class ui-selectee. ([#7716](https://bugs.jqueryui.com/ticket/7716), [e9002c4](https://github.com/jquery/jquery-ui/commit/e9002c4c8f04266497926419034ea44f62725bcf))
+* Fixed: ctrl-click to select multiple elements not working. ([#7858](https://bugs.jqueryui.com/ticket/7858), [ffd3f51](https://github.com/jquery/jquery-ui/commit/ffd3f510f1c0fbfe99ce2f1aab81d56d9b03f88e))
### Sortable
-* Fixed: ui.sortable is not working when it is extended. ([#7741](http://bugs.jqueryui.com/ticket/7741), [5c6cfe2](http://github.com/jquery/jquery-ui/commit/5c6cfe2645588e6a3d3f1ed002534d454209e33f))
+* Fixed: ui.sortable is not working when it is extended. ([#7741](https://bugs.jqueryui.com/ticket/7741), [5c6cfe2](https://github.com/jquery/jquery-ui/commit/5c6cfe2645588e6a3d3f1ed002534d454209e33f))
## Widgets
### Accordion
-* Fixed: Problem with accordion slide animation fixed width calculation. ([#7238](http://bugs.jqueryui.com/ticket/7238), [9a87c1a](http://github.com/jquery/jquery-ui/commit/9a87c1a72ea298170f4b9bffcecdb4d80ee4b5cc))
+* Fixed: Problem with accordion slide animation fixed width calculation. ([#7238](https://bugs.jqueryui.com/ticket/7238), [9a87c1a](https://github.com/jquery/jquery-ui/commit/9a87c1a72ea298170f4b9bffcecdb4d80ee4b5cc))
### Autocomplete
-* Fixed: long text wraps in Firefox. ([#7513](http://bugs.jqueryui.com/ticket/7513), [757384b](http://github.com/jquery/jquery-ui/commit/757384b8c5eb1ccf354f9ab98fcb3b0e6cae6e1d))
-* Fixed: Autocomplete-enabled text input does not keep value when using back button in browser. ([#7790](http://bugs.jqueryui.com/ticket/7790), [b41873b](http://github.com/jquery/jquery-ui/commit/b41873ba0dd8f84ec282f77d029c7dc0ee99b873))
+* Fixed: long text wraps in Firefox. ([#7513](https://bugs.jqueryui.com/ticket/7513), [757384b](https://github.com/jquery/jquery-ui/commit/757384b8c5eb1ccf354f9ab98fcb3b0e6cae6e1d))
+* Fixed: Autocomplete-enabled text input does not keep value when using back button in browser. ([#7790](https://bugs.jqueryui.com/ticket/7790), [b41873b](https://github.com/jquery/jquery-ui/commit/b41873ba0dd8f84ec282f77d029c7dc0ee99b873))
### Button
-* Fixed: Incorrect corners for disconnected elements. ([#7697](http://bugs.jqueryui.com/ticket/7697), [000b173](http://github.com/jquery/jquery-ui/commit/000b1736ac9c379fbb4f0f608f407ad25924fcac))
+* Fixed: Incorrect corners for disconnected elements. ([#7697](https://bugs.jqueryui.com/ticket/7697), [000b173](https://github.com/jquery/jquery-ui/commit/000b1736ac9c379fbb4f0f608f407ad25924fcac))
### Datepicker
-* Added: Dutch (Belgium) Localization. ([#7895](http://bugs.jqueryui.com/ticket/7895), [126aafc](http://github.com/jquery/jquery-ui/commit/126aafc94a23f108673428a496ff38b385372634))
-* Added: Luxembourgish Translation. ([#7891](http://bugs.jqueryui.com/ticket/7891), [a8b75a5](http://github.com/jquery/jquery-ui/commit/a8b75a5b9ed2d946fe7bb9f584ccbfb9668c0a95))
-* Added: Macedonian Localization. ([#7893](http://bugs.jqueryui.com/ticket/7893), [ebff2f9](http://github.com/jquery/jquery-ui/commit/ebff2f9f102f9d017f35e41781e0bec258d85600))
-* Added: Welsh/UK Localization. ([#7892](http://bugs.jqueryui.com/ticket/7892), [a03863d](http://github.com/jquery/jquery-ui/commit/a03863d01761a6ea69af7dc053a0d9c2bdf063a3))
-* Fixed: Hungarian translation. ([#7714](http://bugs.jqueryui.com/ticket/7714), [eddf076](http://github.com/jquery/jquery-ui/commit/eddf076b8c7d4e68a18823ffae884c113028801e), [af7d433](http://github.com/jquery/jquery-ui/commit/af7d433818d3d703fd19dd6ee067e8a6ac6cd811))
-* Fixed: Infinite loop when onclose event shows a second calendar. ([#7686](http://bugs.jqueryui.com/ticket/7686), [872387a](http://github.com/jquery/jquery-ui/commit/872387abd5ab59e00df108438ae5bba76df1138a))
-* Fixed: Kazakhstan language code. ([#7829](http://bugs.jqueryui.com/ticket/7829), [0fcf3d8](http://github.com/jquery/jquery-ui/commit/0fcf3d8e5e0bf8e8459c5c95d7733958eb68a5d3))
-* Fixed: Does not properly clear current instance when hidden. ([#7722](http://bugs.jqueryui.com/ticket/7722), [63bd71f](http://github.com/jquery/jquery-ui/commit/63bd71f14cac1f46fd5cfc6f157abf0bf710d347))
-* Fixed: Ukrainian localization's week header. ([#7896](http://bugs.jqueryui.com/ticket/7896), [4bff6f5](http://github.com/jquery/jquery-ui/commit/4bff6f564b132c70950c0a4100301a49bd802717))
+* Added: Dutch (Belgium) Localization. ([#7895](https://bugs.jqueryui.com/ticket/7895), [126aafc](https://github.com/jquery/jquery-ui/commit/126aafc94a23f108673428a496ff38b385372634))
+* Added: Luxembourgish Translation. ([#7891](https://bugs.jqueryui.com/ticket/7891), [a8b75a5](https://github.com/jquery/jquery-ui/commit/a8b75a5b9ed2d946fe7bb9f584ccbfb9668c0a95))
+* Added: Macedonian Localization. ([#7893](https://bugs.jqueryui.com/ticket/7893), [ebff2f9](https://github.com/jquery/jquery-ui/commit/ebff2f9f102f9d017f35e41781e0bec258d85600))
+* Added: Welsh/UK Localization. ([#7892](https://bugs.jqueryui.com/ticket/7892), [a03863d](https://github.com/jquery/jquery-ui/commit/a03863d01761a6ea69af7dc053a0d9c2bdf063a3))
+* Fixed: Hungarian translation. ([#7714](https://bugs.jqueryui.com/ticket/7714), [eddf076](https://github.com/jquery/jquery-ui/commit/eddf076b8c7d4e68a18823ffae884c113028801e), [af7d433](https://github.com/jquery/jquery-ui/commit/af7d433818d3d703fd19dd6ee067e8a6ac6cd811))
+* Fixed: Infinite loop when onclose event shows a second calendar. ([#7686](https://bugs.jqueryui.com/ticket/7686), [872387a](https://github.com/jquery/jquery-ui/commit/872387abd5ab59e00df108438ae5bba76df1138a))
+* Fixed: Kazakhstan language code. ([#7829](https://bugs.jqueryui.com/ticket/7829), [0fcf3d8](https://github.com/jquery/jquery-ui/commit/0fcf3d8e5e0bf8e8459c5c95d7733958eb68a5d3))
+* Fixed: Does not properly clear current instance when hidden. ([#7722](https://bugs.jqueryui.com/ticket/7722), [63bd71f](https://github.com/jquery/jquery-ui/commit/63bd71f14cac1f46fd5cfc6f157abf0bf710d347))
+* Fixed: Ukrainian localization's week header. ([#7896](https://bugs.jqueryui.com/ticket/7896), [4bff6f5](https://github.com/jquery/jquery-ui/commit/4bff6f564b132c70950c0a4100301a49bd802717))
### Progressbar
-* Fixed: Value div can flow out of wrapper div. ([#7743](http://bugs.jqueryui.com/ticket/7743), [db1e73e](http://github.com/jquery/jquery-ui/commit/db1e73e3db9d7ffa971d2275bc130515e9bd42e6))
+* Fixed: Value div can flow out of wrapper div. ([#7743](https://bugs.jqueryui.com/ticket/7743), [db1e73e](https://github.com/jquery/jquery-ui/commit/db1e73e3db9d7ffa971d2275bc130515e9bd42e6))
### Tabs
-* Fixed: (Docs) Fix for keeping links in tabs is incomplete. ([#7232](http://bugs.jqueryui.com/ticket/7232))
+* Fixed: (Docs) Fix for keeping links in tabs is incomplete. ([#7232](https://bugs.jqueryui.com/ticket/7232))
## CSS Framework
-* Fixed: Clearfix breaks after runs through YUI Compressor. ([#7838](http://bugs.jqueryui.com/ticket/7838), [6f6e2de](http://github.com/jquery/jquery-ui/commit/6f6e2ded1a9b30f65a34733f3d887c16c162e28a))
+* Fixed: Clearfix breaks after runs through YUI Compressor. ([#7838](https://bugs.jqueryui.com/ticket/7838), [6f6e2de](https://github.com/jquery/jquery-ui/commit/6f6e2ded1a9b30f65a34733f3d887c16c162e28a))
## Demos
-* Fixed: Demo accordion hoverintent: hover instead of hoverintent behavior with jQuery 1.7.0. ([#7871](http://bugs.jqueryui.com/ticket/7871), [0a6ce1f](http://github.com/jquery/jquery-ui/commit/0a6ce1f7d177163b06f5383d56e4f91af2ced951))
+* Fixed: Demo accordion hoverintent: hover instead of hoverintent behavior with jQuery 1.7.0. ([#7871](https://bugs.jqueryui.com/ticket/7871), [0a6ce1f](https://github.com/jquery/jquery-ui/commit/0a6ce1f7d177163b06f5383d56e4f91af2ced951))
diff --git a/page/changelog/1.8.18.md b/page/changelog/1.8.18.md
index 3374b88..009a753 100644
--- a/page/changelog/1.8.18.md
+++ b/page/changelog/1.8.18.md
@@ -2,79 +2,81 @@
"title": "jQuery UI 1.8.18 Changelog"
}
+Released on February 20, 2012
+
## Core & Utilities
### UI Core
-* Fixed: minHeight support test affects page layout in IE 9. ([#8026](http://bugs.jqueryui.com/ticket/8026), [9e4455f](http://github.com/jquery/jquery-ui/commit/9e4455f52d721f2efd4c91037bcd3daf24635599))
+* Fixed: minHeight support test affects page layout in IE 9. ([#8026](https://bugs.jqueryui.com/ticket/8026), [9e4455f](https://github.com/jquery/jquery-ui/commit/9e4455f52d721f2efd4c91037bcd3daf24635599))
### Position
-* Fixed: There is a reference to the global jQuery variable. ([#8029](http://bugs.jqueryui.com/ticket/8029), [e2a2112](http://github.com/jquery/jquery-ui/commit/e2a21129cb3e079ffa2709db4fae1c6dc4b0b5c4))
-* Fixed: Position documentation doesn't state default values. ([#7946](http://bugs.jqueryui.com/ticket/7946))
+* Fixed: There is a reference to the global jQuery variable. ([#8029](https://bugs.jqueryui.com/ticket/8029), [e2a2112](https://github.com/jquery/jquery-ui/commit/e2a21129cb3e079ffa2709db4fae1c6dc4b0b5c4))
+* Fixed: Position documentation doesn't state default values. ([#7946](https://bugs.jqueryui.com/ticket/7946))
## Interactions
### Draggable
-* Fixed: cursorAt demo options incorrect. ([#8104](http://bugs.jqueryui.com/ticket/8104), [edd52ed](http://github.com/jquery/jquery-ui/commit/edd52edff48454717daaa2ab8417168d042ffefe))
+* Fixed: cursorAt demo options incorrect. ([#8104](https://bugs.jqueryui.com/ticket/8104), [edd52ed](https://github.com/jquery/jquery-ui/commit/edd52edff48454717daaa2ab8417168d042ffefe))
### Resizable
-* Fixed: ui.dialog & resizable & button & opera 11. ([#6763](http://bugs.jqueryui.com/ticket/6763), [28fb436](http://github.com/jquery/jquery-ui/commit/28fb436b7b75de01cc1caf3132f56381b6c7c190))
+* Fixed: ui.dialog & resizable & button & opera 11. ([#6763](https://bugs.jqueryui.com/ticket/6763), [28fb436](https://github.com/jquery/jquery-ui/commit/28fb436b7b75de01cc1caf3132f56381b6c7c190))
### Sortable
-* Fixed: Sortable "Connect Lists" demo doesn't allow dropping as last element. ([#8114](http://bugs.jqueryui.com/ticket/8114), [fff9d87](http://github.com/jquery/jquery-ui/commit/fff9d87674b83c6a07569b6ce240d970b0ef61c2))
-* Fixed: a major optimization is possible in sortable(). ([#4759](http://bugs.jqueryui.com/ticket/4759), [b00faa9](http://github.com/jquery/jquery-ui/commit/b00faa95d0d372f345e24f9abe9d16a2b67ca258))
-* Fixed: .sortable() after destroy does not work. ([#8094](http://bugs.jqueryui.com/ticket/8094), [988b803](http://github.com/jquery/jquery-ui/commit/988b803be3085111cb8d741b99ab09151dc7f1b5))
-* Fixed: cursorAt Documentation in error. ([#8103](http://bugs.jqueryui.com/ticket/8103))
+* Fixed: Sortable "Connect Lists" demo doesn't allow dropping as last element. ([#8114](https://bugs.jqueryui.com/ticket/8114), [fff9d87](https://github.com/jquery/jquery-ui/commit/fff9d87674b83c6a07569b6ce240d970b0ef61c2))
+* Fixed: a major optimization is possible in sortable(). ([#4759](https://bugs.jqueryui.com/ticket/4759), [b00faa9](https://github.com/jquery/jquery-ui/commit/b00faa95d0d372f345e24f9abe9d16a2b67ca258))
+* Fixed: .sortable() after destroy does not work. ([#8094](https://bugs.jqueryui.com/ticket/8094), [988b803](https://github.com/jquery/jquery-ui/commit/988b803be3085111cb8d741b99ab09151dc7f1b5))
+* Fixed: cursorAt Documentation in error. ([#8103](https://bugs.jqueryui.com/ticket/8103))
## Widgets
### Accordion
-* Fixed: Hoverintent demo throws an error in IE. ([#6028](http://bugs.jqueryui.com/ticket/6028), [5d4df03](http://github.com/jquery/jquery-ui/commit/5d4df03b7084a335ca9ceb6a62277c72434c83af))
-* Fixed: Accordion + Sortable doesn't work properly on IE6/7. ([#5413](http://bugs.jqueryui.com/ticket/5413), [e77249e](http://github.com/jquery/jquery-ui/commit/e77249eb3e06064d1e8c09a41047fb644818eb3a))
+* Fixed: Hoverintent demo throws an error in IE. ([#6028](https://bugs.jqueryui.com/ticket/6028), [5d4df03](https://github.com/jquery/jquery-ui/commit/5d4df03b7084a335ca9ceb6a62277c72434c83af))
+* Fixed: Accordion + Sortable doesn't work properly on IE6/7. ([#5413](https://bugs.jqueryui.com/ticket/5413), [e77249e](https://github.com/jquery/jquery-ui/commit/e77249eb3e06064d1e8c09a41047fb644818eb3a))
### Autocomplete
-* Fixed: Autocomplete fails when context option is set with ajaxSetup. ([#7490](http://bugs.jqueryui.com/ticket/7490), [fc6d6e1](http://github.com/jquery/jquery-ui/commit/fc6d6e138c0e5f65ca48a6f333680860f7361636))
-* Fixed: Documentation should mention user-code filtering. ([#8123](http://bugs.jqueryui.com/ticket/8123))
+* Fixed: Autocomplete fails when context option is set with ajaxSetup. ([#7490](https://bugs.jqueryui.com/ticket/7490), [fc6d6e1](https://github.com/jquery/jquery-ui/commit/fc6d6e138c0e5f65ca48a6f333680860f7361636))
+* Fixed: Documentation should mention user-code filtering. ([#8123](https://bugs.jqueryui.com/ticket/8123))
### Button
-* Fixed: icon only button in dialog causes horizontal scrollbar in Opera. ([#7911](http://bugs.jqueryui.com/ticket/7911), [005709f](http://github.com/jquery/jquery-ui/commit/005709f432327ae672f7a613a8dca6200febe017))
-* Fixed: Getting unset disabled option on button widget returns jQuery object, not default value. ([#8028](http://bugs.jqueryui.com/ticket/8028), [f7f13b5](http://github.com/jquery/jquery-ui/commit/f7f13b5949cd59f4e3f70c315d4e18f9662281ad))
+* Fixed: icon only button in dialog causes horizontal scrollbar in Opera. ([#7911](https://bugs.jqueryui.com/ticket/7911), [005709f](https://github.com/jquery/jquery-ui/commit/005709f432327ae672f7a613a8dca6200febe017))
+* Fixed: Getting unset disabled option on button widget returns jQuery object, not default value. ([#8028](https://bugs.jqueryui.com/ticket/8028), [f7f13b5](https://github.com/jquery/jquery-ui/commit/f7f13b5949cd59f4e3f70c315d4e18f9662281ad))
### Datepicker
-* Added: Hindi localization ([#8118](http://bugs.jqueryui.com/ticket/8118), [b87a0a3](http://github.com/jquery/jquery-ui/commit/b87a0a362b9e44b5a219a054cc645ee02cb4ce36))
-* Added: Khmer localization. ([#8116](http://bugs.jqueryui.com/ticket/8116), [d62d000](http://github.com/jquery/jquery-ui/commit/d62d0004e10aa0b976e19a83fc743d7b6b1d63af))
-* Fixed: Hebrew and Arabic: Instead of the month name indicates the month number! ([#6051](http://bugs.jqueryui.com/ticket/6051), [2866894](http://github.com/jquery/jquery-ui/commit/28668948df6d53bb1cfb9f8a6823c73309172204))
-* Fixed: Some issues on the Korean translation. ([#8010](http://bugs.jqueryui.com/ticket/8010), [5953d19](http://github.com/jquery/jquery-ui/commit/5953d194a343f90d90bfb04df2a5f0724555f6eb))
-* Fixed: Macedonian locale has incorrect date format. ([#8040](http://bugs.jqueryui.com/ticket/8040), [40d9a19](http://github.com/jquery/jquery-ui/commit/40d9a192f560d65afdf9bed99cad96334871f763))
-* Fixed: multiple DatePickers won't trigger close event. ([#5818](http://bugs.jqueryui.com/ticket/5818), [120ee58](http://github.com/jquery/jquery-ui/commit/120ee58e5baff8f6248987bca22bc4deb0380504))
-* Fixed: Closing the datepicker via the provided button does not work in Chrome when the button contains other non-text elements. ([#8107](http://bugs.jqueryui.com/ticket/8107), [dc12b4d](http://github.com/jquery/jquery-ui/commit/dc12b4d3109d2b5f611ce2bd8d9caae484cc772b))
-* Fixed: Dialog not closing on second trigger if opened using image. ([#8011](http://bugs.jqueryui.com/ticket/8011), [120ee58](http://github.com/jquery/jquery-ui/commit/120ee58e5baff8f6248987bca22bc4deb0380504))
+* Added: Hindi localization ([#8118](https://bugs.jqueryui.com/ticket/8118), [b87a0a3](https://github.com/jquery/jquery-ui/commit/b87a0a362b9e44b5a219a054cc645ee02cb4ce36))
+* Added: Khmer localization. ([#8116](https://bugs.jqueryui.com/ticket/8116), [d62d000](https://github.com/jquery/jquery-ui/commit/d62d0004e10aa0b976e19a83fc743d7b6b1d63af))
+* Fixed: Hebrew and Arabic: Instead of the month name indicates the month number! ([#6051](https://bugs.jqueryui.com/ticket/6051), [2866894](https://github.com/jquery/jquery-ui/commit/28668948df6d53bb1cfb9f8a6823c73309172204))
+* Fixed: Some issues on the Korean translation. ([#8010](https://bugs.jqueryui.com/ticket/8010), [5953d19](https://github.com/jquery/jquery-ui/commit/5953d194a343f90d90bfb04df2a5f0724555f6eb))
+* Fixed: Macedonian locale has incorrect date format. ([#8040](https://bugs.jqueryui.com/ticket/8040), [40d9a19](https://github.com/jquery/jquery-ui/commit/40d9a192f560d65afdf9bed99cad96334871f763))
+* Fixed: multiple DatePickers won't trigger close event. ([#5818](https://bugs.jqueryui.com/ticket/5818), [120ee58](https://github.com/jquery/jquery-ui/commit/120ee58e5baff8f6248987bca22bc4deb0380504))
+* Fixed: Closing the datepicker via the provided button does not work in Chrome when the button contains other non-text elements. ([#8107](https://bugs.jqueryui.com/ticket/8107), [dc12b4d](https://github.com/jquery/jquery-ui/commit/dc12b4d3109d2b5f611ce2bd8d9caae484cc772b))
+* Fixed: Dialog not closing on second trigger if opened using image. ([#8011](https://bugs.jqueryui.com/ticket/8011), [120ee58](https://github.com/jquery/jquery-ui/commit/120ee58e5baff8f6248987bca22bc4deb0380504))
### Dialog
-* Fixed: Spelling mistake in documentation - option resizable. ([#7939](http://bugs.jqueryui.com/ticket/7939))
+* Fixed: Spelling mistake in documentation - option resizable. ([#7939](https://bugs.jqueryui.com/ticket/7939))
### Slider
-* Fixed: Key handling should prevent scrolling. ([#8109](http://bugs.jqueryui.com/ticket/8109), [4700302](http://github.com/jquery/jquery-ui/commit/470030249c519eb59d30d81e6fd6c989490fd5b8))
+* Fixed: Key handling should prevent scrolling. ([#8109](https://bugs.jqueryui.com/ticket/8109), [4700302](https://github.com/jquery/jquery-ui/commit/470030249c519eb59d30d81e6fd6c989490fd5b8))
### Tabs
-* Fixed: Documentation for jquery.ui.tabs remove method is incomplete. ([#7931](http://bugs.jqueryui.com/ticket/7931))
+* Fixed: Documentation for jquery.ui.tabs remove method is incomplete. ([#7931](https://bugs.jqueryui.com/ticket/7931))
## Demos
-* Fixed: Demos fail from local file:// in Firefox 9 - bad tags, bad calls in demo sources. ([#8069](http://bugs.jqueryui.com/ticket/8069), [69daf17](http://github.com/jquery/jquery-ui/commit/69daf1794d691b4aa0d2c8914383880fbc820c0d))
+* Fixed: Demos fail from local file:// in Firefox 9 - bad tags, bad calls in demo sources. ([#8069](https://bugs.jqueryui.com/ticket/8069), [69daf17](https://github.com/jquery/jquery-ui/commit/69daf1794d691b4aa0d2c8914383880fbc820c0d))
## Tests
-* Fixed: Simulate mouse events broken for IE 9. ([#7324](http://bugs.jqueryui.com/ticket/7324), [0b7155f](http://github.com/jquery/jquery-ui/commit/0b7155f92781c59b0eb0ac8e008715d8a56671fb))
-* Fixed: Safari: jQuery.simulate() doesn't set "which" field for key events. ([#3229](http://bugs.jqueryui.com/ticket/3229), [2e1da90](http://github.com/jquery/jquery-ui/commit/2e1da90608e0d442f1e03508e65875c6949bc250))
+* Fixed: Simulate mouse events broken for IE 9. ([#7324](https://bugs.jqueryui.com/ticket/7324), [0b7155f](https://github.com/jquery/jquery-ui/commit/0b7155f92781c59b0eb0ac8e008715d8a56671fb))
+* Fixed: Safari: jQuery.simulate() doesn't set "which" field for key events. ([#3229](https://bugs.jqueryui.com/ticket/3229), [2e1da90](https://github.com/jquery/jquery-ui/commit/2e1da90608e0d442f1e03508e65875c6949bc250))
diff --git a/page/changelog/1.8.19.md b/page/changelog/1.8.19.md
index 6e25835..734c4dc 100644
--- a/page/changelog/1.8.19.md
+++ b/page/changelog/1.8.19.md
@@ -2,56 +2,58 @@
"title": "jQuery UI 1.8.19 Changelog"
}
+Released on April 16, 2012
+
## Core & Utilities
-* Fixed: Several components are leaking variables into the global scope. ([#6979](http://bugs.jqueryui.com/ticket/6979), [6fb584e](http://github.com/jquery/jquery-ui/commit/6fb584e7007bb7dc539d9c7266d17833c52a7830))
+* Fixed: Several components are leaking variables into the global scope. ([#6979](https://bugs.jqueryui.com/ticket/6979), [6fb584e](https://github.com/jquery/jquery-ui/commit/6fb584e7007bb7dc539d9c7266d17833c52a7830))
### Mouse
-* Fixed: _mouseDestroy keeps mousemove and mouseup events bound. ([#8199](http://bugs.jqueryui.com/ticket/8199), [a76366f](http://github.com/jquery/jquery-ui/commit/a76366f8fc731ec6946d9f6940c8a03040e31d23))
+* Fixed: _mouseDestroy keeps mousemove and mouseup events bound. ([#8199](https://bugs.jqueryui.com/ticket/8199), [a76366f](https://github.com/jquery/jquery-ui/commit/a76366f8fc731ec6946d9f6940c8a03040e31d23))
### Position
-* Fixed: Demo breaks when dragging an element. ([#5380](http://bugs.jqueryui.com/ticket/5380), [f01db5d](http://github.com/jquery/jquery-ui/commit/f01db5d8a1321d9f5d8f270aa79ef49574dffaed))
-* Fixed: Documentation for flip collision says it falls back to center ([#8147](http://bugs.jqueryui.com/ticket/8147))
+* Fixed: Demo breaks when dragging an element. ([#5380](https://bugs.jqueryui.com/ticket/5380), [f01db5d](https://github.com/jquery/jquery-ui/commit/f01db5d8a1321d9f5d8f270aa79ef49574dffaed))
+* Fixed: Documentation for flip collision says it falls back to center ([#8147](https://bugs.jqueryui.com/ticket/8147))
## Interactions
### Resizable
-* Fixed: aspectRatio: true isn't handled properly. ([#8158](http://bugs.jqueryui.com/ticket/8158), [fea7862](http://github.com/jquery/jquery-ui/commit/fea7862ff3c5c3fb65a79fbc32a5af19e1829182))
+* Fixed: aspectRatio: true isn't handled properly. ([#8158](https://bugs.jqueryui.com/ticket/8158), [fea7862](https://github.com/jquery/jquery-ui/commit/fea7862ff3c5c3fb65a79fbc32a5af19e1829182))
### Sortable
-* Fixed: Horizontal sortable shifts causes elements to shift down. ([#8135](http://bugs.jqueryui.com/ticket/8135), [f0b7130](http://github.com/jquery/jquery-ui/commit/f0b7130a5459d9f34b1e05ad6306d3909131bd8c))
+* Fixed: Horizontal sortable shifts causes elements to shift down. ([#8135](https://bugs.jqueryui.com/ticket/8135), [f0b7130](https://github.com/jquery/jquery-ui/commit/f0b7130a5459d9f34b1e05ad6306d3909131bd8c))
## Widgets
### Autocomplete
-* Added: Automatic race-condition handling for custom sources. ([#8234](http://bugs.jqueryui.com/ticket/8234), [d040b8f](http://github.com/jquery/jquery-ui/commit/d040b8f42cc28932deedddebe95473a9fd13d742))
-* Fixed: Autocomplete combobox button rendered incorrectly. ([#8242](http://bugs.jqueryui.com/ticket/8242), [#8243](http://bugs.jqueryui.com/ticket/8243), [5ec0dd8](http://github.com/jquery/jquery-ui/commit/5ec0dd8abe225e5e1b454d469119e44728ed7727))
-* Fixed: Key up/key down in textarea's should optionally not toggle auto-complete. ([#7639](http://bugs.jqueryui.com/ticket/7639), [9668cb8](http://github.com/jquery/jquery-ui/commit/9668cb850ef97e39822cb3ef0d0ea27ff0c1fe6e))
+* Added: Automatic race-condition handling for custom sources. ([#8234](https://bugs.jqueryui.com/ticket/8234), [d040b8f](https://github.com/jquery/jquery-ui/commit/d040b8f42cc28932deedddebe95473a9fd13d742))
+* Fixed: Autocomplete combobox button rendered incorrectly. ([#8242](https://bugs.jqueryui.com/ticket/8242), [#8243](https://bugs.jqueryui.com/ticket/8243), [5ec0dd8](https://github.com/jquery/jquery-ui/commit/5ec0dd8abe225e5e1b454d469119e44728ed7727))
+* Fixed: Key up/key down in textarea's should optionally not toggle auto-complete. ([#7639](https://bugs.jqueryui.com/ticket/7639), [9668cb8](https://github.com/jquery/jquery-ui/commit/9668cb850ef97e39822cb3ef0d0ea27ff0c1fe6e))
### Button
-* Fixed: Buttons does not align properly. ([#8241](http://bugs.jqueryui.com/ticket/8241), [959e36b](http://github.com/jquery/jquery-ui/commit/959e36bfc47ac8992e805aa34b736876e0e926cd))
+* Fixed: Buttons does not align properly. ([#8241](https://bugs.jqueryui.com/ticket/8241), [959e36b](https://github.com/jquery/jquery-ui/commit/959e36bfc47ac8992e805aa34b736876e0e926cd))
### Datepicker
-* Added: Georgian localization. ([#8205](http://bugs.jqueryui.com/ticket/8205), [4451f86](http://github.com/jquery/jquery-ui/commit/4451f86eda11a384181a7a1c8f11109b63371203))
-* Fixed: Localization error in et locale (week header). ([#8129](http://bugs.jqueryui.com/ticket/8129), [35e2919](http://github.com/jquery/jquery-ui/commit/35e291937591326fdc909f88eb948272c98edf39))
-* Fixed: Provide a better German translation for the week header. ([#8231](http://bugs.jqueryui.com/ticket/8231), [8b46758](http://github.com/jquery/jquery-ui/commit/8b46758f271f94f0acf3416690cc6a70708b3a9e))
-* Fixed: Incorrect day name for Finnish localization. ([#8194](http://bugs.jqueryui.com/ticket/8194), [91df42e](http://github.com/jquery/jquery-ui/commit/91df42ec40b22b74a18bcc5fd29081f948e8c9f9))
-* Fixed: Datepicker is stuck open if label is clicked from open state. ([#8174](http://bugs.jqueryui.com/ticket/8174), [fc6e72b](http://github.com/jquery/jquery-ui/commit/fc6e72bf7399ecde5f15de88fd750a9a49b55b77))
-* Fixed: Incorrect month name for Macedonian localization. ([#8206](http://bugs.jqueryui.com/ticket/8206), [c21aa07](http://github.com/jquery/jquery-ui/commit/c21aa07c1baf506034eef109db1482509f9ae9ea))
-* Fixed: Incorrect values in Persian localization. ([#8225](http://bugs.jqueryui.com/ticket/8225), [c45911c](http://github.com/jquery/jquery-ui/commit/c45911c98df6af6bb679fe256ae23bab4e7f036f))
-* Fixed: IE8 does not create a new scope for catch blocks and will cause problems in IE8. ([#8138](http://bugs.jqueryui.com/ticket/8138), [5c2eea3](http://github.com/jquery/jquery-ui/commit/5c2eea3fd9bdb069fba6ce962aa885c49b4615a0))
+* Added: Georgian localization. ([#8205](https://bugs.jqueryui.com/ticket/8205), [4451f86](https://github.com/jquery/jquery-ui/commit/4451f86eda11a384181a7a1c8f11109b63371203))
+* Fixed: Localization error in et locale (week header). ([#8129](https://bugs.jqueryui.com/ticket/8129), [35e2919](https://github.com/jquery/jquery-ui/commit/35e291937591326fdc909f88eb948272c98edf39))
+* Fixed: Provide a better German translation for the week header. ([#8231](https://bugs.jqueryui.com/ticket/8231), [8b46758](https://github.com/jquery/jquery-ui/commit/8b46758f271f94f0acf3416690cc6a70708b3a9e))
+* Fixed: Incorrect day name for Finnish localization. ([#8194](https://bugs.jqueryui.com/ticket/8194), [91df42e](https://github.com/jquery/jquery-ui/commit/91df42ec40b22b74a18bcc5fd29081f948e8c9f9))
+* Fixed: Datepicker is stuck open if label is clicked from open state. ([#8174](https://bugs.jqueryui.com/ticket/8174), [fc6e72b](https://github.com/jquery/jquery-ui/commit/fc6e72bf7399ecde5f15de88fd750a9a49b55b77))
+* Fixed: Incorrect month name for Macedonian localization. ([#8206](https://bugs.jqueryui.com/ticket/8206), [c21aa07](https://github.com/jquery/jquery-ui/commit/c21aa07c1baf506034eef109db1482509f9ae9ea))
+* Fixed: Incorrect values in Persian localization. ([#8225](https://bugs.jqueryui.com/ticket/8225), [c45911c](https://github.com/jquery/jquery-ui/commit/c45911c98df6af6bb679fe256ae23bab4e7f036f))
+* Fixed: IE8 does not create a new scope for catch blocks and will cause problems in IE8. ([#8138](https://bugs.jqueryui.com/ticket/8138), [5c2eea3](https://github.com/jquery/jquery-ui/commit/5c2eea3fd9bdb069fba6ce962aa885c49b4615a0))
### Tabs
-* Fixed: Error with href selector. ([#8207](http://bugs.jqueryui.com/ticket/8207), [090ce43](http://github.com/jquery/jquery-ui/commit/090ce4369d12751f2e55e62f6cc7f7fbc5dc6f2a))
+* Fixed: Error with href selector. ([#8207](https://bugs.jqueryui.com/ticket/8207), [090ce43](https://github.com/jquery/jquery-ui/commit/090ce4369d12751f2e55e62f6cc7f7fbc5dc6f2a))
## Effects
-* Fixed: addClass not animating. ([#8113](http://bugs.jqueryui.com/ticket/8113), [e220cf2](http://github.com/jquery/jquery-ui/commit/e220cf2a7dc709fdbbdfeacbb29378e005a0afd8))
+* Fixed: addClass not animating. ([#8113](https://bugs.jqueryui.com/ticket/8113), [e220cf2](https://github.com/jquery/jquery-ui/commit/e220cf2a7dc709fdbbdfeacbb29378e005a0afd8))
diff --git a/page/changelog/1.8.2.md b/page/changelog/1.8.2.md
index e1e973a..ed39857 100644
--- a/page/changelog/1.8.2.md
+++ b/page/changelog/1.8.2.md
@@ -2,62 +2,64 @@
"title": "jQuery UI 1.8.2 Changelog"
}
+Released on May 20, 2010
+
## Build
-* Fixed: error - invalid increment operand. ([#5576](http://bugs.jqueryui.com/ticket/5576), [fcbf4c0](http://github.com/jquery/jquery-ui/commit/fcbf4c0872cfc0b0c9fa9e6808ff0654e4decd98))
+* Fixed: error - invalid increment operand. ([#5576](https://bugs.jqueryui.com/ticket/5576), [fcbf4c0](https://github.com/jquery/jquery-ui/commit/fcbf4c0872cfc0b0c9fa9e6808ff0654e4decd98))
## Core & Utilities
### UI Core
-* Added: COMMAND/COMMAND_LEFT/WINDOWS, COMMAND_RIGHT/MENU key codes. ([#5542](http://bugs.jqueryui.com/ticket/5542), [3570c1f](http://github.com/jquery/jquery-ui/commit/3570c1f768244b252cad86ac0f8707de0234fe6c))
-* Fixed: Better detection of when core is loaded twice. ([#5636](http://bugs.jqueryui.com/ticket/5636), [afaa035](http://github.com/jquery/jquery-ui/commit/afaa03575f22bda227ac82ed3bb08bc29ba3b1be))
+* Added: COMMAND/COMMAND_LEFT/WINDOWS, COMMAND_RIGHT/MENU key codes. ([#5542](https://bugs.jqueryui.com/ticket/5542), [3570c1f](https://github.com/jquery/jquery-ui/commit/3570c1f768244b252cad86ac0f8707de0234fe6c))
+* Fixed: Better detection of when core is loaded twice. ([#5636](https://bugs.jqueryui.com/ticket/5636), [afaa035](https://github.com/jquery/jquery-ui/commit/afaa03575f22bda227ac82ed3bb08bc29ba3b1be))
## Interactions
### Selectable
-* Fixed: Ctrl + Click on selected list item does not deselect ([#4293](http://bugs.jqueryui.com/ticket/4293), [#5464](http://bugs.jqueryui.com/ticket/5464), [#5573](http://bugs.jqueryui.com/ticket/5573), [5b4c04a](http://github.com/jquery/jquery-ui/commit/5b4c04acb5cff032afae437c343239ee9bf4e04f), [e780583](http://github.com/jquery/jquery-ui/commit/e780583694f69513e4f3759e8b198c18313b8f0c))
-* Fixed: Selectable has helper css hardcoded in JS ([#5607](http://bugs.jqueryui.com/ticket/5607), [#4761](http://bugs.jqueryui.com/ticket/4761), [05725e2](http://github.com/jquery/jquery-ui/commit/05725e25aea335ecb9c7cf3b03eba8ee68153fb5))
+* Fixed: Ctrl + Click on selected list item does not deselect ([#4293](https://bugs.jqueryui.com/ticket/4293), [#5464](https://bugs.jqueryui.com/ticket/5464), [#5573](https://bugs.jqueryui.com/ticket/5573), [5b4c04a](https://github.com/jquery/jquery-ui/commit/5b4c04acb5cff032afae437c343239ee9bf4e04f), [e780583](https://github.com/jquery/jquery-ui/commit/e780583694f69513e4f3759e8b198c18313b8f0c))
+* Fixed: Selectable has helper css hardcoded in JS ([#5607](https://bugs.jqueryui.com/ticket/5607), [#4761](https://bugs.jqueryui.com/ticket/4761), [05725e2](https://github.com/jquery/jquery-ui/commit/05725e25aea335ecb9c7cf3b03eba8ee68153fb5))
### Sortable
-* Fixed: 'this.options is undefined' when setting options ([#5581](http://bugs.jqueryui.com/ticket/5581), [#5621](http://bugs.jqueryui.com/ticket/5621), [a4488af](http://github.com/jquery/jquery-ui/commit/a4488aff7c62f3e2db6f894b5f24cfd0adb8c6b7))
+* Fixed: 'this.options is undefined' when setting options ([#5581](https://bugs.jqueryui.com/ticket/5581), [#5621](https://bugs.jqueryui.com/ticket/5621), [a4488af](https://github.com/jquery/jquery-ui/commit/a4488aff7c62f3e2db6f894b5f24cfd0adb8c6b7))
## Widgets
### Accordion
-* Fixed: Comparing element.nodeName directly against upper case tag names can cause problems. ([#5557](http://bugs.jqueryui.com/ticket/5557), [0aa4c7f](http://github.com/jquery/jquery-ui/commit/0aa4c7f9b6bc13791197b1486afdad02693e5dee))
+* Fixed: Comparing element.nodeName directly against upper case tag names can cause problems. ([#5557](https://bugs.jqueryui.com/ticket/5557), [0aa4c7f](https://github.com/jquery/jquery-ui/commit/0aa4c7f9b6bc13791197b1486afdad02693e5dee))
### Autocomplete
-* Fixed: Changed cache demo to cache all results. ([#5398](http://bugs.jqueryui.com/ticket/5398), [e087e7d](http://github.com/jquery/jquery-ui/commit/e087e7dee07555f7b78e108dc414959998628ec7))
-* Fixed: Ignore command (left and right/menu/windows), insert, caps lock, home, end keys. ([#5415](http://bugs.jqueryui.com/ticket/5415), [cb7eb69](http://github.com/jquery/jquery-ui/commit/cb7eb69973c62f26bcde0325a33a5c837bc9b5e9))
-* Fixed: Prevent autocomplete-menu from closing when clicking 'slowly', eg. a long mousedown. ([#5405](http://bugs.jqueryui.com/ticket/5405), [fc093e9](http://github.com/jquery/jquery-ui/commit/fc093e9feb4450b1ab93e3da9a2f7abb1d4335b5))
+* Fixed: Changed cache demo to cache all results. ([#5398](https://bugs.jqueryui.com/ticket/5398), [e087e7d](https://github.com/jquery/jquery-ui/commit/e087e7dee07555f7b78e108dc414959998628ec7))
+* Fixed: Ignore command (left and right/menu/windows), insert, caps lock, home, end keys. ([#5415](https://bugs.jqueryui.com/ticket/5415), [cb7eb69](https://github.com/jquery/jquery-ui/commit/cb7eb69973c62f26bcde0325a33a5c837bc9b5e9))
+* Fixed: Prevent autocomplete-menu from closing when clicking 'slowly', eg. a long mousedown. ([#5405](https://bugs.jqueryui.com/ticket/5405), [fc093e9](https://github.com/jquery/jquery-ui/commit/fc093e9feb4450b1ab93e3da9a2f7abb1d4335b5))
### Button
-* Fixed: Mission semicolon on line 5368 ([#5536](http://bugs.jqueryui.com/ticket/5536), [02c3295](http://github.com/jquery/jquery-ui/commit/02c32959d9761e56be9471f87eff0554b4f4a61d))
-* Fixed: Remove previous text/icon classes when updating buttons. ([#5567](http://bugs.jqueryui.com/ticket/5567), [01ad6ce](http://github.com/jquery/jquery-ui/commit/01ad6ce83e7d33c4a51002aa777bd26c39007788))
+* Fixed: Mission semicolon on line 5368 ([#5536](https://bugs.jqueryui.com/ticket/5536), [02c3295](https://github.com/jquery/jquery-ui/commit/02c32959d9761e56be9471f87eff0554b4f4a61d))
+* Fixed: Remove previous text/icon classes when updating buttons. ([#5567](https://bugs.jqueryui.com/ticket/5567), [01ad6ce](https://github.com/jquery/jquery-ui/commit/01ad6ce83e7d33c4a51002aa777bd26c39007788))
### Datepicker
-* Fixed: Slovak localization. ([#5600](http://bugs.jqueryui.com/ticket/5600), [b53b48b](http://github.com/jquery/jquery-ui/commit/b53b48b61834fc09fdcd0e27e6f0d9aa5a2c1cd4))
-* Fixed: Wrong date format for polish regional ([#5522](http://bugs.jqueryui.com/ticket/5522), [5fd1580](http://github.com/jquery/jquery-ui/commit/5fd158053f01130e2eded9d5a41214719cf32a90))
-* Fixed: Change default opening animation to fadeIn ([#5609](http://bugs.jqueryui.com/ticket/5609), [dc646c0](http://github.com/jquery/jquery-ui/commit/dc646c01fe97b54e3bb486b55caacf69bd3b12ac))
+* Fixed: Slovak localization. ([#5600](https://bugs.jqueryui.com/ticket/5600), [b53b48b](https://github.com/jquery/jquery-ui/commit/b53b48b61834fc09fdcd0e27e6f0d9aa5a2c1cd4))
+* Fixed: Wrong date format for polish regional ([#5522](https://bugs.jqueryui.com/ticket/5522), [5fd1580](https://github.com/jquery/jquery-ui/commit/5fd158053f01130e2eded9d5a41214719cf32a90))
+* Fixed: Change default opening animation to fadeIn ([#5609](https://bugs.jqueryui.com/ticket/5609), [dc646c0](https://github.com/jquery/jquery-ui/commit/dc646c01fe97b54e3bb486b55caacf69bd3b12ac))
### Slider
-* Fixed: Slider displays negative fractional values incorrectly. ([#5583](http://bugs.jqueryui.com/ticket/5583), [34912bc](http://github.com/jquery/jquery-ui/commit/34912bc933d2787b0e3143b4dbd84e70bcc67928))
-* Fixed: Slider can go outside min and max with keyboard ([#5591](http://bugs.jqueryui.com/ticket/5591), [114c001](http://github.com/jquery/jquery-ui/commit/114c001aba3406e35e4fa1343501de7518257519))
+* Fixed: Slider displays negative fractional values incorrectly. ([#5583](https://bugs.jqueryui.com/ticket/5583), [34912bc](https://github.com/jquery/jquery-ui/commit/34912bc933d2787b0e3143b4dbd84e70bcc67928))
+* Fixed: Slider can go outside min and max with keyboard ([#5591](https://bugs.jqueryui.com/ticket/5591), [114c001](https://github.com/jquery/jquery-ui/commit/114c001aba3406e35e4fa1343501de7518257519))
## Documentation
-* Fixed: Error in jQuery Widget example under UI Developer Docs. ([#5618](http://bugs.jqueryui.com/ticket/5618))
-* Fixed: Selectable: documentation of event types is incorrect ([#5590](http://bugs.jqueryui.com/ticket/5590))
+* Fixed: Error in jQuery Widget example under UI Developer Docs. ([#5618](https://bugs.jqueryui.com/ticket/5618))
+* Fixed: Selectable: documentation of event types is incorrect ([#5590](https://bugs.jqueryui.com/ticket/5590))
## Demos
-* Fixed: Autocomplete cache demo caches all results. ([#5398](http://bugs.jqueryui.com/ticket/5398), [e087e7d](http://github.com/jquery/jquery-ui/commit/e087e7dee07555f7b78e108dc414959998628ec7))
-* Fixed: Don't include transfer affect in Show/Hide/Toggle demos. ([888725a](http://github.com/jquery/jquery-ui/commit/888725a17b66e73ecfb4716488a14fc5942e7477))
+* Fixed: Autocomplete cache demo caches all results. ([#5398](https://bugs.jqueryui.com/ticket/5398), [e087e7d](https://github.com/jquery/jquery-ui/commit/e087e7dee07555f7b78e108dc414959998628ec7))
+* Fixed: Don't include transfer affect in Show/Hide/Toggle demos. ([888725a](https://github.com/jquery/jquery-ui/commit/888725a17b66e73ecfb4716488a14fc5942e7477))
diff --git a/page/changelog/1.8.20.md b/page/changelog/1.8.20.md
index cde15f3..c96a706 100644
--- a/page/changelog/1.8.20.md
+++ b/page/changelog/1.8.20.md
@@ -2,24 +2,26 @@
"title": "jQuery UI 1.8.20 Changelog"
}
+Released on April 30, 2012
+
## Build
-* Fixed: Minified files are missing terminating semicolon. ([#8257](http://bugs.jqueryui.com/ticket/8257), [365e102](http://github.com/jquery/jquery-ui/commit/365e1022578da9ca96bbbd29c6e2bb8049796c4a))
-* Fixed: @VERSION replacement incomplete. ([#8261](http://bugs.jqueryui.com/ticket/8261), [2f4c74c](http://github.com/jquery/jquery-ui/commit/2f4c74c4cec9e44e003b1d2570b259dfaf9f57d9))
+* Fixed: Minified files are missing terminating semicolon. ([#8257](https://bugs.jqueryui.com/ticket/8257), [365e102](https://github.com/jquery/jquery-ui/commit/365e1022578da9ca96bbbd29c6e2bb8049796c4a))
+* Fixed: @VERSION replacement incomplete. ([#8261](https://bugs.jqueryui.com/ticket/8261), [2f4c74c](https://github.com/jquery/jquery-ui/commit/2f4c74c4cec9e44e003b1d2570b259dfaf9f57d9))
## Interactions
### Draggable
-* Fixed: Removing draggable element on drop : a(this).data("draggable") is undefined. ([#8269](http://bugs.jqueryui.com/ticket/8269), [f0c3cf6](http://github.com/jquery/jquery-ui/commit/f0c3cf6f1a623e7e6aa19c182b2b61c783a3bfc3))
+* Fixed: Removing draggable element on drop : a(this).data("draggable") is undefined. ([#8269](https://bugs.jqueryui.com/ticket/8269), [f0c3cf6](https://github.com/jquery/jquery-ui/commit/f0c3cf6f1a623e7e6aa19c182b2b61c783a3bfc3))
### Sortable
-* Fixed: jQuery UI 1.8.19 don't respect forcePlaceholderSize. ([#8262](http://bugs.jqueryui.com/ticket/8262), [1ffafe6](http://github.com/jquery/jquery-ui/commit/1ffafe65b0dd2d8b0ae4dfcfe3beffb3123c7caf))
-* Fixed: Placeholder doesn't move when dragging outside of container element. ([#8274](http://bugs.jqueryui.com/ticket/8274), [81835fa](http://github.com/jquery/jquery-ui/commit/81835fab0c43f18e4033650adaeae2f22d3efd5b))
+* Fixed: jQuery UI 1.8.19 don't respect forcePlaceholderSize. ([#8262](https://bugs.jqueryui.com/ticket/8262), [1ffafe6](https://github.com/jquery/jquery-ui/commit/1ffafe65b0dd2d8b0ae4dfcfe3beffb3123c7caf))
+* Fixed: Placeholder doesn't move when dragging outside of container element. ([#8274](https://bugs.jqueryui.com/ticket/8274), [81835fa](https://github.com/jquery/jquery-ui/commit/81835fab0c43f18e4033650adaeae2f22d3efd5b))
## Widgets
### Datepicker
-* Fixed: Incorrect translations for Hindi locale. ([#8265](http://bugs.jqueryui.com/ticket/8265), [849b562](http://github.com/jquery/jquery-ui/commit/849b56238c1c57d49edfd8489f2f51fa77c58a99))
+* Fixed: Incorrect translations for Hindi locale. ([#8265](https://bugs.jqueryui.com/ticket/8265), [849b562](https://github.com/jquery/jquery-ui/commit/849b56238c1c57d49edfd8489f2f51fa77c58a99))
diff --git a/page/changelog/1.8.21.md b/page/changelog/1.8.21.md
index 0dbe2d5..f95b13d 100644
--- a/page/changelog/1.8.21.md
+++ b/page/changelog/1.8.21.md
@@ -2,46 +2,48 @@
"title": "jQuery UI 1.8.21 Changelog"
}
+Released on June 5, 2012
+
## Core & Utilities
### Position
-* Fixed: Position module throws uncaught exception on IE8 with jQuery 1.3.2. ([#8254](http://bugs.jqueryui.com/ticket/8254), [3cf2b7c](http://github.com/jquery/jquery-ui/commit/3cf2b7c45facd0e01edbaeec74082382f1da1499))
+* Fixed: Position module throws uncaught exception on IE8 with jQuery 1.3.2. ([#8254](https://bugs.jqueryui.com/ticket/8254), [3cf2b7c](https://github.com/jquery/jquery-ui/commit/3cf2b7c45facd0e01edbaeec74082382f1da1499))
## Interactions
### Draggable
-* Fixed: Incorrect dimensions used if .ui-draggable-dragging changes dimensions. ([#8349](http://bugs.jqueryui.com/ticket/8349), [168a21d](http://github.com/jquery/jquery-ui/commit/168a21d5ef3e0df0f03aa860ae798a8f7de35210))
+* Fixed: Incorrect dimensions used if .ui-draggable-dragging changes dimensions. ([#8349](https://bugs.jqueryui.com/ticket/8349), [168a21d](https://github.com/jquery/jquery-ui/commit/168a21d5ef3e0df0f03aa860ae798a8f7de35210))
### Sortable
-* Fixed: Items may not be inserted into the correct position when dragged between connected sortables. ([#8268](http://bugs.jqueryui.com/ticket/8268), [b76ac30](http://github.com/jquery/jquery-ui/commit/b76ac3057fbb9040481b4217743a4a4f5df2a5c2))
-* Fixed: Helper in a bottom-positioned Sortable is positioned wrong on drag start. ([#5321](http://bugs.jqueryui.com/ticket/5321), [8e899da](http://github.com/jquery/jquery-ui/commit/8e899dab6cd1fc410bbda0e7c88cdf1a1c8e9764))
+* Fixed: Items may not be inserted into the correct position when dragged between connected sortables. ([#8268](https://bugs.jqueryui.com/ticket/8268), [b76ac30](https://github.com/jquery/jquery-ui/commit/b76ac3057fbb9040481b4217743a4a4f5df2a5c2))
+* Fixed: Helper in a bottom-positioned Sortable is positioned wrong on drag start. ([#5321](https://bugs.jqueryui.com/ticket/5321), [8e899da](https://github.com/jquery/jquery-ui/commit/8e899dab6cd1fc410bbda0e7c88cdf1a1c8e9764))
## Widgets
### Autocomplete
-* Fixed: Combobox demo should not override .ui-button styles. ([#8322](http://bugs.jqueryui.com/ticket/8322), [637d102](http://github.com/jquery/jquery-ui/commit/637d102e59b4b8e6bf4f631bdbe8d298e5874f63))
+* Fixed: Combobox demo should not override .ui-button styles. ([#8322](https://bugs.jqueryui.com/ticket/8322), [637d102](https://github.com/jquery/jquery-ui/commit/637d102e59b4b8e6bf4f631bdbe8d298e5874f63))
### Datepicker
-* Fixed: Double Click on from date in Date range datepicker. ([#8292](http://bugs.jqueryui.com/ticket/8292), [6a665a1](http://github.com/jquery/jquery-ui/commit/6a665a1377fd62306c6fb4ff96613fe31964ecf4))
-* Fixed: Incorrect dayNamesMin for Arabic locale. ([#8375](http://bugs.jqueryui.com/ticket/8375), [d0acccf](http://github.com/jquery/jquery-ui/commit/d0acccf3cc53a7759db4798c2998029586b032a3))
-* Fixed: jquery.ui.datepicker-ge.js has wrong language code. ([#8356](http://bugs.jqueryui.com/ticket/8356), [647a9ea](http://github.com/jquery/jquery-ui/commit/647a9eab585edaaaf8c7165bde45c39eff23cfae))
-* Fixed: Basque locale incorrect. ([#8318](http://bugs.jqueryui.com/ticket/8318), [0cbfb2f](http://github.com/jquery/jquery-ui/commit/0cbfb2ff7060c8c53d6fd4e094f5965ea8667414))
+* Fixed: Double Click on from date in Date range datepicker. ([#8292](https://bugs.jqueryui.com/ticket/8292), [6a665a1](https://github.com/jquery/jquery-ui/commit/6a665a1377fd62306c6fb4ff96613fe31964ecf4))
+* Fixed: Incorrect dayNamesMin for Arabic locale. ([#8375](https://bugs.jqueryui.com/ticket/8375), [d0acccf](https://github.com/jquery/jquery-ui/commit/d0acccf3cc53a7759db4798c2998029586b032a3))
+* Fixed: jquery.ui.datepicker-ge.js has wrong language code. ([#8356](https://bugs.jqueryui.com/ticket/8356), [647a9ea](https://github.com/jquery/jquery-ui/commit/647a9eab585edaaaf8c7165bde45c39eff23cfae))
+* Fixed: Basque locale incorrect. ([#8318](https://bugs.jqueryui.com/ticket/8318), [0cbfb2f](https://github.com/jquery/jquery-ui/commit/0cbfb2ff7060c8c53d6fd4e094f5965ea8667414))
### Progressbar
-* Fixed: Theme on animated progressbar remains the same. ([#8314](http://bugs.jqueryui.com/ticket/8314), [f6019da](http://github.com/jquery/jquery-ui/commit/f6019dad4d523dd89b55800aec47e601fbd20c1c))
+* Fixed: Theme on animated progressbar remains the same. ([#8314](https://bugs.jqueryui.com/ticket/8314), [f6019da](https://github.com/jquery/jquery-ui/commit/f6019dad4d523dd89b55800aec47e601fbd20c1c))
## Effects
-* Fixed: jquery-ui animations focus fix causes Firefox Security Manager veto. ([#8288](http://bugs.jqueryui.com/ticket/8288), [b676d59](http://github.com/jquery/jquery-ui/commit/b676d5956137d8bc35087e3160813a025be436d0))
+* Fixed: jquery-ui animations focus fix causes Firefox Security Manager veto. ([#8288](https://bugs.jqueryui.com/ticket/8288), [b676d59](https://github.com/jquery/jquery-ui/commit/b676d5956137d8bc35087e3160813a025be436d0))
## Website
### ThemeRoller
-* Fixed: Syntax issue in Overcast UI theme. ([#7299](http://bugs.jqueryui.com/ticket/7299))
+* Fixed: Syntax issue in Overcast UI theme. ([#7299](https://bugs.jqueryui.com/ticket/7299))
diff --git a/page/changelog/1.8.22.md b/page/changelog/1.8.22.md
index f546ed9..96ed30a 100644
--- a/page/changelog/1.8.22.md
+++ b/page/changelog/1.8.22.md
@@ -2,16 +2,18 @@
"title": "jQuery UI 1.8.22 Changelog"
}
+Released on July 24, 2012
+
## Interactions
### Sortable
-* Fixed: Draggable with sortable makes sortable event receive triggered wrong. ([#8430](http://bugs.jqueryui.com/ticket/8430), [347aa33](http://github.com/jquery/jquery-ui/commit/347aa335f001c6e80e6670c90c6262a358b89932))
+* Fixed: Draggable with sortable makes sortable event receive triggered wrong. ([#8430](https://bugs.jqueryui.com/ticket/8430), [347aa33](https://github.com/jquery/jquery-ui/commit/347aa335f001c6e80e6670c90c6262a358b89932))
## Widgets
### Datepicker
-* Fixed: Datepicker dialog has a negative z-index. ([#7449](http://bugs.jqueryui.com/ticket/7449), [fa5e7c1](http://github.com/jquery/jquery-ui/commit/fa5e7c17a804e667513662ea9fbb7e8e6986e42c))
-* Fixed: DatePicker doesn't work inside fixed div. ([#5626](http://bugs.jqueryui.com/ticket/5626), [9c1780f](http://github.com/jquery/jquery-ui/commit/9c1780f640e2c9cbcbca1182989ae511408c04e9))
-* Fixed: DatePicker does not respond to any click events in AIR, Google Sites, Windows Metro. ([#3945](http://bugs.jqueryui.com/ticket/3945), [831333a](http://github.com/jquery/jquery-ui/commit/831333a10aebad00b30d51cb274f463240c56814))
+* Fixed: Datepicker dialog has a negative z-index. ([#7449](https://bugs.jqueryui.com/ticket/7449), [fa5e7c1](https://github.com/jquery/jquery-ui/commit/fa5e7c17a804e667513662ea9fbb7e8e6986e42c))
+* Fixed: DatePicker doesn't work inside fixed div. ([#5626](https://bugs.jqueryui.com/ticket/5626), [9c1780f](https://github.com/jquery/jquery-ui/commit/9c1780f640e2c9cbcbca1182989ae511408c04e9))
+* Fixed: DatePicker does not respond to any click events in AIR, Google Sites, Windows Metro. ([#3945](https://bugs.jqueryui.com/ticket/3945), [831333a](https://github.com/jquery/jquery-ui/commit/831333a10aebad00b30d51cb274f463240c56814))
diff --git a/page/changelog/1.8.23.md b/page/changelog/1.8.23.md
index f8a101c..f703414 100644
--- a/page/changelog/1.8.23.md
+++ b/page/changelog/1.8.23.md
@@ -2,28 +2,30 @@
"title": "jQuery UI 1.8.23 Changelog"
}
+Released on August 15, 2012
+
## Core & Utilities
### Position
-* Fixed: 1.8 Compat; Position still uses $.curCSS. ([#8501](http://bugs.jqueryui.com/ticket/8501), [04df2b9](http://github.com/jquery/jquery-ui/commit/04df2b95421bc6c440b4205d88c6a56e84fdee30))
+* Fixed: 1.8 Compat; Position still uses $.curCSS. ([#8501](https://bugs.jqueryui.com/ticket/8501), [04df2b9](https://github.com/jquery/jquery-ui/commit/04df2b95421bc6c440b4205d88c6a56e84fdee30))
## Interactions
### Draggable
-* Fixed: Draggable breaks during drag if any other draggable is removed or destroyed. ([#8416](http://bugs.jqueryui.com/ticket/8416), [25f20b1](http://github.com/jquery/jquery-ui/commit/25f20b18bd43dd4259b64e016d397ba45f5c6934))
+* Fixed: Draggable breaks during drag if any other draggable is removed or destroyed. ([#8416](https://bugs.jqueryui.com/ticket/8416), [25f20b1](https://github.com/jquery/jquery-ui/commit/25f20b18bd43dd4259b64e016d397ba45f5c6934))
## Widgets
### Datepicker
-* Fixed: Escaped id does not work. ([#8480](http://bugs.jqueryui.com/ticket/8480), [b92965a](http://github.com/jquery/jquery-ui/commit/b92965a78121534c113b1d717a75cee728548520))
+* Fixed: Escaped id does not work. ([#8480](https://bugs.jqueryui.com/ticket/8480), [b92965a](https://github.com/jquery/jquery-ui/commit/b92965a78121534c113b1d717a75cee728548520))
### Dialog
-* Fixed: Text of buttons in dialog is not shown with jquery 1.8.0. ([#8484](http://bugs.jqueryui.com/ticket/8484), [5e935ea](http://github.com/jquery/jquery-ui/commit/5e935ead9fbfb0ab368a9828a4d4b8d17eb38d5c))
+* Fixed: Text of buttons in dialog is not shown with jquery 1.8.0. ([#8484](https://bugs.jqueryui.com/ticket/8484), [5e935ea](https://github.com/jquery/jquery-ui/commit/5e935ead9fbfb0ab368a9828a4d4b8d17eb38d5c))
## Effects
-* Fixed: 1.8.22 with jQuery 1.8 breaks 0 duration animations. ([#8493](http://bugs.jqueryui.com/ticket/8493), [c7223b9](http://github.com/jquery/jquery-ui/commit/c7223b952d662cd2f0f0886705ffcd1931620fe2))
+* Fixed: 1.8.22 with jQuery 1.8 breaks 0 duration animations. ([#8493](https://bugs.jqueryui.com/ticket/8493), [c7223b9](https://github.com/jquery/jquery-ui/commit/c7223b952d662cd2f0f0886705ffcd1931620fe2))
diff --git a/page/changelog/1.8.24.md b/page/changelog/1.8.24.md
index a3ed972..085c745 100644
--- a/page/changelog/1.8.24.md
+++ b/page/changelog/1.8.24.md
@@ -2,23 +2,25 @@
"title": "jQuery UI 1.8.24 Changelog"
}
+Released on September 28, 2012
+
## Interactions
### Draggable
-* Fixed: iframeFix option leaves iframes in DOM when using a selector. ([#8555](http://bugs.jqueryui.com/ticket/8555), [65bada3](http://github.com/jquery/jquery-ui/commit/65bada311322706c870c1af78529c9c23d66bff3))
+* Fixed: iframeFix option leaves iframes in DOM when using a selector. ([#8555](https://bugs.jqueryui.com/ticket/8555), [65bada3](https://github.com/jquery/jquery-ui/commit/65bada311322706c870c1af78529c9c23d66bff3))
### Droppable
-* Fixed: Nested greedy droppables trigger parents events even when scopes are different. ([#8524](http://bugs.jqueryui.com/ticket/8524), [1cbd513](http://github.com/jquery/jquery-ui/commit/1cbd513aa3f2efa78838fb57ae7251290abec993))
+* Fixed: Nested greedy droppables trigger parents events even when scopes are different. ([#8524](https://bugs.jqueryui.com/ticket/8524), [1cbd513](https://github.com/jquery/jquery-ui/commit/1cbd513aa3f2efa78838fb57ae7251290abec993))
### Sortable
-* Fixed: Remove and receive events on nested sortables. ([#5159](http://bugs.jqueryui.com/ticket/5159), [c0d0283](http://github.com/jquery/jquery-ui/commit/c0d0283b3bab4fc211b086aa0fbeaa77aad0ce52))
-* Fixed: Nested lists don't work properly with sortable. ([#4857](http://bugs.jqueryui.com/ticket/4857), [a4ae382](http://github.com/jquery/jquery-ui/commit/a4ae3824893c085043122fd83d80723a08061ae2))
+* Fixed: Remove and receive events on nested sortables. ([#5159](https://bugs.jqueryui.com/ticket/5159), [c0d0283](https://github.com/jquery/jquery-ui/commit/c0d0283b3bab4fc211b086aa0fbeaa77aad0ce52))
+* Fixed: Nested lists don't work properly with sortable. ([#4857](https://bugs.jqueryui.com/ticket/4857), [a4ae382](https://github.com/jquery/jquery-ui/commit/a4ae3824893c085043122fd83d80723a08061ae2))
## Widgets
### Datepicker
-* Fixed: Localization Issue: the monthNameShort in Chinese is wrong. ([#8511](http://bugs.jqueryui.com/ticket/8511), [35cf028](http://github.com/jquery/jquery-ui/commit/35cf02860c684fa78680fa1a0546ee5533bd8f74))
+* Fixed: Localization Issue: the monthNameShort in Chinese is wrong. ([#8511](https://bugs.jqueryui.com/ticket/8511), [35cf028](https://github.com/jquery/jquery-ui/commit/35cf02860c684fa78680fa1a0546ee5533bd8f74))
diff --git a/page/changelog/1.8.4.md b/page/changelog/1.8.4.md
index 08f3fc7..80f108b 100644
--- a/page/changelog/1.8.4.md
+++ b/page/changelog/1.8.4.md
@@ -2,143 +2,145 @@
"title": "jQuery UI 1.8.4 Changelog"
}
+Released on August 5, 2010
+
Because of the short lifespan of jQuery UI 1.8.3, this changelog includes all changes made in 1.8.3 and 1.8.4.
## All
-* Added: Define a local undefined variable inside the main closure. ([21aad10](http://github.com/jquery/jquery-ui/commit/21aad10e6aa68610feee69062a1cad750497c83f))
-* Added: Updated copyright headers to make it clear that you can choose between MIT and GPLv2. Added links to http://jquery.org/license and http://jqueryui.com/about. ([8a5d4ca](http://github.com/jquery/jquery-ui/commit/8a5d4ca3213e1e80fdbe51243ddaa27c8e618a73))
+* Added: Define a local undefined variable inside the main closure. ([21aad10](https://github.com/jquery/jquery-ui/commit/21aad10e6aa68610feee69062a1cad750497c83f))
+* Added: Updated copyright headers to make it clear that you can choose between MIT and GPLv2. Added links to https://jquery.org/license/ and https://jqueryui.com/about/. ([8a5d4ca](https://github.com/jquery/jquery-ui/commit/8a5d4ca3213e1e80fdbe51243ddaa27c8e618a73))
## Build
-* Removed: googlecdn target from default target, as that requires themes-target to run first, which requires updated downloadbuilder ([0bfbd7a](http://github.com/jquery/jquery-ui/commit/0bfbd7afa1a0eb72737a93c0b43d69e2c2d5cb15))
-* Added: automate theme downloading, first draft ([4c3899c](http://github.com/jquery/jquery-ui/commit/4c3899cd351ffd5225c266815be65a3936a51c68))
-* Added: create themes.zip as part of themes-download target ([a8311f9](http://github.com/jquery/jquery-ui/commit/a8311f955a0cf3fef005955109dcdbfd1a7a08df))
-* Fixed: Download docs directly to dist folder ([4069642](http://github.com/jquery/jquery-ui/commit/4069642f21bf2dcc307b5c8bd08158d8052587c5))
-* Fixed: all zips should contain folder at root named same as zip ([#5759](http://bugs.jqueryui.com/ticket/5759), [3824f75](http://github.com/jquery/jquery-ui/commit/3824f75c004c983cde7e8c26e7c234a2f77c5913))
-* Fixed: themes zip named incorrectly ([#5760](http://bugs.jqueryui.com/ticket/5760), [496b408](http://github.com/jquery/jquery-ui/commit/496b40802b150057da0544382b6a14a78404b0fc))
-* Fixed: sometimes headered files aren't copied to minified directory ([#5904](http://bugs.jqueryui.com/ticket/5904), [b242a57](http://github.com/jquery/jquery-ui/commit/b242a577f29a5cfef2cf69a1f3e78f52314b6ab1))
+* Removed: googlecdn target from default target, as that requires themes-target to run first, which requires updated downloadbuilder ([0bfbd7a](https://github.com/jquery/jquery-ui/commit/0bfbd7afa1a0eb72737a93c0b43d69e2c2d5cb15))
+* Added: automate theme downloading, first draft ([4c3899c](https://github.com/jquery/jquery-ui/commit/4c3899cd351ffd5225c266815be65a3936a51c68))
+* Added: create themes.zip as part of themes-download target ([a8311f9](https://github.com/jquery/jquery-ui/commit/a8311f955a0cf3fef005955109dcdbfd1a7a08df))
+* Fixed: Download docs directly to dist folder ([4069642](https://github.com/jquery/jquery-ui/commit/4069642f21bf2dcc307b5c8bd08158d8052587c5))
+* Fixed: all zips should contain folder at root named same as zip ([#5759](https://bugs.jqueryui.com/ticket/5759), [3824f75](https://github.com/jquery/jquery-ui/commit/3824f75c004c983cde7e8c26e7c234a2f77c5913))
+* Fixed: themes zip named incorrectly ([#5760](https://bugs.jqueryui.com/ticket/5760), [496b408](https://github.com/jquery/jquery-ui/commit/496b40802b150057da0544382b6a14a78404b0fc))
+* Fixed: sometimes headered files aren't copied to minified directory ([#5904](https://bugs.jqueryui.com/ticket/5904), [b242a57](https://github.com/jquery/jquery-ui/commit/b242a577f29a5cfef2cf69a1f3e78f52314b6ab1))
## Core & Utilities
### UI Core
-* Added: .outerWidth(), .outerHeight(), .innerWidth(), .innerHeight() setters. ([#5850](http://bugs.jqueryui.com/ticket/5850), [4deb824](http://github.com/jquery/jquery-ui/commit/4deb824699b025d74d6849a73ec47c182df93fa0))
-* Fixed: $.fn.remove does not trigger remove event for <select>s ([#5743](http://bugs.jqueryui.com/ticket/5743), [89c0961](http://github.com/jquery/jquery-ui/commit/89c0961c3849db0d804b337f2d438c822074b112))
-* Partially Fixed: :focusable and :tabbable are broken with jQuery 1.3.2. ([#4488](http://bugs.jqueryui.com/ticket/4488), [fe13fba](http://github.com/jquery/jquery-ui/commit/fe13fbadd45b59fb67ce6b47c5aea6231596a7c7), [3f070bd](http://github.com/jquery/jquery-ui/commit/3f070bdc62a8d00ca6d8428b1a1fe9e39ff72c65))
+* Added: .outerWidth(), .outerHeight(), .innerWidth(), .innerHeight() setters. ([#5850](https://bugs.jqueryui.com/ticket/5850), [4deb824](https://github.com/jquery/jquery-ui/commit/4deb824699b025d74d6849a73ec47c182df93fa0))
+* Fixed: $.fn.remove does not trigger remove event for <select>s ([#5743](https://bugs.jqueryui.com/ticket/5743), [89c0961](https://github.com/jquery/jquery-ui/commit/89c0961c3849db0d804b337f2d438c822074b112))
+* Partially Fixed: :focusable and :tabbable are broken with jQuery 1.3.2. ([#4488](https://bugs.jqueryui.com/ticket/4488), [fe13fba](https://github.com/jquery/jquery-ui/commit/fe13fbadd45b59fb67ce6b47c5aea6231596a7c7), [3f070bd](https://github.com/jquery/jquery-ui/commit/3f070bdc62a8d00ca6d8428b1a1fe9e39ff72c65))
### Widget Factory
-* Fixed: Use $.data instead of .data for performance reasons ([#5756](http://bugs.jqueryui.com/ticket/5756), [b3940d2](http://github.com/jquery/jquery-ui/commit/b3940d2f78dfcc37792ceb97e5659b78f156794c))
-* Fixed: Using inheritance overwrites the base classes options. ([#5830](http://bugs.jqueryui.com/ticket/5830), [f24bc0f](http://github.com/jquery/jquery-ui/commit/f24bc0fb1f63e7f5e38014d7191a4fe69d4179f0))
+* Fixed: Use $.data instead of .data for performance reasons ([#5756](https://bugs.jqueryui.com/ticket/5756), [b3940d2](https://github.com/jquery/jquery-ui/commit/b3940d2f78dfcc37792ceb97e5659b78f156794c))
+* Fixed: Using inheritance overwrites the base classes options. ([#5830](https://bugs.jqueryui.com/ticket/5830), [f24bc0f](https://github.com/jquery/jquery-ui/commit/f24bc0fb1f63e7f5e38014d7191a4fe69d4179f0))
## Interactions
### Droppable
-* Fixed: tolerance fit feature. ([#5689](http://bugs.jqueryui.com/ticket/5689), [3f3f357](http://github.com/jquery/jquery-ui/commit/3f3f3571715d74d67fbf05d10f1815a087b7055b))
+* Fixed: tolerance fit feature. ([#5689](https://bugs.jqueryui.com/ticket/5689), [3f3f357](https://github.com/jquery/jquery-ui/commit/3f3f3571715d74d67fbf05d10f1815a087b7055b))
### Resizable
-* Fixed: Invalid reference in UI Resizable hack for Opera. ([#5694](http://bugs.jqueryui.com/ticket/5694), [#5662](http://bugs.jqueryui.com/ticket/5662), [#5695](http://bugs.jqueryui.com/ticket/5695), [#3842](http://bugs.jqueryui.com/ticket/3842), [7d24c1a](http://github.com/jquery/jquery-ui/commit/7d24c1a57ffcfa461dc48f6024b33e548179c491), [a78d5ee](http://github.com/jquery/jquery-ui/commit/a78d5ee4c8c21b2da2631d51a74779e958793c9d))
+* Fixed: Invalid reference in UI Resizable hack for Opera. ([#5694](https://bugs.jqueryui.com/ticket/5694), [#5662](https://bugs.jqueryui.com/ticket/5662), [#5695](https://bugs.jqueryui.com/ticket/5695), [#3842](https://bugs.jqueryui.com/ticket/3842), [7d24c1a](https://github.com/jquery/jquery-ui/commit/7d24c1a57ffcfa461dc48f6024b33e548179c491), [a78d5ee](https://github.com/jquery/jquery-ui/commit/a78d5ee4c8c21b2da2631d51a74779e958793c9d))
### Selectable
-* Fixed: Selectable helper has z-index hard coded ([#4475](http://bugs.jqueryui.com/ticket/4475), [a90e195](http://github.com/jquery/jquery-ui/commit/a90e195489915ed8a6d66005adea7844cbabe3e7))
-* Fixed: Selectable docs: .bind("selected") should be .bind("selectableselected") ([#5593](http://bugs.jqueryui.com/ticket/5593))
+* Fixed: Selectable helper has z-index hard coded ([#4475](https://bugs.jqueryui.com/ticket/4475), [a90e195](https://github.com/jquery/jquery-ui/commit/a90e195489915ed8a6d66005adea7844cbabe3e7))
+* Fixed: Selectable docs: .bind("selected") should be .bind("selectableselected") ([#5593](https://bugs.jqueryui.com/ticket/5593))
### Sortable
-* Fixed: sortable("serialize", {key: "foo[]"}) returns an empty string for an empty list ([#5794](http://bugs.jqueryui.com/ticket/5794), [9d01ab5](http://github.com/jquery/jquery-ui/commit/9d01ab564525f9112c2488ad257637593062b70d))
+* Fixed: sortable("serialize", {key: "foo[]"}) returns an empty string for an empty list ([#5794](https://bugs.jqueryui.com/ticket/5794), [9d01ab5](https://github.com/jquery/jquery-ui/commit/9d01ab564525f9112c2488ad257637593062b70d))
## Widgets
### Accordion
-* Added: support multiple events being set at the same time ([#3614](http://bugs.jqueryui.com/ticket/3614), [a3ab2b2](http://github.com/jquery/jquery-ui/commit/a3ab2b223b8d7494bf860396975868644b3e89cb))
-* Added: Use .addClass() instead of .toggleClass() during init so the classes can be added by the user. ([f448c79](http://github.com/jquery/jquery-ui/commit/f448c79c01ef192fd71dce6ac5279e7795a8e417))
-* Fixed: Disabled accordion doesn't look disabled in IE. ([#5332](http://bugs.jqueryui.com/ticket/5332), [c71e63c](http://github.com/jquery/jquery-ui/commit/c71e63cb6907e4df994e6dfa2e52d3a2dfc19b2d))
-* Fixed: Jumpy animation when opening a panel after closing all. ([#5540](http://bugs.jqueryui.com/ticket/5540), [e895d86](http://github.com/jquery/jquery-ui/commit/e895d860a5b11e90bc97b1aa29e6f5ec5c147bc2))
-* Fixed: Accordion display problems in IE6/7 on panel close. ([#4615](http://bugs.jqueryui.com/ticket/4615), [936a9a6](http://github.com/jquery/jquery-ui/commit/936a9a6d9ccd676ee53bf029ee336773ba16697d))
-* Fixed: Accordion headers still show rollover when disabled. ([#5330](http://bugs.jqueryui.com/ticket/5330), [551bf6e](http://github.com/jquery/jquery-ui/commit/551bf6e1e7844dc3ea4ca62a3bf0e7cb4c18744b))
-* Fixed: autoHeight resize not working. ([#5406](http://bugs.jqueryui.com/ticket/5406), [ba387ce](http://github.com/jquery/jquery-ui/commit/ba387ce1c5ee4b0adce4f490fe1052ec525cb121))
-* Fixed: Navigation parameter can open multiple sections. ([#4889](http://bugs.jqueryui.com/ticket/4889), [2bf91e8](http://github.com/jquery/jquery-ui/commit/2bf91e8e28e3936ed56def5648dda479aefa9ad2))
-* Fixed: Long links create line breaks in IE. ([#4662](http://bugs.jqueryui.com/ticket/4662), [66659a1](http://github.com/jquery/jquery-ui/commit/66659a12400b45dc490a8089e30a3ad9d2b72a02))
-* Fixed: Accordion active property inaccurate if nested accordion is present. ([#5841](http://bugs.jqueryui.com/ticket/5841), [f99068b](http://github.com/jquery/jquery-ui/commit/f99068bb4ff7fc0ceec154ac8e3b63e088246047))
-* Fixed: Accordion should only manipulate Icons that are children of ui-accordion-header ([#4645](http://bugs.jqueryui.com/ticket/4645), [06f721b](http://github.com/jquery/jquery-ui/commit/06f721b74f94272baf5da96133e961f5600f5a90))
-* Fixed: IE 8 function undefined() - Out of Stack Space ([#5434](http://bugs.jqueryui.com/ticket/5434), [21aad10](http://github.com/jquery/jquery-ui/commit/21aad10e6aa68610feee69062a1cad750497c83f))
+* Added: support multiple events being set at the same time ([#3614](https://bugs.jqueryui.com/ticket/3614), [a3ab2b2](https://github.com/jquery/jquery-ui/commit/a3ab2b223b8d7494bf860396975868644b3e89cb))
+* Added: Use .addClass() instead of .toggleClass() during init so the classes can be added by the user. ([f448c79](https://github.com/jquery/jquery-ui/commit/f448c79c01ef192fd71dce6ac5279e7795a8e417))
+* Fixed: Disabled accordion doesn't look disabled in IE. ([#5332](https://bugs.jqueryui.com/ticket/5332), [c71e63c](https://github.com/jquery/jquery-ui/commit/c71e63cb6907e4df994e6dfa2e52d3a2dfc19b2d))
+* Fixed: Jumpy animation when opening a panel after closing all. ([#5540](https://bugs.jqueryui.com/ticket/5540), [e895d86](https://github.com/jquery/jquery-ui/commit/e895d860a5b11e90bc97b1aa29e6f5ec5c147bc2))
+* Fixed: Accordion display problems in IE6/7 on panel close. ([#4615](https://bugs.jqueryui.com/ticket/4615), [936a9a6](https://github.com/jquery/jquery-ui/commit/936a9a6d9ccd676ee53bf029ee336773ba16697d))
+* Fixed: Accordion headers still show rollover when disabled. ([#5330](https://bugs.jqueryui.com/ticket/5330), [551bf6e](https://github.com/jquery/jquery-ui/commit/551bf6e1e7844dc3ea4ca62a3bf0e7cb4c18744b))
+* Fixed: autoHeight resize not working. ([#5406](https://bugs.jqueryui.com/ticket/5406), [ba387ce](https://github.com/jquery/jquery-ui/commit/ba387ce1c5ee4b0adce4f490fe1052ec525cb121))
+* Fixed: Navigation parameter can open multiple sections. ([#4889](https://bugs.jqueryui.com/ticket/4889), [2bf91e8](https://github.com/jquery/jquery-ui/commit/2bf91e8e28e3936ed56def5648dda479aefa9ad2))
+* Fixed: Long links create line breaks in IE. ([#4662](https://bugs.jqueryui.com/ticket/4662), [66659a1](https://github.com/jquery/jquery-ui/commit/66659a12400b45dc490a8089e30a3ad9d2b72a02))
+* Fixed: Accordion active property inaccurate if nested accordion is present. ([#5841](https://bugs.jqueryui.com/ticket/5841), [f99068b](https://github.com/jquery/jquery-ui/commit/f99068bb4ff7fc0ceec154ac8e3b63e088246047))
+* Fixed: Accordion should only manipulate Icons that are children of ui-accordion-header ([#4645](https://bugs.jqueryui.com/ticket/4645), [06f721b](https://github.com/jquery/jquery-ui/commit/06f721b74f94272baf5da96133e961f5600f5a90))
+* Fixed: IE 8 function undefined() - Out of Stack Space ([#5434](https://bugs.jqueryui.com/ticket/5434), [21aad10](https://github.com/jquery/jquery-ui/commit/21aad10e6aa68610feee69062a1cad750497c83f))
### Autocomplete
-* Added: add appendTo option. ([#5836](http://bugs.jqueryui.com/ticket/5836), [74e0d4f](http://github.com/jquery/jquery-ui/commit/74e0d4f47301ff854ec741434da1351544a1a55d))
-* Added: document and demo a scrolling menu. ([#5815](http://bugs.jqueryui.com/ticket/5815), [5e3755a](http://github.com/jquery/jquery-ui/commit/5e3755af8aa17b2bf742761b6ca40acccb248a04))
-* Added: Support for accent-folding. ([#5219](http://bugs.jqueryui.com/ticket/5219), [5debdb0](http://github.com/jquery/jquery-ui/commit/5debdb08d7702e9c04b4efa883c68d350576d710))
-* Added: position option. ([#5153](http://bugs.jqueryui.com/ticket/5153), [612838a](http://github.com/jquery/jquery-ui/commit/612838a1518c8cdc80b5bace5d925f89c1e791a3))
-* Fixed: autocomplete triggered when field copied with ctrl-c. ([#5716](http://bugs.jqueryui.com/ticket/5716), [2ed96cb](http://github.com/jquery/jquery-ui/commit/2ed96cb0b8fbeaf8c72fb894242862cef81e84b2))
-* Fixed: combobox demo does not accept valid values. ([#5605](http://bugs.jqueryui.com/ticket/5605), [5d1e297](http://github.com/jquery/jquery-ui/commit/5d1e29764024128e9cc71a19589cfe11e6241242))
-* Fixed: combobox demo: Set intial value of text field based on value of select element. ([#5757](http://bugs.jqueryui.com/ticket/5757), [123467a](http://github.com/jquery/jquery-ui/commit/123467af8efc8541e333979a59ca9db36fec9cda))
-* Fixed: combobox demo doesn't remove invalid values. ([#5453](http://bugs.jqueryui.com/ticket/5453), [c2c09e8](http://github.com/jquery/jquery-ui/commit/c2c09e89538ce071efba7ca1e923b5627c236f8c))
-* Fixed: Cursor jumps to beginning on select. ([#5639](http://bugs.jqueryui.com/ticket/5639), [53489b5](http://github.com/jquery/jquery-ui/commit/53489b502dc51edb7707de80ead77549bd529e3a))
-* Fixed: Prevent the default behavior of pressing enter when the menu is open, even if no item is active. ([#5757](http://bugs.jqueryui.com/ticket/5757), [e85615f](http://github.com/jquery/jquery-ui/commit/e85615fc6b1d636f4bcea3abd3a6091f937858b8))
-* Fixed: Inconsistent default styling while loading results. ([#5385](http://bugs.jqueryui.com/ticket/5385), [fe71d5d](http://github.com/jquery/jquery-ui/commit/fe71d5d0a05b1e45055da8fdd39085999e5b43b3))
-* Fixed: suggestions are not html-encoded. ([#5275](http://bugs.jqueryui.com/ticket/5275), [1f2cfb9](http://github.com/jquery/jquery-ui/commit/1f2cfb942f8ac5549b1fe3172501e3486415530e))
-* Fixed: Autocomplete widget keeps looking for remote data even when it's disabled. ([#5619](http://bugs.jqueryui.com/ticket/5619), [90caa93](http://github.com/jquery/jquery-ui/commit/90caa93a9b4b9b894b055cfb8dae0661ac7788b0))
-* Fixed: Updated escapeRegex utility based on http://xregexp.com/xregexp.js ([0bbbe5f](http://github.com/jquery/jquery-ui/commit/0bbbe5f5b1ca98dd4713064c08e908dc7b2a5ede))
-* Fixed: menu has incorrect width. ([#5832](http://bugs.jqueryui.com/ticket/5832), [325a262](http://github.com/jquery/jquery-ui/commit/325a262b14aa41be9bda584d770eedbde47297b6))
-* Fixed: wrong menu size calculation in webkit browsers (Autocomplete). ([#5691](http://bugs.jqueryui.com/ticket/5691), [a090faa](http://github.com/jquery/jquery-ui/commit/a090faa833cf5b40105bb4aa74bca7ac39366fe9))
-* Fixed: Issue when try to navigate using up key by keyboard in IE6. ([#5528](http://bugs.jqueryui.com/ticket/5528), [5311fe2](http://github.com/jquery/jquery-ui/commit/5311fe22f327d275f6f8d885da1ce6bbc2c4a681))
-* Fixed: Combobox/Autocomplete doesn't save value unless control loses focus ([#5640](http://bugs.jqueryui.com/ticket/5640), [ba091650](http://github.com/jquery/jquery-ui/commit/ba091650ffdd2e359624413a90079e1369048142))
-* Fixed: Image missing when downloading autocomplete: ui-anim_basic_16x16.gif ([#5432](http://bugs.jqueryui.com/ticket/5432), [fe71d5d](http://github.com/jquery/jquery-ui/commit/fe71d5d0a05b1e45055da8fdd39085999e5b43b3))
-* Fixed: Change event for Autocomplete Combobox does not work in IE7 ([#5775](http://bugs.jqueryui.com/ticket/5775), [ba091650](http://github.com/jquery/jquery-ui/commit/ba091650ffdd2e359624413a90079e1369048142))
-* Fixed: Autocomplete doesn't close after scrolling ([#5903](http://bugs.jqueryui.com/ticket/5903), [de266a1](http://github.com/jquery/jquery-ui/commit/de266a1275efa405eb7147469fa25274a6b7254b))
-* Fixed: mousing over menu option replaces text box contents, moves caret ([#5900](http://bugs.jqueryui.com/ticket/5900), [ed07f0a](http://github.com/jquery/jquery-ui/commit/ed07f0a05656d2c66db453c8f6d664f69ec1a04d))
+* Added: add appendTo option. ([#5836](https://bugs.jqueryui.com/ticket/5836), [74e0d4f](https://github.com/jquery/jquery-ui/commit/74e0d4f47301ff854ec741434da1351544a1a55d))
+* Added: document and demo a scrolling menu. ([#5815](https://bugs.jqueryui.com/ticket/5815), [5e3755a](https://github.com/jquery/jquery-ui/commit/5e3755af8aa17b2bf742761b6ca40acccb248a04))
+* Added: Support for accent-folding. ([#5219](https://bugs.jqueryui.com/ticket/5219), [5debdb0](https://github.com/jquery/jquery-ui/commit/5debdb08d7702e9c04b4efa883c68d350576d710))
+* Added: position option. ([#5153](https://bugs.jqueryui.com/ticket/5153), [612838a](https://github.com/jquery/jquery-ui/commit/612838a1518c8cdc80b5bace5d925f89c1e791a3))
+* Fixed: autocomplete triggered when field copied with ctrl-c. ([#5716](https://bugs.jqueryui.com/ticket/5716), [2ed96cb](https://github.com/jquery/jquery-ui/commit/2ed96cb0b8fbeaf8c72fb894242862cef81e84b2))
+* Fixed: combobox demo does not accept valid values. ([#5605](https://bugs.jqueryui.com/ticket/5605), [5d1e297](https://github.com/jquery/jquery-ui/commit/5d1e29764024128e9cc71a19589cfe11e6241242))
+* Fixed: combobox demo: Set intial value of text field based on value of select element. ([#5757](https://bugs.jqueryui.com/ticket/5757), [123467a](https://github.com/jquery/jquery-ui/commit/123467af8efc8541e333979a59ca9db36fec9cda))
+* Fixed: combobox demo doesn't remove invalid values. ([#5453](https://bugs.jqueryui.com/ticket/5453), [c2c09e8](https://github.com/jquery/jquery-ui/commit/c2c09e89538ce071efba7ca1e923b5627c236f8c))
+* Fixed: Cursor jumps to beginning on select. ([#5639](https://bugs.jqueryui.com/ticket/5639), [53489b5](https://github.com/jquery/jquery-ui/commit/53489b502dc51edb7707de80ead77549bd529e3a))
+* Fixed: Prevent the default behavior of pressing enter when the menu is open, even if no item is active. ([#5757](https://bugs.jqueryui.com/ticket/5757), [e85615f](https://github.com/jquery/jquery-ui/commit/e85615fc6b1d636f4bcea3abd3a6091f937858b8))
+* Fixed: Inconsistent default styling while loading results. ([#5385](https://bugs.jqueryui.com/ticket/5385), [fe71d5d](https://github.com/jquery/jquery-ui/commit/fe71d5d0a05b1e45055da8fdd39085999e5b43b3))
+* Fixed: suggestions are not html-encoded. ([#5275](https://bugs.jqueryui.com/ticket/5275), [1f2cfb9](https://github.com/jquery/jquery-ui/commit/1f2cfb942f8ac5549b1fe3172501e3486415530e))
+* Fixed: Autocomplete widget keeps looking for remote data even when it's disabled. ([#5619](https://bugs.jqueryui.com/ticket/5619), [90caa93](https://github.com/jquery/jquery-ui/commit/90caa93a9b4b9b894b055cfb8dae0661ac7788b0))
+* Fixed: Updated escapeRegex utility based on http://xregexp.com/xregexp.js ([0bbbe5f](https://github.com/jquery/jquery-ui/commit/0bbbe5f5b1ca98dd4713064c08e908dc7b2a5ede))
+* Fixed: menu has incorrect width. ([#5832](https://bugs.jqueryui.com/ticket/5832), [325a262](https://github.com/jquery/jquery-ui/commit/325a262b14aa41be9bda584d770eedbde47297b6))
+* Fixed: wrong menu size calculation in webkit browsers (Autocomplete). ([#5691](https://bugs.jqueryui.com/ticket/5691), [a090faa](https://github.com/jquery/jquery-ui/commit/a090faa833cf5b40105bb4aa74bca7ac39366fe9))
+* Fixed: Issue when try to navigate using up key by keyboard in IE6. ([#5528](https://bugs.jqueryui.com/ticket/5528), [5311fe2](https://github.com/jquery/jquery-ui/commit/5311fe22f327d275f6f8d885da1ce6bbc2c4a681))
+* Fixed: Combobox/Autocomplete doesn't save value unless control loses focus ([#5640](https://bugs.jqueryui.com/ticket/5640), [ba091650](https://github.com/jquery/jquery-ui/commit/ba091650ffdd2e359624413a90079e1369048142))
+* Fixed: Image missing when downloading autocomplete: ui-anim_basic_16x16.gif ([#5432](https://bugs.jqueryui.com/ticket/5432), [fe71d5d](https://github.com/jquery/jquery-ui/commit/fe71d5d0a05b1e45055da8fdd39085999e5b43b3))
+* Fixed: Change event for Autocomplete Combobox does not work in IE7 ([#5775](https://bugs.jqueryui.com/ticket/5775), [ba091650](https://github.com/jquery/jquery-ui/commit/ba091650ffdd2e359624413a90079e1369048142))
+* Fixed: Autocomplete doesn't close after scrolling ([#5903](https://bugs.jqueryui.com/ticket/5903), [de266a1](https://github.com/jquery/jquery-ui/commit/de266a1275efa405eb7147469fa25274a6b7254b))
+* Fixed: mousing over menu option replaces text box contents, moves caret ([#5900](https://bugs.jqueryui.com/ticket/5900), [ed07f0a](https://github.com/jquery/jquery-ui/commit/ed07f0a05656d2c66db453c8f6d664f69ec1a04d))
### Button
-* Fixed: specifying only a secondary icon for the button widget locates the icon on the left ([#5382](http://bugs.jqueryui.com/ticket/5382), [202ddd0](http://github.com/jquery/jquery-ui/commit/202ddd0c58933e80b60373690412d2103b60388b))
-* Fixed: Buttonset and applet error. ([#5810](http://bugs.jqueryui.com/ticket/5810), [70481d9](http://github.com/jquery/jquery-ui/commit/70481d9febd1b904577d2d5f4345e5a0e79a59f7))
+* Fixed: specifying only a secondary icon for the button widget locates the icon on the left ([#5382](https://bugs.jqueryui.com/ticket/5382), [202ddd0](https://github.com/jquery/jquery-ui/commit/202ddd0c58933e80b60373690412d2103b60388b))
+* Fixed: Buttonset and applet error. ([#5810](https://bugs.jqueryui.com/ticket/5810), [70481d9](https://github.com/jquery/jquery-ui/commit/70481d9febd1b904577d2d5f4345e5a0e79a59f7))
### Datepicker
-* Fixed: Error in datepicker translation for pt-BR. ([#5363](http://bugs.jqueryui.com/ticket/5363), [ba749ba](http://github.com/jquery/jquery-ui/commit/ba749ba6836d4889f18166a1207d5eeccddf7083))
-* Fixed: Typo in Calendar localization demo. ([#5859](http://bugs.jqueryui.com/ticket/5859), [dde27da](http://github.com/jquery/jquery-ui/commit/dde27daf62cbcbf97955173b79cc42783d816daf))
-* Fixed: DatePicker Dialog defaultDate incorrect behaviour ([#5676](http://bugs.jqueryui.com/ticket/5676), [eb13c01](http://github.com/jquery/jquery-ui/commit/eb13c017228674d60cdb95a411195ebb14cc8a51))
-* Fixed: inconsistent behavior in IE when click to close month and year drop-downs ([#5897](http://bugs.jqueryui.com/ticket/5897), [85b8816](http://github.com/jquery/jquery-ui/commit/85b8816fa9480005aedb3354714abbc1ead06897))
+* Fixed: Error in datepicker translation for pt-BR. ([#5363](https://bugs.jqueryui.com/ticket/5363), [ba749ba](https://github.com/jquery/jquery-ui/commit/ba749ba6836d4889f18166a1207d5eeccddf7083))
+* Fixed: Typo in Calendar localization demo. ([#5859](https://bugs.jqueryui.com/ticket/5859), [dde27da](https://github.com/jquery/jquery-ui/commit/dde27daf62cbcbf97955173b79cc42783d816daf))
+* Fixed: DatePicker Dialog defaultDate incorrect behaviour ([#5676](https://bugs.jqueryui.com/ticket/5676), [eb13c01](https://github.com/jquery/jquery-ui/commit/eb13c017228674d60cdb95a411195ebb14cc8a51))
+* Fixed: inconsistent behavior in IE when click to close month and year drop-downs ([#5897](https://bugs.jqueryui.com/ticket/5897), [85b8816](https://github.com/jquery/jquery-ui/commit/85b8816fa9480005aedb3354714abbc1ead06897))
### Dialog
-* Added: Dialog: expose .position() API ([#5459](http://bugs.jqueryui.com/ticket/5459), [6de9a53](http://github.com/jquery/jquery-ui/commit/6de9a5368c3e0523f91f08e7b1516549ce006f98))
-* Fixed: Remove reference to obsolete overlay option in demo. ([9241757](http://github.com/jquery/jquery-ui/commit/9241757d7ab493b8750656a9fa96391607ad00c4))
-* Fixed: Accordion overflow breaks when displayed inside a dialog on Internet Explorer. ([#4319](http://bugs.jqueryui.com/ticket/4319), [cdd6161](http://github.com/jquery/jquery-ui/commit/cdd6161419190e9d5a1e823f4910559dbab6de7d))
-* Fixed: Setting Dialog height shorter after init hides button pane ([#4846](http://bugs.jqueryui.com/ticket/4846), [f560862](http://github.com/jquery/jquery-ui/commit/f560862666f89f9d6bac34712cb7f295f357f0e9))
-* Fixed: On open, the first tabbable element inside the dialog was never being focused in favor of the dialog container. ([#5767](http://bugs.jqueryui.com/ticket/5767), [64d90b4](http://github.com/jquery/jquery-ui/commit/64d90b4a710d520a44408ccfa8df1100b0b95b4d))
-* Fixed: bad reference to bgiframe in demo. ([594b7f5](http://github.com/jquery/jquery-ui/commit/594b7f5b23dbbfd9a4781105b56fe0daaa1ea691))
-* Fixed: dialog width should be at least minWidth on creation. ([#5531](http://bugs.jqueryui.com/ticket/5531), [c5770c0](http://github.com/jquery/jquery-ui/commit/c5770c0e84b786ebe55a60034da0ff06dc02f422))
-* Fixed: size inconsistency with button widgets and dialog box buttons. ([#5779](http://bugs.jqueryui.com/ticket/5779), [60dc674](http://github.com/jquery/jquery-ui/commit/60dc67400e5e55539d56cc066986f509c46a3c07))
-* Fixed: Form field with `name="title"` moved to title area. ([#5742](http://bugs.jqueryui.com/ticket/5742), [2c7a9e9](http://github.com/jquery/jquery-ui/commit/2c7a9e9ff3540365254ee1b9b3113e6c2ad9f5f3))
-* Fixed: dialog buttons are accessed in wrong order using tab. ([#4529](http://bugs.jqueryui.com/ticket/4529), [61e0aea](http://github.com/jquery/jquery-ui/commit/61e0aeac7e626df711e7066f27b652602387b784))
+* Added: Dialog: expose .position() API ([#5459](https://bugs.jqueryui.com/ticket/5459), [6de9a53](https://github.com/jquery/jquery-ui/commit/6de9a5368c3e0523f91f08e7b1516549ce006f98))
+* Fixed: Remove reference to obsolete overlay option in demo. ([9241757](https://github.com/jquery/jquery-ui/commit/9241757d7ab493b8750656a9fa96391607ad00c4))
+* Fixed: Accordion overflow breaks when displayed inside a dialog on Internet Explorer. ([#4319](https://bugs.jqueryui.com/ticket/4319), [cdd6161](https://github.com/jquery/jquery-ui/commit/cdd6161419190e9d5a1e823f4910559dbab6de7d))
+* Fixed: Setting Dialog height shorter after init hides button pane ([#4846](https://bugs.jqueryui.com/ticket/4846), [f560862](https://github.com/jquery/jquery-ui/commit/f560862666f89f9d6bac34712cb7f295f357f0e9))
+* Fixed: On open, the first tabbable element inside the dialog was never being focused in favor of the dialog container. ([#5767](https://bugs.jqueryui.com/ticket/5767), [64d90b4](https://github.com/jquery/jquery-ui/commit/64d90b4a710d520a44408ccfa8df1100b0b95b4d))
+* Fixed: bad reference to bgiframe in demo. ([594b7f5](https://github.com/jquery/jquery-ui/commit/594b7f5b23dbbfd9a4781105b56fe0daaa1ea691))
+* Fixed: dialog width should be at least minWidth on creation. ([#5531](https://bugs.jqueryui.com/ticket/5531), [c5770c0](https://github.com/jquery/jquery-ui/commit/c5770c0e84b786ebe55a60034da0ff06dc02f422))
+* Fixed: size inconsistency with button widgets and dialog box buttons. ([#5779](https://bugs.jqueryui.com/ticket/5779), [60dc674](https://github.com/jquery/jquery-ui/commit/60dc67400e5e55539d56cc066986f509c46a3c07))
+* Fixed: Form field with `name="title"` moved to title area. ([#5742](https://bugs.jqueryui.com/ticket/5742), [2c7a9e9](https://github.com/jquery/jquery-ui/commit/2c7a9e9ff3540365254ee1b9b3113e6c2ad9f5f3))
+* Fixed: dialog buttons are accessed in wrong order using tab. ([#4529](https://bugs.jqueryui.com/ticket/4529), [61e0aea](https://github.com/jquery/jquery-ui/commit/61e0aeac7e626df711e7066f27b652602387b784))
### Progressbar
-* Fixed: resize demo is broken. ([#5873](http://bugs.jqueryui.com/ticket/5873), [ee1f5b5](http://github.com/jquery/jquery-ui/commit/ee1f5b54de149e10444ba7a3c4084173e851a7a2))
+* Fixed: resize demo is broken. ([#5873](https://bugs.jqueryui.com/ticket/5873), [ee1f5b5](https://github.com/jquery/jquery-ui/commit/ee1f5b54de149e10444ba7a3c4084173e851a7a2))
### Slider
-* Fixed: Redundant call to _normValueFromMouse ([#5796](http://bugs.jqueryui.com/ticket/5796), [92b7722](http://github.com/jquery/jquery-ui/commit/92b7722fffc68dbb124e5b171cd0169f95da241b))
+* Fixed: Redundant call to _normValueFromMouse ([#5796](https://bugs.jqueryui.com/ticket/5796), [92b7722](https://github.com/jquery/jquery-ui/commit/92b7722fffc68dbb124e5b171cd0169f95da241b))
### Tabs
-* Added: have option to remove tab by href content, not just by index. ([#3171](http://bugs.jqueryui.com/ticket/3171), [fde8c64](http://github.com/jquery/jquery-ui/commit/fde8c64fd37d6700e174ccf5ea1574e418db2c1e))
+* Added: have option to remove tab by href content, not just by index. ([#3171](https://bugs.jqueryui.com/ticket/3171), [fde8c64](https://github.com/jquery/jquery-ui/commit/fde8c64fd37d6700e174ccf5ea1574e418db2c1e))
## Effects
-* Fixed: hide and show called with ommiting the options in parameters does not call the callback ([#5731](http://bugs.jqueryui.com/ticket/5731), [4be0942](http://github.com/jquery/jquery-ui/commit/4be0942af0d0a73541148899fbb2e0c406795c79), [1417487](http://github.com/jquery/jquery-ui/commit/141748788b034e97337ee7d9d137153c445097fd))
+* Fixed: hide and show called with ommiting the options in parameters does not call the callback ([#5731](https://bugs.jqueryui.com/ticket/5731), [4be0942](https://github.com/jquery/jquery-ui/commit/4be0942af0d0a73541148899fbb2e0c406795c79), [1417487](https://github.com/jquery/jquery-ui/commit/141748788b034e97337ee7d9d137153c445097fd))
## CSS Framework
-* Added: header info to all CSS files. ([#5825](http://bugs.jqueryui.com/ticket/5825), [d8caa61](http://github.com/jquery/jquery-ui/commit/d8caa61be66db215f74e276dec73356531b7faf4))
-* Fixed: ThemeRoller is broken ([#5776](http://bugs.jqueryui.com/ticket/5776), [#5840](http://bugs.jqueryui.com/ticket/5840))
+* Added: header info to all CSS files. ([#5825](https://bugs.jqueryui.com/ticket/5825), [d8caa61](https://github.com/jquery/jquery-ui/commit/d8caa61be66db215f74e276dec73356531b7faf4))
+* Fixed: ThemeRoller is broken ([#5776](https://bugs.jqueryui.com/ticket/5776), [#5840](https://bugs.jqueryui.com/ticket/5840))
## Demos
-* Fixed: Added position plugin to demo pages that use dialogs. ([d7fa82b](http://github.com/jquery/jquery-ui/commit/d7fa82bc5ef79b787ca01f0fa145949f3b35da82))
-* Fixed: Demo for color animation doesn't work ([#5858](http://bugs.jqueryui.com/ticket/5858))
+* Fixed: Added position plugin to demo pages that use dialogs. ([d7fa82b](https://github.com/jquery/jquery-ui/commit/d7fa82bc5ef79b787ca01f0fa145949f3b35da82))
+* Fixed: Demo for color animation doesn't work ([#5858](https://bugs.jqueryui.com/ticket/5858))
diff --git a/page/changelog/1.8.5.md b/page/changelog/1.8.5.md
index dfe5b7b..fd50008 100644
--- a/page/changelog/1.8.5.md
+++ b/page/changelog/1.8.5.md
@@ -2,76 +2,78 @@
"title": "jQuery UI 1.8.5 Changelog"
}
+Released on September 10, 2010
+
## Build
-* Added: Initial pass at release automation ([5a73ed8](http://github.com/jquery/jquery-ui/commit/5a73ed8dec3c1fbb9ec6b309dab22571eec58988), [975f900](http://github.com/jquery/jquery-ui/commit/975f900e177eff0ca05f7df64a79263fd92cdd9d), [5db84e7](http://github.com/jquery/jquery-ui/commit/5db84e7db1ff76f72583d668bd62e04fb284fd11))
+* Added: Initial pass at release automation ([5a73ed8](https://github.com/jquery/jquery-ui/commit/5a73ed8dec3c1fbb9ec6b309dab22571eec58988), [975f900](https://github.com/jquery/jquery-ui/commit/975f900e177eff0ca05f7df64a79263fd92cdd9d), [5db84e7](https://github.com/jquery/jquery-ui/commit/5db84e7db1ff76f72583d668bd62e04fb284fd11))
## Core & Utilities
-* Fixed: Problem with JavaScriptPacker. ([#5921](http://bugs.jqueryui.com/ticket/5921), [04347e5](http://github.com/jquery/jquery-ui/commit/04347e5a0daadf021995328616102816fb8b2d4c))
+* Fixed: Problem with JavaScriptPacker. ([#5921](https://bugs.jqueryui.com/ticket/5921), [04347e5](https://github.com/jquery/jquery-ui/commit/04347e5a0daadf021995328616102816fb8b2d4c))
### UI Core
-* Added: jQuery.support.minHeight. ([#6026](http://bugs.jqueryui.com/ticket/6026), [99694e6](http://github.com/jquery/jquery-ui/commit/99694e6fec88c0fbb10144f856073f01cd44091f), [409f5d1](http://github.com/jquery/jquery-ui/commit/409f5d1ba0fe572e8a208a550c42aed516fc4fe3), [9a2dafa](http://github.com/jquery/jquery-ui/commit/9a2dafa94828fc43537c6fbfd133be84ca55d04b))
-* Fixed: disableSelection() doesn't work cross-browser. ([#5723](http://bugs.jqueryui.com/ticket/5723), [16e93d5](http://github.com/jquery/jquery-ui/commit/16e93d5189a5aed10df23e85b5d40b14d126eede), [5de8ced](http://github.com/jquery/jquery-ui/commit/5de8ced5d9e8b18d96cb2e3868123dd41402fc00))
-* Fixed: :focusable and :tabbable are broken with jQuery 1.3.2. ([#4488](http://bugs.jqueryui.com/ticket/4488), [3f070bd](http://github.com/jquery/jquery-ui/commit/3f070bdc62a8d00ca6d8428b1a1fe9e39ff72c65), [fe13fba](http://github.com/jquery/jquery-ui/commit/fe13fbadd45b59fb67ce6b47c5aea6231596a7c7), [0ab54d8](http://github.com/jquery/jquery-ui/commit/0ab54d87dc521b73819a3ac480f7aa94365e52e2))
+* Added: jQuery.support.minHeight. ([#6026](https://bugs.jqueryui.com/ticket/6026), [99694e6](https://github.com/jquery/jquery-ui/commit/99694e6fec88c0fbb10144f856073f01cd44091f), [409f5d1](https://github.com/jquery/jquery-ui/commit/409f5d1ba0fe572e8a208a550c42aed516fc4fe3), [9a2dafa](https://github.com/jquery/jquery-ui/commit/9a2dafa94828fc43537c6fbfd133be84ca55d04b))
+* Fixed: disableSelection() doesn't work cross-browser. ([#5723](https://bugs.jqueryui.com/ticket/5723), [16e93d5](https://github.com/jquery/jquery-ui/commit/16e93d5189a5aed10df23e85b5d40b14d126eede), [5de8ced](https://github.com/jquery/jquery-ui/commit/5de8ced5d9e8b18d96cb2e3868123dd41402fc00))
+* Fixed: :focusable and :tabbable are broken with jQuery 1.3.2. ([#4488](https://bugs.jqueryui.com/ticket/4488), [3f070bd](https://github.com/jquery/jquery-ui/commit/3f070bdc62a8d00ca6d8428b1a1fe9e39ff72c65), [fe13fba](https://github.com/jquery/jquery-ui/commit/fe13fbadd45b59fb67ce6b47c5aea6231596a7c7), [0ab54d8](https://github.com/jquery/jquery-ui/commit/0ab54d87dc521b73819a3ac480f7aa94365e52e2))
### Widget Factory
-* Added: Throw error for non-existent method calls and method calls on uninitialized plugins. ([#5972](http://bugs.jqueryui.com/ticket/5972), [1e28040](http://github.com/jquery/jquery-ui/commit/1e28040cf358d0fe81ee83a2e35d7dbb65362afa))
-* Fixed: Auto-destroy is broken in jQuery 1.4. ([#6008](http://bugs.jqueryui.com/ticket/6008), [0a0a39f](http://github.com/jquery/jquery-ui/commit/0a0a39f896f83412dc91bedd6819c3a3a0932302))
+* Added: Throw error for non-existent method calls and method calls on uninitialized plugins. ([#5972](https://bugs.jqueryui.com/ticket/5972), [1e28040](https://github.com/jquery/jquery-ui/commit/1e28040cf358d0fe81ee83a2e35d7dbb65362afa))
+* Fixed: Auto-destroy is broken in jQuery 1.4. ([#6008](https://bugs.jqueryui.com/ticket/6008), [0a0a39f](https://github.com/jquery/jquery-ui/commit/0a0a39f896f83412dc91bedd6819c3a3a0932302))
### Position
-* Added: Combine horizontalDefault and verticalDefault to one variable - possibly named center. ([#5964](http://bugs.jqueryui.com/ticket/5964), [2acfde9](http://github.com/jquery/jquery-ui/commit/2acfde9e5e411ece98bf7877212f0100d1c8c489))
-* Fixed: Flip collision handling is wrong in some cases. ([#5932](http://bugs.jqueryui.com/ticket/5932), [7692b6e](http://github.com/jquery/jquery-ui/commit/7692b6e65f27c9e37aaec45d92e120fbd43288d9))
-* Fixed: Option 'of' accepts jQuery object unless it wraps document. ([#5963](http://bugs.jqueryui.com/ticket/5963), [52a052b](http://github.com/jquery/jquery-ui/commit/52a052be79d21aa519ccb513dc00a7c54868ef03))
-* Fixed: Collision should take margin into account. ([#5766](http://bugs.jqueryui.com/ticket/5766), [4b9d5d1](http://github.com/jquery/jquery-ui/commit/4b9d5d1b5bd36726c6e49b105c0f75649cca1ae4))
+* Added: Combine horizontalDefault and verticalDefault to one variable - possibly named center. ([#5964](https://bugs.jqueryui.com/ticket/5964), [2acfde9](https://github.com/jquery/jquery-ui/commit/2acfde9e5e411ece98bf7877212f0100d1c8c489))
+* Fixed: Flip collision handling is wrong in some cases. ([#5932](https://bugs.jqueryui.com/ticket/5932), [7692b6e](https://github.com/jquery/jquery-ui/commit/7692b6e65f27c9e37aaec45d92e120fbd43288d9))
+* Fixed: Option 'of' accepts jQuery object unless it wraps document. ([#5963](https://bugs.jqueryui.com/ticket/5963), [52a052b](https://github.com/jquery/jquery-ui/commit/52a052be79d21aa519ccb513dc00a7c54868ef03))
+* Fixed: Collision should take margin into account. ([#5766](https://bugs.jqueryui.com/ticket/5766), [4b9d5d1](https://github.com/jquery/jquery-ui/commit/4b9d5d1b5bd36726c6e49b105c0f75649cca1ae4))
## Widgets
### Autocomplete
-* Fixed: Scrolling with the keyboard sometimes does not show the item (Chrome) ([#5923](http://bugs.jqueryui.com/ticket/5923), [3af1f6c](http://github.com/jquery/jquery-ui/commit/3af1f6c1ce7aedc35d3852422c891f7a2a545a47))
-* Fixed: Search not triggered if the first letter is the same as the first letter of a previous erased content ([#5922](http://bugs.jqueryui.com/ticket/5922), [9a4eecd](http://github.com/jquery/jquery-ui/commit/9a4eecdf85bf0a3accd7acb9fead64d6b5aad18e))
-* Fixed: Race condition causes incorrect suggestions. ([#5982](http://bugs.jqueryui.com/ticket/5982), [f115b48](http://github.com/jquery/jquery-ui/commit/f115b48d2bd79aff1f65fb895d1ebc9517d82edc))
-* Fixed: Home and End keys trigger search ([#5591](http://bugs.jqueryui.com/ticket/5591), [dea2f8a](http://github.com/jquery/jquery-ui/commit/dea2f8a7fc1d7c1d8fbf69aa50d7c1f28c3f35b6))
+* Fixed: Scrolling with the keyboard sometimes does not show the item (Chrome) ([#5923](https://bugs.jqueryui.com/ticket/5923), [3af1f6c](https://github.com/jquery/jquery-ui/commit/3af1f6c1ce7aedc35d3852422c891f7a2a545a47))
+* Fixed: Search not triggered if the first letter is the same as the first letter of a previous erased content ([#5922](https://bugs.jqueryui.com/ticket/5922), [9a4eecd](https://github.com/jquery/jquery-ui/commit/9a4eecdf85bf0a3accd7acb9fead64d6b5aad18e))
+* Fixed: Race condition causes incorrect suggestions. ([#5982](https://bugs.jqueryui.com/ticket/5982), [f115b48](https://github.com/jquery/jquery-ui/commit/f115b48d2bd79aff1f65fb895d1ebc9517d82edc))
+* Fixed: Home and End keys trigger search ([#5591](https://bugs.jqueryui.com/ticket/5591), [dea2f8a](https://github.com/jquery/jquery-ui/commit/dea2f8a7fc1d7c1d8fbf69aa50d7c1f28c3f35b6))
### Button
-* Added: Read disabled option from input elements. ([#5252](http://bugs.jqueryui.com/ticket/5252), [2838c11](http://github.com/jquery/jquery-ui/commit/2838c11ea8fa1bd8dfffe27a6e28dee6d3e0d423))
-* Fixed: Buttonset should ignore buttons that are not :visible. ([#5946](http://bugs.jqueryui.com/ticket/5946), [9060bf3](http://github.com/jquery/jquery-ui/commit/9060bf3d09a547563e94815f9e0a1c4908ebd904))
+* Added: Read disabled option from input elements. ([#5252](https://bugs.jqueryui.com/ticket/5252), [2838c11](https://github.com/jquery/jquery-ui/commit/2838c11ea8fa1bd8dfffe27a6e28dee6d3e0d423))
+* Fixed: Buttonset should ignore buttons that are not :visible. ([#5946](https://bugs.jqueryui.com/ticket/5946), [9060bf3](https://github.com/jquery/jquery-ui/commit/9060bf3d09a547563e94815f9e0a1c4908ebd904))
### Datepicker
-* Added: Kazakhstan localization for ui.datepicker. ([#5924](http://bugs.jqueryui.com/ticket/5924), [2398f6d](http://github.com/jquery/jquery-ui/commit/2398f6d23a477dec6bcda364b93e2055bbae7864))
-* Added: parseDate is case insensitive. ([#6036](http://bugs.jqueryui.com/ticket/6036), [590e03c](http://github.com/jquery/jquery-ui/commit/590e03cc328879f67b2350b76b50ec34d559739e))
+* Added: Kazakhstan localization for ui.datepicker. ([#5924](https://bugs.jqueryui.com/ticket/5924), [2398f6d](https://github.com/jquery/jquery-ui/commit/2398f6d23a477dec6bcda364b93e2055bbae7864))
+* Added: parseDate is case insensitive. ([#6036](https://bugs.jqueryui.com/ticket/6036), [590e03c](https://github.com/jquery/jquery-ui/commit/590e03cc328879f67b2350b76b50ec34d559739e))
### Dialog
-* Added: Enhanced Button Option. ([#4344](http://bugs.jqueryui.com/ticket/4344), [95a3459](http://github.com/jquery/jquery-ui/commit/95a34593f98217e3a99f223e2ef3ca0a0fa8343b))
-* Fixed: onclick return value ignored. ([#3523](http://bugs.jqueryui.com/ticket/3523), [af9864d](http://github.com/jquery/jquery-ui/commit/af9864dcc439bf8d04f4ade248725cc217f66d56))
-* Fixed: minHeight isn't properly handled on init in IE6. ([#6027](http://bugs.jqueryui.com/ticket/6027), [52e543a](http://github.com/jquery/jquery-ui/commit/52e543a63760d9e9ca17e04e796ca80646326f4a))
-* Fixed: _isOpen flag should be set before triggering open event. ([#6012](http://bugs.jqueryui.com/ticket/6012), [de02aa3](http://github.com/jquery/jquery-ui/commit/de02aa34a80eec32ad19e0c83ac88073ee551483))
-* Fixed: When using the title attribute, the title option should be updated. ([#5877](http://bugs.jqueryui.com/ticket/5877), [79ee6f0](http://github.com/jquery/jquery-ui/commit/79ee6f0d7b94b71d89f30019e66a1746696d5608))
+* Added: Enhanced Button Option. ([#4344](https://bugs.jqueryui.com/ticket/4344), [95a3459](https://github.com/jquery/jquery-ui/commit/95a34593f98217e3a99f223e2ef3ca0a0fa8343b))
+* Fixed: onclick return value ignored. ([#3523](https://bugs.jqueryui.com/ticket/3523), [af9864d](https://github.com/jquery/jquery-ui/commit/af9864dcc439bf8d04f4ade248725cc217f66d56))
+* Fixed: minHeight isn't properly handled on init in IE6. ([#6027](https://bugs.jqueryui.com/ticket/6027), [52e543a](https://github.com/jquery/jquery-ui/commit/52e543a63760d9e9ca17e04e796ca80646326f4a))
+* Fixed: _isOpen flag should be set before triggering open event. ([#6012](https://bugs.jqueryui.com/ticket/6012), [de02aa3](https://github.com/jquery/jquery-ui/commit/de02aa34a80eec32ad19e0c83ac88073ee551483))
+* Fixed: When using the title attribute, the title option should be updated. ([#5877](https://bugs.jqueryui.com/ticket/5877), [79ee6f0](https://github.com/jquery/jquery-ui/commit/79ee6f0d7b94b71d89f30019e66a1746696d5608))
### Tabs
-* Fixed: Title attribute for remote tabs does not support foreign languages. ([#4581](http://bugs.jqueryui.com/ticket/4581), [78540e2](http://github.com/jquery/jquery-ui/commit/78540e2c0c19a39922d19846333740d416b5b487))
-* Fixed: Tabs with an empty href are enabled in IE6/7. ([#5755](http://bugs.jqueryui.com/ticket/5755), [1b31765](http://github.com/jquery/jquery-ui/commit/1b3176565561ccbd0c904620ae97690aff41b90b))
-Added: Ability to contain sublists. ([#5893](http://bugs.jqueryui.com/ticket/5893), [03eea0e](http://github.com/jquery/jquery-ui/commit/03eea0e39dc15b5fc8c811461dd7c08b9e09f660))
-* Fixed: Occassionally displays multiple tabs when clicked with rotate control using opacity toggle fx. ([#4771](http://bugs.jqueryui.com/ticket/4771), [8f22b2b](http://github.com/jquery/jquery-ui/commit/8f22b2b6b3e7ecf0b1f49f81e1fd65e5b2c7a9cb))
+* Fixed: Title attribute for remote tabs does not support foreign languages. ([#4581](https://bugs.jqueryui.com/ticket/4581), [78540e2](https://github.com/jquery/jquery-ui/commit/78540e2c0c19a39922d19846333740d416b5b487))
+* Fixed: Tabs with an empty href are enabled in IE6/7. ([#5755](https://bugs.jqueryui.com/ticket/5755), [1b31765](https://github.com/jquery/jquery-ui/commit/1b3176565561ccbd0c904620ae97690aff41b90b))
+Added: Ability to contain sublists. ([#5893](https://bugs.jqueryui.com/ticket/5893), [03eea0e](https://github.com/jquery/jquery-ui/commit/03eea0e39dc15b5fc8c811461dd7c08b9e09f660))
+* Fixed: Occassionally displays multiple tabs when clicked with rotate control using opacity toggle fx. ([#4771](https://bugs.jqueryui.com/ticket/4771), [8f22b2b](https://github.com/jquery/jquery-ui/commit/8f22b2b6b3e7ecf0b1f49f81e1fd65e5b2c7a9cb))
## Effects
-* Fixed: show() function broken with "normal" speed ([#5456](http://bugs.jqueryui.com/ticket/5456), [2b9d684](http://github.com/jquery/jquery-ui/commit/2b9d684d1aed0fb50fba916ff8c69be5cc3fa4ae))
+* Fixed: show() function broken with "normal" speed ([#5456](https://bugs.jqueryui.com/ticket/5456), [2b9d684](https://github.com/jquery/jquery-ui/commit/2b9d684d1aed0fb50fba916ff8c69be5cc3fa4ae))
## Documentation
-* Fixed: Getting Started page has old (broken) download link. ([#6034](http://bugs.jqueryui.com/ticket/6034))
+* Fixed: Getting Started page has old (broken) download link. ([#6034](https://bugs.jqueryui.com/ticket/6034))
## Website
### Download Builder
-* Fixed: Missing fade effect ([#5711](http://bugs.jqueryui.com/ticket/5711))
+* Fixed: Missing fade effect ([#5711](https://bugs.jqueryui.com/ticket/5711))
diff --git a/page/changelog/1.8.6.md b/page/changelog/1.8.6.md
index 7f72132..98842b9 100644
--- a/page/changelog/1.8.6.md
+++ b/page/changelog/1.8.6.md
@@ -2,107 +2,109 @@
"title": "jQuery UI 1.8.6 Changelog"
}
+Released on October 25, 2010
+
## Build
-* Added: Minify CSS ([#5824](http://bugs.jqueryui.com/ticket/5824), [af582b9](http://github.com/jquery/jquery-ui/commit/af582b97a70e955432fdf4123891b75d2f2c68c5))
-* Added: Use LC_ALL='C' when sorting. ([2d70587](http://github.com/jquery/jquery-ui/commit/2d705873e9d575217762224c1c82ffb4c15d50dc))
-* Added: Zip file for MS cdn to cdn target (was: googlecdn target) ([bcde38d](http://github.com/jquery/jquery-ui/commit/bcde38de3d3d0717c43e117904f5ecb9d6d2f230))
-* Fixed: @VERSION not replaced in CSS files ([#6191](http://bugs.jqueryui.com/ticket/6191), [25853be](http://github.com/jquery/jquery-ui/commit/25853beb68aaae8e7828bff609ef2a26836e721d))
+* Added: Minify CSS ([#5824](https://bugs.jqueryui.com/ticket/5824), [af582b9](https://github.com/jquery/jquery-ui/commit/af582b97a70e955432fdf4123891b75d2f2c68c5))
+* Added: Use LC_ALL='C' when sorting. ([2d70587](https://github.com/jquery/jquery-ui/commit/2d705873e9d575217762224c1c82ffb4c15d50dc))
+* Added: Zip file for MS cdn to cdn target (was: googlecdn target) ([bcde38d](https://github.com/jquery/jquery-ui/commit/bcde38de3d3d0717c43e117904f5ecb9d6d2f230))
+* Fixed: @VERSION not replaced in CSS files ([#6191](https://bugs.jqueryui.com/ticket/6191), [25853be](https://github.com/jquery/jquery-ui/commit/25853beb68aaae8e7828bff609ef2a26836e721d))
## Core & Utilities
### UI Core
-* Fixed: outerWidth() setter broken with jQuery 1.3.2. ([#6196](http://bugs.jqueryui.com/ticket/6196), [72985fb](http://github.com/jquery/jquery-ui/commit/72985fbbecba2153fa56dba058740160fbd0c878))
-* Fixed: disableSelection() disables select elements in Chrome. ([#6080](http://bugs.jqueryui.com/ticket/6080), [47e312b](http://github.com/jquery/jquery-ui/commit/47e312b238453c6dae1e15e2828dfd27b8079408))
+* Fixed: outerWidth() setter broken with jQuery 1.3.2. ([#6196](https://bugs.jqueryui.com/ticket/6196), [72985fb](https://github.com/jquery/jquery-ui/commit/72985fbbecba2153fa56dba058740160fbd0c878))
+* Fixed: disableSelection() disables select elements in Chrome. ([#6080](https://bugs.jqueryui.com/ticket/6080), [47e312b](https://github.com/jquery/jquery-ui/commit/47e312b238453c6dae1e15e2828dfd27b8079408))
### Mouse
-* Fixed: jQuery 1.4.3rc2 breaks interactions for some markup. ([#6174](http://bugs.jqueryui.com/ticket/6174), [a829697](http://github.com/jquery/jquery-ui/commit/a829697d0c9083438bde3a2e47964c29bfbc9417))
-* Fixed: All drag & drop events fail in IE9. ([#5370](http://bugs.jqueryui.com/ticket/5370), [8fcf58e](http://github.com/jquery/jquery-ui/commit/8fcf58e29e4adfdcf9bef5c9e35bde932c165aa8), [ec73a59](http://github.com/jquery/jquery-ui/commit/ec73a59c77c522a45b3a22ea74515c36b7db45a5))
+* Fixed: jQuery 1.4.3rc2 breaks interactions for some markup. ([#6174](https://bugs.jqueryui.com/ticket/6174), [a829697](https://github.com/jquery/jquery-ui/commit/a829697d0c9083438bde3a2e47964c29bfbc9417))
+* Fixed: All drag & drop events fail in IE9. ([#5370](https://bugs.jqueryui.com/ticket/5370), [8fcf58e](https://github.com/jquery/jquery-ui/commit/8fcf58e29e4adfdcf9bef5c9e35bde932c165aa8), [ec73a59](https://github.com/jquery/jquery-ui/commit/ec73a59c77c522a45b3a22ea74515c36b7db45a5))
### Widget Factory
-* Removed: Don't throw errors for invalid method calls (wait till 1.9 to add this back). ([#5972](http://bugs.jqueryui.com/ticket/5972), [6ba75aa](http://github.com/jquery/jquery-ui/commit/6ba75aa698361bf8c87ac7037570a5daaad3b49a))
-* Added: Ability to define new methods for gathering options on init. ([#6158](http://bugs.jqueryui.com/ticket/6158), [512825d](http://github.com/jquery/jquery-ui/commit/512825d358851f4b2b584f1b6463e9cd48f31752), [62799d9](http://github.com/jquery/jquery-ui/commit/62799d9122068817cf98ae6012a639a93568031a), [c74f538](http://github.com/jquery/jquery-ui/commit/c74f53898e6191d23aa5e8f91f3a64903980d84d))
-* Added: Trigger event on create. ([#6126](http://bugs.jqueryui.com/ticket/6126), [a2ddfd5](http://github.com/jquery/jquery-ui/commit/a2ddfd51072952969792cd3b503e573ea8f18d30))
-* Added: _setOptions() method. ([#6114](http://bugs.jqueryui.com/ticket/6114), [9d88b56](http://github.com/jquery/jquery-ui/commit/9d88b565d6f65dc1aaebfaf99699f6155370949c))
+* Removed: Don't throw errors for invalid method calls (wait till 1.9 to add this back). ([#5972](https://bugs.jqueryui.com/ticket/5972), [6ba75aa](https://github.com/jquery/jquery-ui/commit/6ba75aa698361bf8c87ac7037570a5daaad3b49a))
+* Added: Ability to define new methods for gathering options on init. ([#6158](https://bugs.jqueryui.com/ticket/6158), [512825d](https://github.com/jquery/jquery-ui/commit/512825d358851f4b2b584f1b6463e9cd48f31752), [62799d9](https://github.com/jquery/jquery-ui/commit/62799d9122068817cf98ae6012a639a93568031a), [c74f538](https://github.com/jquery/jquery-ui/commit/c74f53898e6191d23aa5e8f91f3a64903980d84d))
+* Added: Trigger event on create. ([#6126](https://bugs.jqueryui.com/ticket/6126), [a2ddfd5](https://github.com/jquery/jquery-ui/commit/a2ddfd51072952969792cd3b503e573ea8f18d30))
+* Added: _setOptions() method. ([#6114](https://bugs.jqueryui.com/ticket/6114), [9d88b56](https://github.com/jquery/jquery-ui/commit/9d88b565d6f65dc1aaebfaf99699f6155370949c))
### Position
-* Fixed: Broken menu in IE8 Standards Mode when including prototype framework. ([#6201](http://bugs.jqueryui.com/ticket/6201), [eab0a6d](http://github.com/jquery/jquery-ui/commit/eab0a6dac13b642a870747249a360bdddb39da99))
-* Fixed: Option 'of' can be other than type selector, undocumented. ([#5962](http://bugs.jqueryui.com/ticket/5962))
+* Fixed: Broken menu in IE8 Standards Mode when including prototype framework. ([#6201](https://bugs.jqueryui.com/ticket/6201), [eab0a6d](https://github.com/jquery/jquery-ui/commit/eab0a6dac13b642a870747249a360bdddb39da99))
+* Fixed: Option 'of' can be other than type selector, undocumented. ([#5962](https://bugs.jqueryui.com/ticket/5962))
## Interactions
### Draggable
-* Fixed: Confusing documentation for draggable cursorAt option. ([#4879](http://bugs.jqueryui.com/ticket/4879))
+* Fixed: Confusing documentation for draggable cursorAt option. ([#4879](https://bugs.jqueryui.com/ticket/4879))
### Selectable
-* Fixed: Bug in serializable demo. ([#5698](http://bugs.jqueryui.com/ticket/5698), [527bc44](http://github.com/jquery/jquery-ui/commit/527bc44afe4784ac7768f221044ad2ccab89d33e))
+* Fixed: Bug in serializable demo. ([#5698](https://bugs.jqueryui.com/ticket/5698), [527bc44](https://github.com/jquery/jquery-ui/commit/527bc44afe4784ac7768f221044ad2ccab89d33e))
## Widgets
### Accordion
-* Fixed: 1.8.5 not fully compatible with core 1.3.2. ([#6084](http://bugs.jqueryui.com/ticket/6084), [9e19747](http://github.com/jquery/jquery-ui/commit/9e1974720931ee327d4c7c03ebb57e6e0fa9ecc7))
+* Fixed: 1.8.5 not fully compatible with core 1.3.2. ([#6084](https://bugs.jqueryui.com/ticket/6084), [9e19747](https://github.com/jquery/jquery-ui/commit/9e1974720931ee327d4c7c03ebb57e6e0fa9ecc7))
### Autocomplete
-* Added: Pass along some more original events. ([da13ea2](http://github.com/jquery/jquery-ui/commit/da13ea26fec7e21f9cd6566e99b7fd6688b5e96e))
-* Added: Split menu resizing logic into its own method to create a more logical method to proxy for custom sizing. ([a0c8564](http://github.com/jquery/jquery-ui/commit/a0c856467d7cb19442ac24a5e8eda5a504d474d6))
-* Fixed: Custom item can be activated (and result in error) on PageUp/PageDown key click. ([#6029](http://bugs.jqueryui.com/ticket/6029), [dda7bcb](http://github.com/jquery/jquery-ui/commit/dda7bcb6383ed0fee9dcd1ae5f0a6e1dcc160c6b))
-* Fixed: Doesn't reset after Select when textbox cleared, if same letters typed in rapidly; source function not triggered in that case. ([#6221](http://bugs.jqueryui.com/ticket/6221), [5c67ed2](http://github.com/jquery/jquery-ui/commit/5c67ed26e8c36c42c9f149fcfb2f5fe9e1192b26))
-* Fixed: Autocomplete pops up on readOnly inputs. ([#6170](http://bugs.jqueryui.com/ticket/6170), [450d030](http://github.com/jquery/jquery-ui/commit/450d0306dd748d7efa18d29edc16cebde90b4d11))
-* Fixed: Change event does not fire in IE. ([#6109](http://bugs.jqueryui.com/ticket/6109), [0ccc786](http://github.com/jquery/jquery-ui/commit/0ccc78698b55d5e1bc336bb754b546a9ad19ea5c))
-* Fixed: Errors on empty responses. ([#6147](http://bugs.jqueryui.com/ticket/6147), [a5c1195](http://github.com/jquery/jquery-ui/commit/a5c119558b0b40633269c7565339e5b20754c3d8))
-* Fixed: Allow default behaviour on enter when menu is open but inactive. ([#6038](http://bugs.jqueryui.com/ticket/6038), [adcafce](http://github.com/jquery/jquery-ui/commit/adcafce7a24156c503061eb354867e41064fd89f))
-* Fixed: Selecting an item by pressing enter submits the form in Opera. ([#6055](http://bugs.jqueryui.com/ticket/6055), [c3b282f](http://github.com/jquery/jquery-ui/commit/c3b282fceb8b5161c013575bf01c652d6573d72e))
-* Fixed: Suggestion list does not close properly. ([#6052](http://bugs.jqueryui.com/ticket/6052), [d380099](http://github.com/jquery/jquery-ui/commit/d3800991162ed281dc811552747494df012cfd49))
+* Added: Pass along some more original events. ([da13ea2](https://github.com/jquery/jquery-ui/commit/da13ea26fec7e21f9cd6566e99b7fd6688b5e96e))
+* Added: Split menu resizing logic into its own method to create a more logical method to proxy for custom sizing. ([a0c8564](https://github.com/jquery/jquery-ui/commit/a0c856467d7cb19442ac24a5e8eda5a504d474d6))
+* Fixed: Custom item can be activated (and result in error) on PageUp/PageDown key click. ([#6029](https://bugs.jqueryui.com/ticket/6029), [dda7bcb](https://github.com/jquery/jquery-ui/commit/dda7bcb6383ed0fee9dcd1ae5f0a6e1dcc160c6b))
+* Fixed: Doesn't reset after Select when textbox cleared, if same letters typed in rapidly; source function not triggered in that case. ([#6221](https://bugs.jqueryui.com/ticket/6221), [5c67ed2](https://github.com/jquery/jquery-ui/commit/5c67ed26e8c36c42c9f149fcfb2f5fe9e1192b26))
+* Fixed: Autocomplete pops up on readOnly inputs. ([#6170](https://bugs.jqueryui.com/ticket/6170), [450d030](https://github.com/jquery/jquery-ui/commit/450d0306dd748d7efa18d29edc16cebde90b4d11))
+* Fixed: Change event does not fire in IE. ([#6109](https://bugs.jqueryui.com/ticket/6109), [0ccc786](https://github.com/jquery/jquery-ui/commit/0ccc78698b55d5e1bc336bb754b546a9ad19ea5c))
+* Fixed: Errors on empty responses. ([#6147](https://bugs.jqueryui.com/ticket/6147), [a5c1195](https://github.com/jquery/jquery-ui/commit/a5c119558b0b40633269c7565339e5b20754c3d8))
+* Fixed: Allow default behaviour on enter when menu is open but inactive. ([#6038](https://bugs.jqueryui.com/ticket/6038), [adcafce](https://github.com/jquery/jquery-ui/commit/adcafce7a24156c503061eb354867e41064fd89f))
+* Fixed: Selecting an item by pressing enter submits the form in Opera. ([#6055](https://bugs.jqueryui.com/ticket/6055), [c3b282f](https://github.com/jquery/jquery-ui/commit/c3b282fceb8b5161c013575bf01c652d6573d72e))
+* Fixed: Suggestion list does not close properly. ([#6052](https://bugs.jqueryui.com/ticket/6052), [d380099](https://github.com/jquery/jquery-ui/commit/d3800991162ed281dc811552747494df012cfd49))
### Button
-* Fixed: refresh() fires twice on create. ([#6165](http://bugs.jqueryui.com/ticket/6165), [03efae2](http://github.com/jquery/jquery-ui/commit/03efae28873822a1b753a3ce22e8d5945c9832ce))
+* Fixed: refresh() fires twice on create. ([#6165](https://bugs.jqueryui.com/ticket/6165), [03efae2](https://github.com/jquery/jquery-ui/commit/03efae28873822a1b753a3ce22e8d5945c9832ce))
### Datepicker
-* Added: Galician localization. ([#6079](http://bugs.jqueryui.com/ticket/6079), [f04a25f](http://github.com/jquery/jquery-ui/commit/f04a25f9bf24bcbfa6f9f79b45a6a97bc90ffd1d))
-* Added: Portuguese localization. ([#6102](http://bugs.jqueryui.com/ticket/6102), [23b569f](http://github.com/jquery/jquery-ui/commit/23b569f46ec7472d4baec7486d27ddbe5aaa8518))
-* Fixed: Datepicker breaks on handler ids with dashes. ([#6154](http://bugs.jqueryui.com/ticket/6154), [66346d0](http://github.com/jquery/jquery-ui/commit/66346d04bfa4e9a80ae25a670ea06d9ea7a48e4d))
-* Fixed: Incorrect weekHeader for Russian localization. ([#6100](http://bugs.jqueryui.com/ticket/6100), [7da6624](http://github.com/jquery/jquery-ui/commit/7da662410b67ff2a1538b5d24839ce3e4d78b2b9))
-* Fixed: Showing multiple months highlights selected day in all of them. ([#5984](http://bugs.jqueryui.com/ticket/5984), [a936eb3](http://github.com/jquery/jquery-ui/commit/a936eb3c0982293940a3f3135fc85178bf17534d))
+* Added: Galician localization. ([#6079](https://bugs.jqueryui.com/ticket/6079), [f04a25f](https://github.com/jquery/jquery-ui/commit/f04a25f9bf24bcbfa6f9f79b45a6a97bc90ffd1d))
+* Added: Portuguese localization. ([#6102](https://bugs.jqueryui.com/ticket/6102), [23b569f](https://github.com/jquery/jquery-ui/commit/23b569f46ec7472d4baec7486d27ddbe5aaa8518))
+* Fixed: Datepicker breaks on handler ids with dashes. ([#6154](https://bugs.jqueryui.com/ticket/6154), [66346d0](https://github.com/jquery/jquery-ui/commit/66346d04bfa4e9a80ae25a670ea06d9ea7a48e4d))
+* Fixed: Incorrect weekHeader for Russian localization. ([#6100](https://bugs.jqueryui.com/ticket/6100), [7da6624](https://github.com/jquery/jquery-ui/commit/7da662410b67ff2a1538b5d24839ce3e4d78b2b9))
+* Fixed: Showing multiple months highlights selected day in all of them. ([#5984](https://bugs.jqueryui.com/ticket/5984), [a936eb3](https://github.com/jquery/jquery-ui/commit/a936eb3c0982293940a3f3135fc85178bf17534d))
### Dialog
-* Added: Batch size-related option settings. ([e8e3168](http://github.com/jquery/jquery-ui/commit/e8e3168a3930bcd6689a079e5e210877f836a977))
-* Fixed: Demo of modal form broken. ([#6074](http://bugs.jqueryui.com/ticket/6074), [82b1595](http://github.com/jquery/jquery-ui/commit/82b15951d123c7d68d50fec4a5decbc5af2816ba))
-* Fixed: Dialog windows 1.8.5 draggable problem. ([#6069](http://bugs.jqueryui.com/ticket/6069), [98a98a0](http://github.com/jquery/jquery-ui/commit/98a98a05d1a646a1e53b90020fe7c096acd1d933))
-* Fixed: dialog('open') causes form elements to reset on IE7. ([#6137](http://bugs.jqueryui.com/ticket/6137), [e66cdfc](http://github.com/jquery/jquery-ui/commit/e66cdfcf59f3a03bb3c49337f8c11da0a236b337))
-* Fixed: Modal dialog not retaining radio button selection. ([#4589](http://bugs.jqueryui.com/ticket/4589), [e66cdfc](http://github.com/jquery/jquery-ui/commit/e66cdfcf59f3a03bb3c49337f8c11da0a236b337))
-* Fixed: Dialog causing iframe to reload content every time 'show' is called. ([#4534](http://bugs.jqueryui.com/ticket/4534), [e66cdfc](http://github.com/jquery/jquery-ui/commit/e66cdfcf59f3a03bb3c49337f8c11da0a236b337))
-* Fixed: Dialog height:auto does not work in IE6. ([#6150](http://bugs.jqueryui.com/ticket/6150), [302728b](http://github.com/jquery/jquery-ui/commit/302728bd87dca0a887e25bac7a8a7059865a42af))
-* Fixed: Buttons are not type="button". ([#6128](http://bugs.jqueryui.com/ticket/6128), [cd7f10d](http://github.com/jquery/jquery-ui/commit/cd7f10d480c923d095af6cbd844cbbdb5bb3813e))
-* Fixed: Demos don't work in IE9 because of bgiframe. ([#6190](http://bugs.jqueryui.com/ticket/6190), [7d9d2b5](http://github.com/jquery/jquery-ui/commit/7d9d2b551fc9522e6eea6c4c3df9c235f51b3803))
-* Fixed: Dialog breaks with $.fx.off. ([#6131](http://bugs.jqueryui.com/ticket/6131), [3b38025](http://github.com/jquery/jquery-ui/commit/3b38025cedca458c100176c273c8d3956a7a5459))
-* Fixed: Dialog show/hide animations do not work. ([#6067](http://bugs.jqueryui.com/ticket/6067), [ce08df3](http://github.com/jquery/jquery-ui/commit/ce08df3bdc8f2806062f7a393975656f31cda035))
+* Added: Batch size-related option settings. ([e8e3168](https://github.com/jquery/jquery-ui/commit/e8e3168a3930bcd6689a079e5e210877f836a977))
+* Fixed: Demo of modal form broken. ([#6074](https://bugs.jqueryui.com/ticket/6074), [82b1595](https://github.com/jquery/jquery-ui/commit/82b15951d123c7d68d50fec4a5decbc5af2816ba))
+* Fixed: Dialog windows 1.8.5 draggable problem. ([#6069](https://bugs.jqueryui.com/ticket/6069), [98a98a0](https://github.com/jquery/jquery-ui/commit/98a98a05d1a646a1e53b90020fe7c096acd1d933))
+* Fixed: dialog('open') causes form elements to reset on IE7. ([#6137](https://bugs.jqueryui.com/ticket/6137), [e66cdfc](https://github.com/jquery/jquery-ui/commit/e66cdfcf59f3a03bb3c49337f8c11da0a236b337))
+* Fixed: Modal dialog not retaining radio button selection. ([#4589](https://bugs.jqueryui.com/ticket/4589), [e66cdfc](https://github.com/jquery/jquery-ui/commit/e66cdfcf59f3a03bb3c49337f8c11da0a236b337))
+* Fixed: Dialog causing iframe to reload content every time 'show' is called. ([#4534](https://bugs.jqueryui.com/ticket/4534), [e66cdfc](https://github.com/jquery/jquery-ui/commit/e66cdfcf59f3a03bb3c49337f8c11da0a236b337))
+* Fixed: Dialog height:auto does not work in IE6. ([#6150](https://bugs.jqueryui.com/ticket/6150), [302728b](https://github.com/jquery/jquery-ui/commit/302728bd87dca0a887e25bac7a8a7059865a42af))
+* Fixed: Buttons are not type="button". ([#6128](https://bugs.jqueryui.com/ticket/6128), [cd7f10d](https://github.com/jquery/jquery-ui/commit/cd7f10d480c923d095af6cbd844cbbdb5bb3813e))
+* Fixed: Demos don't work in IE9 because of bgiframe. ([#6190](https://bugs.jqueryui.com/ticket/6190), [7d9d2b5](https://github.com/jquery/jquery-ui/commit/7d9d2b551fc9522e6eea6c4c3df9c235f51b3803))
+* Fixed: Dialog breaks with $.fx.off. ([#6131](https://bugs.jqueryui.com/ticket/6131), [3b38025](https://github.com/jquery/jquery-ui/commit/3b38025cedca458c100176c273c8d3956a7a5459))
+* Fixed: Dialog show/hide animations do not work. ([#6067](https://bugs.jqueryui.com/ticket/6067), [ce08df3](https://github.com/jquery/jquery-ui/commit/ce08df3bdc8f2806062f7a393975656f31cda035))
### Progressbar
-* Added: Callback at the end. ([#3500](http://bugs.jqueryui.com/ticket/3500), [0b6710a](http://github.com/jquery/jquery-ui/commit/0b6710aed7fc9a9412a975c9f70d3fd6a87c4b02))
+* Added: Callback at the end. ([#3500](https://bugs.jqueryui.com/ticket/3500), [0b6710a](https://github.com/jquery/jquery-ui/commit/0b6710aed7fc9a9412a975c9f70d3fd6a87c4b02))
### Tabs
-* Fixed: Incorrect selection of tab on init with hash in url and misordered divs ([#6125](http://bugs.jqueryui.com/ticket/6125), [c3145b6](http://github.com/jquery/jquery-ui/commit/c3145b691b0d028f94fc43c035047d532de94112))
+* Fixed: Incorrect selection of tab on init with hash in url and misordered divs ([#6125](https://bugs.jqueryui.com/ticket/6125), [c3145b6](https://github.com/jquery/jquery-ui/commit/c3145b691b0d028f94fc43c035047d532de94112))
## Effects
-* Added: Allow borderColor to be animated. ([#6164](http://bugs.jqueryui.com/ticket/6164), [09073f0](http://github.com/jquery/jquery-ui/commit/09073f042e3a7336eccc5dd8e20b6ba5d7f4c9fa))
-* Fixed: Passing an object for parameters no longer works. ([#6078](http://bugs.jqueryui.com/ticket/6078), [ce08df3](http://github.com/jquery/jquery-ui/commit/ce08df3bdc8f2806062f7a393975656f31cda035))
+* Added: Allow borderColor to be animated. ([#6164](https://bugs.jqueryui.com/ticket/6164), [09073f0](https://github.com/jquery/jquery-ui/commit/09073f042e3a7336eccc5dd8e20b6ba5d7f4c9fa))
+* Fixed: Passing an object for parameters no longer works. ([#6078](https://bugs.jqueryui.com/ticket/6078), [ce08df3](https://github.com/jquery/jquery-ui/commit/ce08df3bdc8f2806062f7a393975656f31cda035))
## Website
### Download Builder
-* Fixed: Selectable interaction is not minified. ([#5854](http://bugs.jqueryui.com/ticket/5854))
+* Fixed: Selectable interaction is not minified. ([#5854](https://bugs.jqueryui.com/ticket/5854))
diff --git a/page/changelog/1.8.7.md b/page/changelog/1.8.7.md
index 0727d27..f112142 100644
--- a/page/changelog/1.8.7.md
+++ b/page/changelog/1.8.7.md
@@ -2,96 +2,98 @@
"title": "jQuery UI 1.8.7 Changelog"
}
+Released on December 8, 2010
+
## Build
-* Fixed: Regex for relative path replacement on cdn target ([ba28d11](http://github.com/jquery/jquery-ui/commit/ba28d11391c64f5e2edd15c5bbc0b11757bdbcda))
-* Fixed: Minified css does not @include minified css files. ([#6634](http://bugs.jqueryui.com/ticket/6634), [812c274](http://github.com/jquery/jquery-ui/commit/812c274a3376c4fee4d9705628a629d185bc86a9))
+* Fixed: Regex for relative path replacement on cdn target ([ba28d11](https://github.com/jquery/jquery-ui/commit/ba28d11391c64f5e2edd15c5bbc0b11757bdbcda))
+* Fixed: Minified css does not @include minified css files. ([#6634](https://bugs.jqueryui.com/ticket/6634), [812c274](https://github.com/jquery/jquery-ui/commit/812c274a3376c4fee4d9705628a629d185bc86a9))
## Core & Utilities
### Position
-* Fixed: Sometimes positioning is off by 1px in Firefox. ([#6000](http://bugs.jqueryui.com/ticket/6000), [c667cff](http://github.com/jquery/jquery-ui/commit/c667cff22d8ef352b81338e2834379678fb2dd27))
+* Fixed: Sometimes positioning is off by 1px in Firefox. ([#6000](https://bugs.jqueryui.com/ticket/6000), [c667cff](https://github.com/jquery/jquery-ui/commit/c667cff22d8ef352b81338e2834379678fb2dd27))
## Interactions
### Draggable
-* Fixed: Issue with containment on position:* Fixed elements. ([#6181](http://bugs.jqueryui.com/ticket/6181), [e01664a](http://github.com/jquery/jquery-ui/commit/e01664a3820c185636a3fe7099e93e68091d24fd))
+* Fixed: Issue with containment on position:* Fixed elements. ([#6181](https://bugs.jqueryui.com/ticket/6181), [e01664a](https://github.com/jquery/jquery-ui/commit/e01664a3820c185636a3fe7099e93e68091d24fd))
### Sortable
-* Fixed: Link event firing on sortable with connect list ([#4752](http://bugs.jqueryui.com/ticket/4752), [e2a693b](http://github.com/jquery/jquery-ui/commit/e2a693ba78be5a8d9bbe0b55e48d82860a1bbdc3))
+* Fixed: Link event firing on sortable with connect list ([#4752](https://bugs.jqueryui.com/ticket/4752), [e2a693b](https://github.com/jquery/jquery-ui/commit/e2a693ba78be5a8d9bbe0b55e48d82860a1bbdc3))
## Widgets
### Autocomplete
-* Fixed: Horizontal scrollbar on IE7. ([#6250](http://bugs.jqueryui.com/ticket/6250), [53215de](http://github.com/jquery/jquery-ui/commit/53215ded4a6618e054011e546c77cf63381e04be), [5431a45](http://github.com/jquery/jquery-ui/commit/5431a4553a5fb55395ddeebe2a9297e869b8271d))
-* Fixed: Combobox example does not show suggestion on second try. ([#6695](http://bugs.jqueryui.com/ticket/6695), [ddb4694](http://github.com/jquery/jquery-ui/commit/ddb4694cc1b4edcbff6a2abedccde027e47dcbc3))
-* Fixed: Tab on multiple Autocomplete should not change focus after selecting. ([#6661](http://bugs.jqueryui.com/ticket/6661), [4637695](http://github.com/jquery/jquery-ui/commit/46376958940fa7823c2e5ef4fb15b87c7d2f47db))
-* Fixed: ui-autocomplete-loading class not removed when Ajax request times out. ([#6692](http://bugs.jqueryui.com/ticket/6692), [40135bb](http://github.com/jquery/jquery-ui/commit/40135bb09130a56aabc0d185b62a597cb45df0dc))
-* Fixed: menu position issue when positioned to the right. ([#6648](http://bugs.jqueryui.com/ticket/6648), [f85b998](http://github.com/jquery/jquery-ui/commit/f85b998f44e68860c633e467fe6427e52f91282c))
-* Fixed: Don't trigger close event until after the menu is hidden. ([#6227](http://bugs.jqueryui.com/ticket/6227), [f4d8ec9](http://github.com/jquery/jquery-ui/commit/f4d8ec9159b84718051b257715b97d22fba936e7))
-* Fixed: Null ui.item on change event in IE8. ([#6709](http://bugs.jqueryui.com/ticket/6709), [eac910f](http://github.com/jquery/jquery-ui/commit/eac910f3157af42c7fcd2230aaff8508974ecc9a))
-* Fixed: Combobox is not working in IE if value and name is different. ([#6673](http://bugs.jqueryui.com/ticket/6673), [ddf5946](http://github.com/jquery/jquery-ui/commit/ddf59462af7fb986bb06c0b6d0101086b0702f5b))
-* Fixed: Combobox doesn't handle destroy. ([#6685](http://bugs.jqueryui.com/ticket/6685), [d97add1](http://github.com/jquery/jquery-ui/commit/d97add11b08227b3cbde76c2e93fe50c42a27123))
+* Fixed: Horizontal scrollbar on IE7. ([#6250](https://bugs.jqueryui.com/ticket/6250), [53215de](https://github.com/jquery/jquery-ui/commit/53215ded4a6618e054011e546c77cf63381e04be), [5431a45](https://github.com/jquery/jquery-ui/commit/5431a4553a5fb55395ddeebe2a9297e869b8271d))
+* Fixed: Combobox example does not show suggestion on second try. ([#6695](https://bugs.jqueryui.com/ticket/6695), [ddb4694](https://github.com/jquery/jquery-ui/commit/ddb4694cc1b4edcbff6a2abedccde027e47dcbc3))
+* Fixed: Tab on multiple Autocomplete should not change focus after selecting. ([#6661](https://bugs.jqueryui.com/ticket/6661), [4637695](https://github.com/jquery/jquery-ui/commit/46376958940fa7823c2e5ef4fb15b87c7d2f47db))
+* Fixed: ui-autocomplete-loading class not removed when Ajax request times out. ([#6692](https://bugs.jqueryui.com/ticket/6692), [40135bb](https://github.com/jquery/jquery-ui/commit/40135bb09130a56aabc0d185b62a597cb45df0dc))
+* Fixed: menu position issue when positioned to the right. ([#6648](https://bugs.jqueryui.com/ticket/6648), [f85b998](https://github.com/jquery/jquery-ui/commit/f85b998f44e68860c633e467fe6427e52f91282c))
+* Fixed: Don't trigger close event until after the menu is hidden. ([#6227](https://bugs.jqueryui.com/ticket/6227), [f4d8ec9](https://github.com/jquery/jquery-ui/commit/f4d8ec9159b84718051b257715b97d22fba936e7))
+* Fixed: Null ui.item on change event in IE8. ([#6709](https://bugs.jqueryui.com/ticket/6709), [eac910f](https://github.com/jquery/jquery-ui/commit/eac910f3157af42c7fcd2230aaff8508974ecc9a))
+* Fixed: Combobox is not working in IE if value and name is different. ([#6673](https://bugs.jqueryui.com/ticket/6673), [ddf5946](https://github.com/jquery/jquery-ui/commit/ddf59462af7fb986bb06c0b6d0101086b0702f5b))
+* Fixed: Combobox doesn't handle destroy. ([#6685](https://bugs.jqueryui.com/ticket/6685), [d97add1](https://github.com/jquery/jquery-ui/commit/d97add11b08227b3cbde76c2e93fe50c42a27123))
### Button
-* Added: Option for specifying which items to convert to buttons. ([#6262](http://bugs.jqueryui.com/ticket/6262), [5dad57e](http://github.com/jquery/jquery-ui/commit/5dad57e3c2001b6c644e3c39798198bc34fa1e5d))
-* Fixed: Buttonset not applying ui-corner to invisible elements. ([#6262](http://bugs.jqueryui.com/ticket/6262), [5dad57e](http://github.com/jquery/jquery-ui/commit/5dad57e3c2001b6c644e3c39798198bc34fa1e5d))
+* Added: Option for specifying which items to convert to buttons. ([#6262](https://bugs.jqueryui.com/ticket/6262), [5dad57e](https://github.com/jquery/jquery-ui/commit/5dad57e3c2001b6c644e3c39798198bc34fa1e5d))
+* Fixed: Buttonset not applying ui-corner to invisible elements. ([#6262](https://bugs.jqueryui.com/ticket/6262), [5dad57e](https://github.com/jquery/jquery-ui/commit/5dad57e3c2001b6c644e3c39798198bc34fa1e5d))
### Datepicker
-* Added: Rhaeto-Romanic translation. ([#6728](http://bugs.jqueryui.com/ticket/6728), [5f919b2](http://github.com/jquery/jquery-ui/commit/5f919b2421618fb80e6aa6ac05273c6bd2f153b7))
-* Fixed: Date Range demo for Datepicker has unclear title. ([#6675](http://bugs.jqueryui.com/ticket/6675), [f070b0a](http://github.com/jquery/jquery-ui/commit/f070b0a24b7f44b69edfdcd790fd5b72883c11ae))
-* Fixed: changeYear + yearRange causes flash in Firefox. ([#5493](http://bugs.jqueryui.com/ticket/5493), [7832fd8](http://github.com/jquery/jquery-ui/commit/7832fd8e9c59c6cdc2465bb039c12c87fca85b5d))
-* Fixed: setDate manipulates its argument ([#6671](http://bugs.jqueryui.com/ticket/6671), [d69f2ec](http://github.com/jquery/jquery-ui/commit/d69f2ecb1273f382d83b13c349a8c76b17bee2a6))
-* Fixed: cmd+a/c/v is not working on MAC OS-X ([#5317](http://bugs.jqueryui.com/ticket/5317), [51695f8](http://github.com/jquery/jquery-ui/commit/51695f82c8c0017d3853b36bdadec5c8253648fb))
-* Fixed: Correction in French localization for Datepicker. ([#5455](http://bugs.jqueryui.com/ticket/5455), [9ead629](http://github.com/jquery/jquery-ui/commit/9ead629c2cdd2689028f3a7ebb258aa41ab47afb), [320dfb8](http://github.com/jquery/jquery-ui/commit/320dfb86790571358db4a46d5b9d2a8278cf6024))
-* Fixed: Wrong month name for Thai locale. ([#5862](http://bugs.jqueryui.com/ticket/5862), [482d3c2](http://github.com/jquery/jquery-ui/commit/482d3c25613c43a301ca6597aeea30ecb37e00e8))
-* Fixed: Norwegian locale. ([#6086](http://bugs.jqueryui.com/ticket/6086), [226aa35](http://github.com/jquery/jquery-ui/commit/226aa35e39c2a72e3c013f6f7b62e0fe67dff7ae))
-* Fixed: Parsing of single y character for date formats. ([#6659](http://bugs.jqueryui.com/ticket/6659), [a2e0eb9](http://github.com/jquery/jquery-ui/commit/a2e0eb920aaa41e6248e1a2f7d013997ba4f421f))
-* Fixed: setDate() should accept an empty string. ([#6684](http://bugs.jqueryui.com/ticket/6684), [7b523c2](http://github.com/jquery/jquery-ui/commit/7b523c2ec144fb0f4e39ad1c593453058fd3fb3a), [9ade710](http://github.com/jquery/jquery-ui/commit/9ade71071a54fba328a429e608757e8d984b052e))
-* Fixed: Problem selecting the date with keyboard shorcuts ([#5527](http://bugs.jqueryui.com/ticket/5527), [98f7e6a](http://github.com/jquery/jquery-ui/commit/98f7e6a8d615772fbddbf185241d087a95e5e121))
-* Fixed: Arabic Localization miss order ([#6676](http://bugs.jqueryui.com/ticket/6676), [3361e8f](http://github.com/jquery/jquery-ui/commit/3361e8fe9d94792c399654312d0ee2cf2c8cfe73))
+* Added: Rhaeto-Romanic translation. ([#6728](https://bugs.jqueryui.com/ticket/6728), [5f919b2](https://github.com/jquery/jquery-ui/commit/5f919b2421618fb80e6aa6ac05273c6bd2f153b7))
+* Fixed: Date Range demo for Datepicker has unclear title. ([#6675](https://bugs.jqueryui.com/ticket/6675), [f070b0a](https://github.com/jquery/jquery-ui/commit/f070b0a24b7f44b69edfdcd790fd5b72883c11ae))
+* Fixed: changeYear + yearRange causes flash in Firefox. ([#5493](https://bugs.jqueryui.com/ticket/5493), [7832fd8](https://github.com/jquery/jquery-ui/commit/7832fd8e9c59c6cdc2465bb039c12c87fca85b5d))
+* Fixed: setDate manipulates its argument ([#6671](https://bugs.jqueryui.com/ticket/6671), [d69f2ec](https://github.com/jquery/jquery-ui/commit/d69f2ecb1273f382d83b13c349a8c76b17bee2a6))
+* Fixed: cmd+a/c/v is not working on MAC OS-X ([#5317](https://bugs.jqueryui.com/ticket/5317), [51695f8](https://github.com/jquery/jquery-ui/commit/51695f82c8c0017d3853b36bdadec5c8253648fb))
+* Fixed: Correction in French localization for Datepicker. ([#5455](https://bugs.jqueryui.com/ticket/5455), [9ead629](https://github.com/jquery/jquery-ui/commit/9ead629c2cdd2689028f3a7ebb258aa41ab47afb), [320dfb8](https://github.com/jquery/jquery-ui/commit/320dfb86790571358db4a46d5b9d2a8278cf6024))
+* Fixed: Wrong month name for Thai locale. ([#5862](https://bugs.jqueryui.com/ticket/5862), [482d3c2](https://github.com/jquery/jquery-ui/commit/482d3c25613c43a301ca6597aeea30ecb37e00e8))
+* Fixed: Norwegian locale. ([#6086](https://bugs.jqueryui.com/ticket/6086), [226aa35](https://github.com/jquery/jquery-ui/commit/226aa35e39c2a72e3c013f6f7b62e0fe67dff7ae))
+* Fixed: Parsing of single y character for date formats. ([#6659](https://bugs.jqueryui.com/ticket/6659), [a2e0eb9](https://github.com/jquery/jquery-ui/commit/a2e0eb920aaa41e6248e1a2f7d013997ba4f421f))
+* Fixed: setDate() should accept an empty string. ([#6684](https://bugs.jqueryui.com/ticket/6684), [7b523c2](https://github.com/jquery/jquery-ui/commit/7b523c2ec144fb0f4e39ad1c593453058fd3fb3a), [9ade710](https://github.com/jquery/jquery-ui/commit/9ade71071a54fba328a429e608757e8d984b052e))
+* Fixed: Problem selecting the date with keyboard shorcuts ([#5527](https://bugs.jqueryui.com/ticket/5527), [98f7e6a](https://github.com/jquery/jquery-ui/commit/98f7e6a8d615772fbddbf185241d087a95e5e121))
+* Fixed: Arabic Localization miss order ([#6676](https://bugs.jqueryui.com/ticket/6676), [3361e8f](https://github.com/jquery/jquery-ui/commit/3361e8fe9d94792c399654312d0ee2cf2c8cfe73))
### Dialog
-* Fixed: Adding a button makes the dialog disappear in IE6. ([#6717](http://bugs.jqueryui.com/ticket/6717), [b9e34f7](http://github.com/jquery/jquery-ui/commit/b9e34f726a89fc9edb3b05d4a53b8081c6c6d80f))
-* Fixed: Closing UI dialog when z-index is not defined in any .ui-dialog class, causes NaN to be used as Z-index, throwing an error. ([#5955](http://bugs.jqueryui.com/ticket/5955), [#4652](http://bugs.jqueryui.com/ticket/4652), [8bb412d](http://github.com/jquery/jquery-ui/commit/8bb412dd4a09d66d0f4a5456410a647e3db38bcc))
-* Fixed: Missing element not found check in overlay code. ([#6645](http://bugs.jqueryui.com/ticket/6645), [dfb3544](http://github.com/jquery/jquery-ui/commit/dfb35442975a95c91f6c28188fad021714d7098b))
-* Fixed: ui.dialog with jQuery 1.3.2 causes RangeError. ([#6030](http://bugs.jqueryui.com/ticket/6030), [22671ad](http://github.com/jquery/jquery-ui/commit/22671ad4f8e3e2e921c27bd2933fa088950abf2f))
+* Fixed: Adding a button makes the dialog disappear in IE6. ([#6717](https://bugs.jqueryui.com/ticket/6717), [b9e34f7](https://github.com/jquery/jquery-ui/commit/b9e34f726a89fc9edb3b05d4a53b8081c6c6d80f))
+* Fixed: Closing UI dialog when z-index is not defined in any .ui-dialog class, causes NaN to be used as Z-index, throwing an error. ([#5955](https://bugs.jqueryui.com/ticket/5955), [#4652](https://bugs.jqueryui.com/ticket/4652), [8bb412d](https://github.com/jquery/jquery-ui/commit/8bb412dd4a09d66d0f4a5456410a647e3db38bcc))
+* Fixed: Missing element not found check in overlay code. ([#6645](https://bugs.jqueryui.com/ticket/6645), [dfb3544](https://github.com/jquery/jquery-ui/commit/dfb35442975a95c91f6c28188fad021714d7098b))
+* Fixed: ui.dialog with jQuery 1.3.2 causes RangeError. ([#6030](https://bugs.jqueryui.com/ticket/6030), [22671ad](https://github.com/jquery/jquery-ui/commit/22671ad4f8e3e2e921c27bd2933fa088950abf2f))
### Progressbar
-* Added: Max option. ([#6681](http://bugs.jqueryui.com/ticket/6681), [d23fe49](http://github.com/jquery/jquery-ui/commit/d23fe49ae814f677fedd55cddd97768bddeffa12))
+* Added: Max option. ([#6681](https://bugs.jqueryui.com/ticket/6681), [d23fe49](https://github.com/jquery/jquery-ui/commit/d23fe49ae814f677fedd55cddd97768bddeffa12))
### Slider
-* Fixed: Using range and step options makes jQuery change min and max. ([#6643](http://bugs.jqueryui.com/ticket/6643), [0d0969c](http://github.com/jquery/jquery-ui/commit/0d0969ca2b6ad5c8937313cc3868d8a21335d748))
-* Fixed: Handle jumps a few pixels when clicked. ([#4467](http://bugs.jqueryui.com/ticket/4467), [0c3e56d](http://github.com/jquery/jquery-ui/commit/0c3e56dd7d82e889ffabc606fd66d47f3e2d27c8))
+* Fixed: Using range and step options makes jQuery change min and max. ([#6643](https://bugs.jqueryui.com/ticket/6643), [0d0969c](https://github.com/jquery/jquery-ui/commit/0d0969ca2b6ad5c8937313cc3868d8a21335d748))
+* Fixed: Handle jumps a few pixels when clicked. ([#4467](https://bugs.jqueryui.com/ticket/4467), [0c3e56d](https://github.com/jquery/jquery-ui/commit/0c3e56dd7d82e889ffabc606fd66d47f3e2d27c8))
### Tabs
-* Fixed: Tabs module uses global selectors instead of local to "this.element" element. ([#6710](http://bugs.jqueryui.com/ticket/6710), [63ec115](http://github.com/jquery/jquery-ui/commit/63ec1152d810a80596b195301ee3d2cd3d6a1776))
+* Fixed: Tabs module uses global selectors instead of local to "this.element" element. ([#6710](https://bugs.jqueryui.com/ticket/6710), [63ec115](https://github.com/jquery/jquery-ui/commit/63ec1152d810a80596b195301ee3d2cd3d6a1776))
## Effects
-* Fixed: switchClass queues incorrectly. ([#6244](http://bugs.jqueryui.com/ticket/6244), [abfa0e1](http://github.com/jquery/jquery-ui/commit/abfa0e1e951b74548f9441a7ba44325d8c4d55b7))
-* Fixed: Allow named speeds to be 0 ([#6657](http://bugs.jqueryui.com/ticket/6657), [859c87e](http://github.com/jquery/jquery-ui/commit/859c87e6d92813c7d99c2ceeaad0ded766c820ea))
+* Fixed: switchClass queues incorrectly. ([#6244](https://bugs.jqueryui.com/ticket/6244), [abfa0e1](https://github.com/jquery/jquery-ui/commit/abfa0e1e951b74548f9441a7ba44325d8c4d55b7))
+* Fixed: Allow named speeds to be 0 ([#6657](https://bugs.jqueryui.com/ticket/6657), [859c87e](https://github.com/jquery/jquery-ui/commit/859c87e6d92813c7d99c2ceeaad0ded766c820ea))
### Individual effects
-* Fixed: Slide effect is jumpy with certain parameter combinations. ([#6637](http://bugs.jqueryui.com/ticket/6637), [412d1aa](http://github.com/jquery/jquery-ui/commit/412d1aa1c9ac0a8a933710fef6d233a061fb9d13))
+* Fixed: Slide effect is jumpy with certain parameter combinations. ([#6637](https://bugs.jqueryui.com/ticket/6637), [412d1aa](https://github.com/jquery/jquery-ui/commit/412d1aa1c9ac0a8a933710fef6d233a061fb9d13))
## CSS Framework
-* Fixed: ui-helper-hidden-accessible affects page layout. ([#4623](http://bugs.jqueryui.com/ticket/4623), [a9d8549](http://github.com/jquery/jquery-ui/commit/a9d854967f0175b4c4b8a48c76a71d0fd1028680))
+* Fixed: ui-helper-hidden-accessible affects page layout. ([#4623](https://bugs.jqueryui.com/ticket/4623), [a9d8549](https://github.com/jquery/jquery-ui/commit/a9d854967f0175b4c4b8a48c76a71d0fd1028680))
## Website
### Download Builder
-* Fixed: Issue with UI theme dropdown on the jQuery UI download page ([#6735](http://bugs.jqueryui.com/ticket/6735))
+* Fixed: Issue with UI theme dropdown on the jQuery UI download page ([#6735](https://bugs.jqueryui.com/ticket/6735))
diff --git a/page/changelog/1.8.8.md b/page/changelog/1.8.8.md
index c4d6e67..cfd49b3 100644
--- a/page/changelog/1.8.8.md
+++ b/page/changelog/1.8.8.md
@@ -2,42 +2,44 @@
"title": "jQuery UI 1.8.8 Changelog"
}
+Released on January 13, 2011
+
## Core & Utilities
### Position
-* Fixed: Collision detection fails on the right side in Internet Explorer. ([#6812](http://bugs.jqueryui.com/ticket/6812), [ca46a3a](http://github.com/jquery/jquery-ui/commit/ca46a3a8a9353e50e517ece4273639637e5b3cf1))
+* Fixed: Collision detection fails on the right side in Internet Explorer. ([#6812](https://bugs.jqueryui.com/ticket/6812), [ca46a3a](https://github.com/jquery/jquery-ui/commit/ca46a3a8a9353e50e517ece4273639637e5b3cf1))
## Widgets
### Accordion
-* Fixed: Accordion header margins disappear in IE 8. ([#5421](http://bugs.jqueryui.com/ticket/5421), [3471bd6](http://github.com/jquery/jquery-ui/commit/3471bd66e0ff5d96c8ac867dbecd2290a4708385))
-* Fixed: ol numbering bug. ([#6720](http://bugs.jqueryui.com/ticket/6720), [dd7aae2](http://github.com/jquery/jquery-ui/commit/dd7aae2cc8789316592aaa5f191fa9bb546befa5))
+* Fixed: Accordion header margins disappear in IE 8. ([#5421](https://bugs.jqueryui.com/ticket/5421), [3471bd6](https://github.com/jquery/jquery-ui/commit/3471bd66e0ff5d96c8ac867dbecd2290a4708385))
+* Fixed: ol numbering bug. ([#6720](https://bugs.jqueryui.com/ticket/6720), [dd7aae2](https://github.com/jquery/jquery-ui/commit/dd7aae2cc8789316592aaa5f191fa9bb546befa5))
### Autocomplete
-* Fixed: The combobox "show all" button submits forms. ([#6755](http://bugs.jqueryui.com/ticket/6755), [ffc0855](http://github.com/jquery/jquery-ui/commit/ffc08557ad764d7aca17ea1c6e75a62f6eb65c15))
-* Fixed: Menu may still render when autocomplete is disabled. ([#6752](http://bugs.jqueryui.com/ticket/6752), [d2a12ff](http://github.com/jquery/jquery-ui/commit/d2a12ff825ebb0e620b25abdbcbaf024881ef537))
-* Fixed: Loading class removed when multiple Ajax requests occur. ([#6761](http://bugs.jqueryui.com/ticket/6761), [2aabc39](http://github.com/jquery/jquery-ui/commit/2aabc3911c3f9e4ca2bbb48d298ee6e5648b4c12))
-* Fixed: Improve autocomplete _render documentation. ([#6772](http://bugs.jqueryui.com/ticket/6772))
+* Fixed: The combobox "show all" button submits forms. ([#6755](https://bugs.jqueryui.com/ticket/6755), [ffc0855](https://github.com/jquery/jquery-ui/commit/ffc08557ad764d7aca17ea1c6e75a62f6eb65c15))
+* Fixed: Menu may still render when autocomplete is disabled. ([#6752](https://bugs.jqueryui.com/ticket/6752), [d2a12ff](https://github.com/jquery/jquery-ui/commit/d2a12ff825ebb0e620b25abdbcbaf024881ef537))
+* Fixed: Loading class removed when multiple Ajax requests occur. ([#6761](https://bugs.jqueryui.com/ticket/6761), [2aabc39](https://github.com/jquery/jquery-ui/commit/2aabc3911c3f9e4ca2bbb48d298ee6e5648b4c12))
+* Fixed: Improve autocomplete _render documentation. ([#6772](https://bugs.jqueryui.com/ticket/6772))
### Datepicker
-* Added: Malayalam translation. ([#6822](http://bugs.jqueryui.com/ticket/6822), [238196d](http://github.com/jquery/jquery-ui/commit/238196d9002c86ca8ea15a58a7c8ae6e91d8de0d))
+* Added: Malayalam translation. ([#6822](https://bugs.jqueryui.com/ticket/6822), [238196d](https://github.com/jquery/jquery-ui/commit/238196d9002c86ca8ea15a58a7c8ae6e91d8de0d))
### Dialog
-* Fixed: Typesetting on title bar is inconsistent with other widget title bars/headers. ([#6832](http://bugs.jqueryui.com/ticket/6832), [1f0fd61](http://github.com/jquery/jquery-ui/commit/1f0fd61b4e8372be63ccf9e88c6428bf47e0d9a4))
+* Fixed: Typesetting on title bar is inconsistent with other widget title bars/headers. ([#6832](https://bugs.jqueryui.com/ticket/6832), [1f0fd61](https://github.com/jquery/jquery-ui/commit/1f0fd61b4e8372be63ccf9e88c6428bf47e0d9a4))
## Effects
-* Fixed: animateClass broken in 1.8.7. ([#6748](http://bugs.jqueryui.com/ticket/6748), [cba92af](http://github.com/jquery/jquery-ui/commit/cba92afe257e51e18ca2bb2161559e8928e82fad))
+* Fixed: animateClass broken in 1.8.7. ([#6748](https://bugs.jqueryui.com/ticket/6748), [cba92af](https://github.com/jquery/jquery-ui/commit/cba92afe257e51e18ca2bb2161559e8928e82fad))
### Individual effects
-* Fixed: Bug in slide effect when dir=rtl and has position.right. ([#6736](http://bugs.jqueryui.com/ticket/6736), [b475ae7](http://github.com/jquery/jquery-ui/commit/b475ae74dfc72a46b2ed7e988ffad461e76b2ea2))
+* Fixed: Bug in slide effect when dir=rtl and has position.right. ([#6736](https://bugs.jqueryui.com/ticket/6736), [b475ae7](https://github.com/jquery/jquery-ui/commit/b475ae74dfc72a46b2ed7e988ffad461e76b2ea2))
## Website
-* Fixed: Side navigation links on the Getting Started page do not work. ([#6778](http://bugs.jqueryui.com/ticket/6778))
+* Fixed: Side navigation links on the Getting Started page do not work. ([#6778](https://bugs.jqueryui.com/ticket/6778))
diff --git a/page/changelog/1.8.9.md b/page/changelog/1.8.9.md
index ff8ecb4..24d74e3 100644
--- a/page/changelog/1.8.9.md
+++ b/page/changelog/1.8.9.md
@@ -2,29 +2,31 @@
"title": "jQuery UI 1.8.9 Changelog"
}
+Released on January 19, 2011
+
## Interactions
### Draggable
-* Fixed: Incorrect handling of revert when using a helper and the original element is removed. ([#6871](http://bugs.jqueryui.com/ticket/6871), [0ed452b](http://github.com/jquery/jquery-ui/commit/0ed452bf2581a83781c417dffe6ed4e3dbe2d676))
+* Fixed: Incorrect handling of revert when using a helper and the original element is removed. ([#6871](https://bugs.jqueryui.com/ticket/6871), [0ed452b](https://github.com/jquery/jquery-ui/commit/0ed452bf2581a83781c417dffe6ed4e3dbe2d676))
### Sortable
-* Fixed: Calling cancel when there is no sort occurring throws an error. ([#6879](http://bugs.jqueryui.com/ticket/6879), [1ce8cf8](http://github.com/jquery/jquery-ui/commit/1ce8cf885f8f83b3c449629acb7124e31f4c71c3))
-* Fixed: Calling cancel throws an error. ([#5882](http://bugs.jqueryui.com/ticket/5882), [465c4c2](http://github.com/jquery/jquery-ui/commit/465c4c2cbef33fc4491d862245180b6441875c15))
+* Fixed: Calling cancel when there is no sort occurring throws an error. ([#6879](https://bugs.jqueryui.com/ticket/6879), [1ce8cf8](https://github.com/jquery/jquery-ui/commit/1ce8cf885f8f83b3c449629acb7124e31f4c71c3))
+* Fixed: Calling cancel throws an error. ([#5882](https://bugs.jqueryui.com/ticket/5882), [465c4c2](https://github.com/jquery/jquery-ui/commit/465c4c2cbef33fc4491d862245180b6441875c15))
## Widgets
### Accordion
-* Fixed: Opening a panel after all panels have been collapsed causes an error. ([#6856](http://bugs.jqueryui.com/ticket/6856), [a7aa65d](http://github.com/jquery/jquery-ui/commit/a7aa65d1fcbb21f6591985d05e147daa23df60d5))
+* Fixed: Opening a panel after all panels have been collapsed causes an error. ([#6856](https://bugs.jqueryui.com/ticket/6856), [a7aa65d](https://github.com/jquery/jquery-ui/commit/a7aa65d1fcbb21f6591985d05e147daa23df60d5))
### Datepicker
-* Added: Algerian Arabic localizations. ([#6877](http://bugs.jqueryui.com/ticket/6877), [cf622ca](http://github.com/jquery/jquery-ui/commit/cf622cacd61238e2f5882e9988f47539a860c42e))
-* Added: Australian and New Zealand localizations. ([#6828](http://bugs.jqueryui.com/ticket/6828), [b3145fb](http://github.com/jquery/jquery-ui/commit/b3145fb5bcfe6e8f283cb92cb368d094568e02ff))
-* Fixed: parseDate does not default shortYearCutoff correctly. ([#6872](http://bugs.jqueryui.com/ticket/6872), [015ea16](http://github.com/jquery/jquery-ui/commit/015ea163d1995f5a3f42fd394d9db3abdc0fa16a))
+* Added: Algerian Arabic localizations. ([#6877](https://bugs.jqueryui.com/ticket/6877), [cf622ca](https://github.com/jquery/jquery-ui/commit/cf622cacd61238e2f5882e9988f47539a860c42e))
+* Added: Australian and New Zealand localizations. ([#6828](https://bugs.jqueryui.com/ticket/6828), [b3145fb](https://github.com/jquery/jquery-ui/commit/b3145fb5bcfe6e8f283cb92cb368d094568e02ff))
+* Fixed: parseDate does not default shortYearCutoff correctly. ([#6872](https://bugs.jqueryui.com/ticket/6872), [015ea16](https://github.com/jquery/jquery-ui/commit/015ea163d1995f5a3f42fd394d9db3abdc0fa16a))
### Tabs
-* Fixed: Inconsistent ui.panel contents for show event of tabs widget. ([#6867](http://bugs.jqueryui.com/ticket/6867), [c6394d7](http://github.com/jquery/jquery-ui/commit/c6394d7afae12739a6302fd84cf15d7e7a2cc482))
+* Fixed: Inconsistent ui.panel contents for show event of tabs widget. ([#6867](https://bugs.jqueryui.com/ticket/6867), [c6394d7](https://github.com/jquery/jquery-ui/commit/c6394d7afae12739a6302fd84cf15d7e7a2cc482))
diff --git a/page/changelog/1.8.md b/page/changelog/1.8.md
index 1e2d14a..79d39fe 100644
--- a/page/changelog/1.8.md
+++ b/page/changelog/1.8.md
@@ -2,6 +2,8 @@
"title": "jQuery UI 1.8 Changelog"
}
+Released on March 18, 2010
+
## New Plugins
* Core & Utilities: Position
@@ -12,8 +14,8 @@
## Build
* Renamed: All .js and .css files to use jquery.ui. prefix instead of ui. prefix.
-* Fixed: Build on non-Windows platforms. ([#4973](http://bugs.jqueryui.com/ticket/4973), [#4896](http://bugs.jqueryui.com/ticket/4896))
-* Fixed: Build includes @import and full CSS. ([#5044](http://bugs.jqueryui.com/ticket/5044))
+* Fixed: Build on non-Windows platforms. ([#4973](https://bugs.jqueryui.com/ticket/4973), [#4896](https://bugs.jqueryui.com/ticket/4896))
+* Fixed: Build includes @import and full CSS. ([#5044](https://bugs.jqueryui.com/ticket/5044))
## Core & Utilities
@@ -30,25 +32,25 @@
Note: The mouse widget that was in ui.core.js now has its own file, jquery.ui.mouse.js. This slims down UI Core for those plugins that don't use the mouse widget.
-* Fixed: interaction plugins don't disable text selection in IE. ([#4773](http://bugs.jqueryui.com/ticket/4773))
+* Fixed: interaction plugins don't disable text selection in IE. ([#4773](https://bugs.jqueryui.com/ticket/4773))
### Widget Factory - New!
Note: The widget factory was heavily refactored in the 1.8 release. See the Upgrade Guide for more details. The widget factory was also moved to its own file, jquery.ui.widget.js, and only depends on jQuery, meaning it can be used without UI Core.
-* Added: Custom selectors for widgets, e.g., :ui-draggable. ([#4266](http://bugs.jqueryui.com/ticket/4266))
-* Added: Widget factory auto detects getters. ([#4411](http://bugs.jqueryui.com/ticket/4411), [#4601](http://bugs.jqueryui.com/ticket/4601))
-* Added: plugin options now do a deep extend with defaults. ([#4366](http://bugs.jqueryui.com/ticket/4366))
-* Added: Multiple option hashes can now be passed on init. ([#4784](http://bugs.jqueryui.com/ticket/4784))
-* Added: Widget method to get the outermost element of a plugin. ([#4913](http://bugs.jqueryui.com/ticket/4913))
-* Added: The option method now returns the full options hash when called with no arguments. ([#5020](http://bugs.jqueryui.com/ticket/5020))
-* Added: Widget factory now adds disabled classes to outermost element instead of main element. ([#5028](http://bugs.jqueryui.com/ticket/5028))
-* Added: Re-instantiating plugins without destroying is now allowed. ([#5064](http://bugs.jqueryui.com/ticket/5064))
-* Fixed: All widget events are now lowercase. ([#4668](http://bugs.jqueryui.com/ticket/4668))
-* Fixed: ui hash is always an object in callbacks/events now. ([#4650](http://bugs.jqueryui.com/ticket/4650))
-* Fixed: Widget factory does not unbind all events. ([#5005](http://bugs.jqueryui.com/ticket/5005))
-* Fixed: Using effects with jQuery 1.4 kills widget instances. ([#5076](http://bugs.jqueryui.com/ticket/5076))
-* Fixed: .remove() proxy doesn't work properly. ([#5143](http://bugs.jqueryui.com/ticket/5143))
+* Added: Custom selectors for widgets, e.g., :ui-draggable. ([#4266](https://bugs.jqueryui.com/ticket/4266))
+* Added: Widget factory auto detects getters. ([#4411](https://bugs.jqueryui.com/ticket/4411), [#4601](https://bugs.jqueryui.com/ticket/4601))
+* Added: plugin options now do a deep extend with defaults. ([#4366](https://bugs.jqueryui.com/ticket/4366))
+* Added: Multiple option hashes can now be passed on init. ([#4784](https://bugs.jqueryui.com/ticket/4784))
+* Added: Widget method to get the outermost element of a plugin. ([#4913](https://bugs.jqueryui.com/ticket/4913))
+* Added: The option method now returns the full options hash when called with no arguments. ([#5020](https://bugs.jqueryui.com/ticket/5020))
+* Added: Widget factory now adds disabled classes to outermost element instead of main element. ([#5028](https://bugs.jqueryui.com/ticket/5028))
+* Added: Re-instantiating plugins without destroying is now allowed. ([#5064](https://bugs.jqueryui.com/ticket/5064))
+* Fixed: All widget events are now lowercase. ([#4668](https://bugs.jqueryui.com/ticket/4668))
+* Fixed: ui hash is always an object in callbacks/events now. ([#4650](https://bugs.jqueryui.com/ticket/4650))
+* Fixed: Widget factory does not unbind all events. ([#5005](https://bugs.jqueryui.com/ticket/5005))
+* Fixed: Using effects with jQuery 1.4 kills widget instances. ([#5076](https://bugs.jqueryui.com/ticket/5076))
+* Fixed: .remove() proxy doesn't work properly. ([#5143](https://bugs.jqueryui.com/ticket/5143))
### zIndex - New!
@@ -58,53 +60,53 @@ New zIndex utility inside UI Core
### Draggable
-* Removed: ui.absolutePosition in callbacks. ([#3990](http://bugs.jqueryui.com/ticket/3990))
-* Changed: stack option to accept a selector instead of a hash. ([#4375](http://bugs.jqueryui.com/ticket/4375))
-* Added: Ability to pass a string or array of x/y coordinates for cursorAt option. ([#2525](http://bugs.jqueryui.com/ticket/2525))
-* Added: ui hash in events now contains originalPosition. ([#3782](http://bugs.jqueryui.com/ticket/3782))
-* Fixed: Draggable doesn't cause the page to scroll to top of the document anymore. ([#4934](http://bugs.jqueryui.com/ticket/4934))
-* Fixed: Scope option works when no droppables exist. ([#4289](http://bugs.jqueryui.com/ticket/4289))
-* Fixed: Start callback contains offset and position in ui hash. ([#4380](http://bugs.jqueryui.com/ticket/4380))
-* Fixed: Draggable can be destroyed immediately after drop. ([#4239](http://bugs.jqueryui.com/ticket/4239), [#4550](http://bugs.jqueryui.com/ticket/4550))
-* Fixed: Start, drag and stop events should be preventable. ([#4145](http://bugs.jqueryui.com/ticket/4145))
-* Fixed: Fixed positions include wrong scroll offset in Safari 4. ([#4631](http://bugs.jqueryui.com/ticket/4631))
-* Fixed: Events not being triggered for drag and drop. ([#5134](http://bugs.jqueryui.com/ticket/5134))
-* Fixed: Draggable broken on inline elements in webkit browsers. ([#4824](http://bugs.jqueryui.com/ticket/4824))
-* Fixed: Stack option can throw error. ([#5191](http://bugs.jqueryui.com/ticket/5191))
+* Removed: ui.absolutePosition in callbacks. ([#3990](https://bugs.jqueryui.com/ticket/3990))
+* Changed: stack option to accept a selector instead of a hash. ([#4375](https://bugs.jqueryui.com/ticket/4375))
+* Added: Ability to pass a string or array of x/y coordinates for cursorAt option. ([#2525](https://bugs.jqueryui.com/ticket/2525))
+* Added: ui hash in events now contains originalPosition. ([#3782](https://bugs.jqueryui.com/ticket/3782))
+* Fixed: Draggable doesn't cause the page to scroll to top of the document anymore. ([#4934](https://bugs.jqueryui.com/ticket/4934))
+* Fixed: Scope option works when no droppables exist. ([#4289](https://bugs.jqueryui.com/ticket/4289))
+* Fixed: Start callback contains offset and position in ui hash. ([#4380](https://bugs.jqueryui.com/ticket/4380))
+* Fixed: Draggable can be destroyed immediately after drop. ([#4239](https://bugs.jqueryui.com/ticket/4239), [#4550](https://bugs.jqueryui.com/ticket/4550))
+* Fixed: Start, drag and stop events should be preventable. ([#4145](https://bugs.jqueryui.com/ticket/4145))
+* Fixed: Fixed positions include wrong scroll offset in Safari 4. ([#4631](https://bugs.jqueryui.com/ticket/4631))
+* Fixed: Events not being triggered for drag and drop. ([#5134](https://bugs.jqueryui.com/ticket/5134))
+* Fixed: Draggable broken on inline elements in webkit browsers. ([#4824](https://bugs.jqueryui.com/ticket/4824))
+* Fixed: Stack option can throw error. ([#5191](https://bugs.jqueryui.com/ticket/5191))
### Droppable
-* Removed: ui.absolutePosition in callbacks. ([#3989](http://bugs.jqueryui.com/ticket/3989))
-* Fixed: greedy option stops propagation of events. ([#4570](http://bugs.jqueryui.com/ticket/4570))
-* Fixed: Droppable body let revert a div on a valid drop. ([#5095](http://bugs.jqueryui.com/ticket/5095))
-* Fixed: Events not being triggered for drag and drop. ([#5134](http://bugs.jqueryui.com/ticket/5134))
+* Removed: ui.absolutePosition in callbacks. ([#3989](https://bugs.jqueryui.com/ticket/3989))
+* Fixed: greedy option stops propagation of events. ([#4570](https://bugs.jqueryui.com/ticket/4570))
+* Fixed: Droppable body let revert a div on a valid drop. ([#5095](https://bugs.jqueryui.com/ticket/5095))
+* Fixed: Events not being triggered for drag and drop. ([#5134](https://bugs.jqueryui.com/ticket/5134))
### Resizable
-* Fixed: Disabling now works properly. ([#4743](http://bugs.jqueryui.com/ticket/4743))
-* Fixed: resizable('destroy') moves images to end of parent element. ([#4940](http://bugs.jqueryui.com/ticket/4940))
-* Fixed: Events not being triggered for drag and drop. ([#5134](http://bugs.jqueryui.com/ticket/5134))
+* Fixed: Disabling now works properly. ([#4743](https://bugs.jqueryui.com/ticket/4743))
+* Fixed: resizable('destroy') moves images to end of parent element. ([#4940](https://bugs.jqueryui.com/ticket/4940))
+* Fixed: Events not being triggered for drag and drop. ([#5134](https://bugs.jqueryui.com/ticket/5134))
### Selectable
-* Fixed: destroy method doesn't clean up selectees. ([#5094](http://bugs.jqueryui.com/ticket/5094))
+* Fixed: destroy method doesn't clean up selectees. ([#5094](https://bugs.jqueryui.com/ticket/5094))
### Sortable
-* Removed: ui hash in events no longer contains absolutePosition. ([#3991](http://bugs.jqueryui.com/ticket/3991))
-* Added: ui hash in events now contains originalPosition. ([#4797](http://bugs.jqueryui.com/ticket/4797))
-* Added: Ability to pass a string or array of x/y coordinates for cursorAt option. ([#2525](http://bugs.jqueryui.com/ticket/2525))
-* Fixed: Nested sortables. ([#4611](http://bugs.jqueryui.com/ticket/4611))
-* Fixed: Connected, floated sortables. ([#4551](http://bugs.jqueryui.com/ticket/4551))
-* Fixed: Serializing no longer contains the placeholder. ([#4138](http://bugs.jqueryui.com/ticket/4138))
-* Fixed: Documentation for revert option. ([#4657](http://bugs.jqueryui.com/ticket/4657))
-* Fixed: $estore original opacity. ([#4165](http://bugs.jqueryui.com/ticket/4165))
-* Fixed: Events not being triggered for drag and drop. ([#5134](http://bugs.jqueryui.com/ticket/5134))
-* Fixed: Over event triggered too frequently. ([#5111](http://bugs.jqueryui.com/ticket/5111))
+* Removed: ui hash in events no longer contains absolutePosition. ([#3991](https://bugs.jqueryui.com/ticket/3991))
+* Added: ui hash in events now contains originalPosition. ([#4797](https://bugs.jqueryui.com/ticket/4797))
+* Added: Ability to pass a string or array of x/y coordinates for cursorAt option. ([#2525](https://bugs.jqueryui.com/ticket/2525))
+* Fixed: Nested sortables. ([#4611](https://bugs.jqueryui.com/ticket/4611))
+* Fixed: Connected, floated sortables. ([#4551](https://bugs.jqueryui.com/ticket/4551))
+* Fixed: Serializing no longer contains the placeholder. ([#4138](https://bugs.jqueryui.com/ticket/4138))
+* Fixed: Documentation for revert option. ([#4657](https://bugs.jqueryui.com/ticket/4657))
+* Fixed: $estore original opacity. ([#4165](https://bugs.jqueryui.com/ticket/4165))
+* Fixed: Events not being triggered for drag and drop. ([#5134](https://bugs.jqueryui.com/ticket/5134))
+* Fixed: Over event triggered too frequently. ([#5111](https://bugs.jqueryui.com/ticket/5111))
## Widgets
-* Fixed: Always use bgiframe when available. ([#5071](http://bugs.jqueryui.com/ticket/5071))
+* Fixed: Always use bgiframe when available. ([#5071](https://bugs.jqueryui.com/ticket/5071))
### Autocomplete - New!
@@ -112,18 +114,18 @@ New Autocomplete widget
### Accordion
-* Removed: alwaysOpen option in favor of collapsible option. ([#4030](http://bugs.jqueryui.com/ticket/4030))
-* Added: Able to create an accordion without icons. ([#4222](http://bugs.jqueryui.com/ticket/4222))
-* Fixed: Fallback to a slide animation if an invalid easing is provided (also accept animated: true). ([#4392](http://bugs.jqueryui.com/ticket/4392))
-* Fixed: fillSpace: true now accounts for header margins. ([#4436](http://bugs.jqueryui.com/ticket/4436))
-* Fixed: Navigation option works again. ([#4653](http://bugs.jqueryui.com/ticket/4653))
-* Fixed: No longer stops propagation of clicks inside headers. ([#4732](http://bugs.jqueryui.com/ticket/4732))
-* Fixed: autoHeight now calculates height properly. ([#4754](http://bugs.jqueryui.com/ticket/4754))
-* Fixed: Content no longer disappears in IE with autoHeight: false. ([#4444](http://bugs.jqueryui.com/ticket/4444))
-* Fixed: active property now updates to reflect current state. ([#4576](http://bugs.jqueryui.com/ticket/4576))
-* Fixed: some demos do not work. ([#5046](http://bugs.jqueryui.com/ticket/5046))
-* Fixed: animated accordions sometimes fail in IE. ([#4382](http://bugs.jqueryui.com/ticket/4382))
-* Fixed: newContent/oldContent parameters are incorrect in change callback. ([#4469](http://bugs.jqueryui.com/ticket/4469))
+* Removed: alwaysOpen option in favor of collapsible option. ([#4030](https://bugs.jqueryui.com/ticket/4030))
+* Added: Able to create an accordion without icons. ([#4222](https://bugs.jqueryui.com/ticket/4222))
+* Fixed: Fallback to a slide animation if an invalid easing is provided (also accept animated: true). ([#4392](https://bugs.jqueryui.com/ticket/4392))
+* Fixed: fillSpace: true now accounts for header margins. ([#4436](https://bugs.jqueryui.com/ticket/4436))
+* Fixed: Navigation option works again. ([#4653](https://bugs.jqueryui.com/ticket/4653))
+* Fixed: No longer stops propagation of clicks inside headers. ([#4732](https://bugs.jqueryui.com/ticket/4732))
+* Fixed: autoHeight now calculates height properly. ([#4754](https://bugs.jqueryui.com/ticket/4754))
+* Fixed: Content no longer disappears in IE with autoHeight: false. ([#4444](https://bugs.jqueryui.com/ticket/4444))
+* Fixed: active property now updates to reflect current state. ([#4576](https://bugs.jqueryui.com/ticket/4576))
+* Fixed: some demos do not work. ([#5046](https://bugs.jqueryui.com/ticket/5046))
+* Fixed: animated accordions sometimes fail in IE. ([#4382](https://bugs.jqueryui.com/ticket/4382))
+* Fixed: newContent/oldContent parameters are incorrect in change callback. ([#4469](https://bugs.jqueryui.com/ticket/4469))
### Button - New!
@@ -131,126 +133,126 @@ New Button widget
### Datepicker
-* Added: showMonthAfterYear and yearSuffix options for i18n. ([#4085](http://bugs.jqueryui.com/ticket/4085))
-* Added: autoSize option to set the size of the input field based on the date format. ([#3891](http://bugs.jqueryui.com/ticket/3891))
-* Added: UK localization. ([#4895](http://bugs.jqueryui.com/ticket/4895))
-* Added: DA localization. ([#4930](http://bugs.jqueryui.com/ticket/4930))
-* Added: Bosnian localization. ([#4987](http://bugs.jqueryui.com/ticket/4987))
-* Added: Documentation for localization. ([#4790](http://bugs.jqueryui.com/ticket/4790))
-* Added: yearRange option supports absolute and relative ranges. ([#4775](http://bugs.jqueryui.com/ticket/4775), [#4870](http://bugs.jqueryui.com/ticket/4870))
-* Fixed: Able to properly pick dates in other months when showing multiple months. ([#4634](http://bugs.jqueryui.com/ticket/4634), [#3657](http://bugs.jqueryui.com/ticket/3657))
-* Fixed: Manually entered dates now update the alt field. ([#3861](http://bugs.jqueryui.com/ticket/3861))
-* Fixed: iframe overlay for IE 6 z-index correction is now properly sized. ([#4054](http://bugs.jqueryui.com/ticket/4054))
-* Fixed: minDate getter now returns a value. ([#4357](http://bugs.jqueryui.com/ticket/4357))
-* Fixed: Proper detection of prev/next links when displaying a grid of calendars. ([#4536](http://bugs.jqueryui.com/ticket/4536))
-* Fixed: setDate can now be called multiple times. ([#4647](http://bugs.jqueryui.com/ticket/4647))
-* Fixed: Hungarian localization. ([#4556](http://bugs.jqueryui.com/ticket/4556))
-* Fixed: Italian localization. ([#4599](http://bugs.jqueryui.com/ticket/4599))
-* Fixed: Input id can now contain $. ([#4684](http://bugs.jqueryui.com/ticket/4684))
-* Fixed: Keyboard selection of dates in the future. ([#4917](http://bugs.jqueryui.com/ticket/4917))
-* Fixed: Proper alignment of dates with showOtherMonths option set to true. ([#4762](http://bugs.jqueryui.com/ticket/4762))
-* Fixed: Double clicking on next/previous buttons no longer closes the datepicker. ([#4949](http://bugs.jqueryui.com/ticket/4949))
-* Fixed: Proper alignment of month and year dropdowns with showMonthAfterYear option set to true. ([#4420](http://bugs.jqueryui.com/ticket/4420))
-* Fixed: Datepicker now works with multiple versions of jQuery on the same page. ([#4704](http://bugs.jqueryui.com/ticket/4704))
-* Fixed: Default action of tab key is no longer prevented. ([#4885](http://bugs.jqueryui.com/ticket/4885))
-* Fixed: Animation control. ([#4787](http://bugs.jqueryui.com/ticket/4787))
-* Fixed: Undefined function lookAhead(). ([#4956](http://bugs.jqueryui.com/ticket/4956))
-* Fixed: Element names can now contain special characters. ([#4969](http://bugs.jqueryui.com/ticket/4969))
-* Fixed: Datepicker works in IE again. ([#4774](http://bugs.jqueryui.com/ticket/4774))
-* Fixed: Added yearSuffix for Chinese/Korean localization. ([#4793](http://bugs.jqueryui.com/ticket/4793))
-* Fixed: Next button doesn't display with multiple months in one column. ([#5022](http://bugs.jqueryui.com/ticket/5022))
-* Fixed: onChangeMonthYear fires at first run. ([#4804](http://bugs.jqueryui.com/ticket/4804))
-* Fixed: Don't reset dates on instantiation. ([#4869](http://bugs.jqueryui.com/ticket/4869))
-* Fixed: Proper comparison against minDate and maxDate. ([#5026](http://bugs.jqueryui.com/ticket/5026))
-* Fixed: Set focus error in IE8 for disabled and hidden elements. ([#5052](http://bugs.jqueryui.com/ticket/5052))
-* Fixed: Date picker localization in RO. ([#5088](http://bugs.jqueryui.com/ticket/5088))
-* Fixed: Bug in findPos for RTL languages. ([#5085](http://bugs.jqueryui.com/ticket/5085))
-* Fixed: Use null instead of empty string when showing/hiding without a duration. ([#5086](http://bugs.jqueryui.com/ticket/5086))
-* Fixed: Conflict between beforeShowDay and getDate. ([#5187](http://bugs.jqueryui.com/ticket/5187))
-* Fixed: Datepicker appears underneath other widgets. ([#4580](http://bugs.jqueryui.com/ticket/4580))
-* Fixed: Datepicker opens when setDate called. ([#5128](http://bugs.jqueryui.com/ticket/5128))
+* Added: showMonthAfterYear and yearSuffix options for i18n. ([#4085](https://bugs.jqueryui.com/ticket/4085))
+* Added: autoSize option to set the size of the input field based on the date format. ([#3891](https://bugs.jqueryui.com/ticket/3891))
+* Added: UK localization. ([#4895](https://bugs.jqueryui.com/ticket/4895))
+* Added: DA localization. ([#4930](https://bugs.jqueryui.com/ticket/4930))
+* Added: Bosnian localization. ([#4987](https://bugs.jqueryui.com/ticket/4987))
+* Added: Documentation for localization. ([#4790](https://bugs.jqueryui.com/ticket/4790))
+* Added: yearRange option supports absolute and relative ranges. ([#4775](https://bugs.jqueryui.com/ticket/4775), [#4870](https://bugs.jqueryui.com/ticket/4870))
+* Fixed: Able to properly pick dates in other months when showing multiple months. ([#4634](https://bugs.jqueryui.com/ticket/4634), [#3657](https://bugs.jqueryui.com/ticket/3657))
+* Fixed: Manually entered dates now update the alt field. ([#3861](https://bugs.jqueryui.com/ticket/3861))
+* Fixed: iframe overlay for IE 6 z-index correction is now properly sized. ([#4054](https://bugs.jqueryui.com/ticket/4054))
+* Fixed: minDate getter now returns a value. ([#4357](https://bugs.jqueryui.com/ticket/4357))
+* Fixed: Proper detection of prev/next links when displaying a grid of calendars. ([#4536](https://bugs.jqueryui.com/ticket/4536))
+* Fixed: setDate can now be called multiple times. ([#4647](https://bugs.jqueryui.com/ticket/4647))
+* Fixed: Hungarian localization. ([#4556](https://bugs.jqueryui.com/ticket/4556))
+* Fixed: Italian localization. ([#4599](https://bugs.jqueryui.com/ticket/4599))
+* Fixed: Input id can now contain $. ([#4684](https://bugs.jqueryui.com/ticket/4684))
+* Fixed: Keyboard selection of dates in the future. ([#4917](https://bugs.jqueryui.com/ticket/4917))
+* Fixed: Proper alignment of dates with showOtherMonths option set to true. ([#4762](https://bugs.jqueryui.com/ticket/4762))
+* Fixed: Double clicking on next/previous buttons no longer closes the datepicker. ([#4949](https://bugs.jqueryui.com/ticket/4949))
+* Fixed: Proper alignment of month and year dropdowns with showMonthAfterYear option set to true. ([#4420](https://bugs.jqueryui.com/ticket/4420))
+* Fixed: Datepicker now works with multiple versions of jQuery on the same page. ([#4704](https://bugs.jqueryui.com/ticket/4704))
+* Fixed: Default action of tab key is no longer prevented. ([#4885](https://bugs.jqueryui.com/ticket/4885))
+* Fixed: Animation control. ([#4787](https://bugs.jqueryui.com/ticket/4787))
+* Fixed: Undefined function lookAhead(). ([#4956](https://bugs.jqueryui.com/ticket/4956))
+* Fixed: Element names can now contain special characters. ([#4969](https://bugs.jqueryui.com/ticket/4969))
+* Fixed: Datepicker works in IE again. ([#4774](https://bugs.jqueryui.com/ticket/4774))
+* Fixed: Added yearSuffix for Chinese/Korean localization. ([#4793](https://bugs.jqueryui.com/ticket/4793))
+* Fixed: Next button doesn't display with multiple months in one column. ([#5022](https://bugs.jqueryui.com/ticket/5022))
+* Fixed: onChangeMonthYear fires at first run. ([#4804](https://bugs.jqueryui.com/ticket/4804))
+* Fixed: Don't reset dates on instantiation. ([#4869](https://bugs.jqueryui.com/ticket/4869))
+* Fixed: Proper comparison against minDate and maxDate. ([#5026](https://bugs.jqueryui.com/ticket/5026))
+* Fixed: Set focus error in IE8 for disabled and hidden elements. ([#5052](https://bugs.jqueryui.com/ticket/5052))
+* Fixed: Date picker localization in RO. ([#5088](https://bugs.jqueryui.com/ticket/5088))
+* Fixed: Bug in findPos for RTL languages. ([#5085](https://bugs.jqueryui.com/ticket/5085))
+* Fixed: Use null instead of empty string when showing/hiding without a duration. ([#5086](https://bugs.jqueryui.com/ticket/5086))
+* Fixed: Conflict between beforeShowDay and getDate. ([#5187](https://bugs.jqueryui.com/ticket/5187))
+* Fixed: Datepicker appears underneath other widgets. ([#4580](https://bugs.jqueryui.com/ticket/4580))
+* Fixed: Datepicker opens when setDate called. ([#5128](https://bugs.jqueryui.com/ticket/5128))
* Fixed: Separate month and year unless both are drop-downs. ([r3787](https://code.google.com/p/jquery-ui/source/detail?r=3787))
-* Fixed: Datepicker's vertical position in thickbox. ([#4443](http://bugs.jqueryui.com/ticket/4443))
-* Fixed: Date picker stays open when the field isn't focused. ([#5179](http://bugs.jqueryui.com/ticket/5179))
-* Partial fix: UI Datepicker inside UI Dialog Issue. ([#4453](http://bugs.jqueryui.com/ticket/4453))
+* Fixed: Datepicker's vertical position in thickbox. ([#4443](https://bugs.jqueryui.com/ticket/4443))
+* Fixed: Date picker stays open when the field isn't focused. ([#5179](https://bugs.jqueryui.com/ticket/5179))
+* Partial fix: UI Datepicker inside UI Dialog Issue. ([#4453](https://bugs.jqueryui.com/ticket/4453))
### Dialog
-* Deprecated: beforeclose option; renamed to beforeClose. ([#4669](http://bugs.jqueryui.com/ticket/4669))
-* Added: Support for fixed positioning. ([#2848](http://bugs.jqueryui.com/ticket/2848))
-* Added: Can now pass a hash for position. ([#2525](http://bugs.jqueryui.com/ticket/2525))
-* Added: Now triggers drag and resize events. ([#4629](http://bugs.jqueryui.com/ticket/4629))
+* Deprecated: beforeclose option; renamed to beforeClose. ([#4669](https://bugs.jqueryui.com/ticket/4669))
+* Added: Support for fixed positioning. ([#2848](https://bugs.jqueryui.com/ticket/2848))
+* Added: Can now pass a hash for position. ([#2525](https://bugs.jqueryui.com/ticket/2525))
+* Added: Now triggers drag and resize events. ([#4629](https://bugs.jqueryui.com/ticket/4629))
* Added: Support for button plugin.
-* Added: Documentation for closeText option. ([#4887](http://bugs.jqueryui.com/ticket/4887))
-* Fixed: When height is set to a pixel value smaller than the minHeight, the height will override the minHeight. ([#4101](http://bugs.jqueryui.com/ticket/4101))
-* Fixed: Buttons no longer disappear after dragging. ([#4271](http://bugs.jqueryui.com/ticket/4271))
-* Fixed: Resizing is now constrained to the document. ([#4664](http://bugs.jqueryui.com/ticket/4664))
-* Fixed: Dialogs now remember their position after drag. ([#4679](http://bugs.jqueryui.com/ticket/4679))
-* Fixed: Title option now works properly in XHTML documents. ([#4970](http://bugs.jqueryui.com/ticket/4970))
-* Fixed: Positioning of modal dialogs in Opera. ([#4769](http://bugs.jqueryui.com/ticket/4769))
-* Fixed: Settings resizable option to false after init toggles resizable. ([#4826](http://bugs.jqueryui.com/ticket/4826))
-* Fixed: Styling in form validation demo. ([#4808](http://bugs.jqueryui.com/ticket/4808))
-* Fixed: Added padding and margin to the right side of the titlebar so the title doesn't go behind the close icon. ([#5087](http://bugs.jqueryui.com/ticket/5087))
-* Fixed: Datepicker Month/Year Dropdowns Not Working In Safari In A Dialog. ([#4363](http://bugs.jqueryui.com/ticket/4363))
-* Fixed: Position of Dialog is off the page when viewport is smaller then. ([#5141](http://bugs.jqueryui.com/ticket/5141))
-* Fixed: isOpen in dialogclose event is true. ([#5184](http://bugs.jqueryui.com/ticket/5184))
-* Fixed: Modal dialogs leak memory in IE. ([#5185](http://bugs.jqueryui.com/ticket/5185))
-* Fixed: window.location.reload() doesn't work in dialog's close callback when it's triggered by ESC in Firefox. ([#4922](http://bugs.jqueryui.com/ticket/4922))
-* Fixed: No scrollbars in IE quirksmode. ([#4350](http://bugs.jqueryui.com/ticket/4350))
-* Fixed: Buttons disappear after dragging dialog. ([#5221](http://bugs.jqueryui.com/ticket/5221))
-* Fixed: 2 dialogs pos false on close. ([#5084](http://bugs.jqueryui.com/ticket/5084))
+* Added: Documentation for closeText option. ([#4887](https://bugs.jqueryui.com/ticket/4887))
+* Fixed: When height is set to a pixel value smaller than the minHeight, the height will override the minHeight. ([#4101](https://bugs.jqueryui.com/ticket/4101))
+* Fixed: Buttons no longer disappear after dragging. ([#4271](https://bugs.jqueryui.com/ticket/4271))
+* Fixed: Resizing is now constrained to the document. ([#4664](https://bugs.jqueryui.com/ticket/4664))
+* Fixed: Dialogs now remember their position after drag. ([#4679](https://bugs.jqueryui.com/ticket/4679))
+* Fixed: Title option now works properly in XHTML documents. ([#4970](https://bugs.jqueryui.com/ticket/4970))
+* Fixed: Positioning of modal dialogs in Opera. ([#4769](https://bugs.jqueryui.com/ticket/4769))
+* Fixed: Settings resizable option to false after init toggles resizable. ([#4826](https://bugs.jqueryui.com/ticket/4826))
+* Fixed: Styling in form validation demo. ([#4808](https://bugs.jqueryui.com/ticket/4808))
+* Fixed: Added padding and margin to the right side of the titlebar so the title doesn't go behind the close icon. ([#5087](https://bugs.jqueryui.com/ticket/5087))
+* Fixed: Datepicker Month/Year Dropdowns Not Working In Safari In A Dialog. ([#4363](https://bugs.jqueryui.com/ticket/4363))
+* Fixed: Position of Dialog is off the page when viewport is smaller then. ([#5141](https://bugs.jqueryui.com/ticket/5141))
+* Fixed: isOpen in dialogclose event is true. ([#5184](https://bugs.jqueryui.com/ticket/5184))
+* Fixed: Modal dialogs leak memory in IE. ([#5185](https://bugs.jqueryui.com/ticket/5185))
+* Fixed: window.location.reload() doesn't work in dialog's close callback when it's triggered by ESC in Firefox. ([#4922](https://bugs.jqueryui.com/ticket/4922))
+* Fixed: No scrollbars in IE quirksmode. ([#4350](https://bugs.jqueryui.com/ticket/4350))
+* Fixed: Buttons disappear after dragging dialog. ([#5221](https://bugs.jqueryui.com/ticket/5221))
+* Fixed: 2 dialogs pos false on close. ([#5084](https://bugs.jqueryui.com/ticket/5084))
### Slider
-* Added: Canceling the slide event now actually cancels the slide. ([#4751](http://bugs.jqueryui.com/ticket/4751))
-* Added: Handling for page up and page down. ([#3096](http://bugs.jqueryui.com/ticket/3096))
-* Added: Slider animation via programatic value change. ([#4659](http://bugs.jqueryui.com/ticket/4659), [#4432](http://bugs.jqueryui.com/ticket/4432))
-* Fixed: Updating values option affects the slider. ([#4522](http://bugs.jqueryui.com/ticket/4522))
-* Fixed: Range background shifts around as range size changes. ([#5035](http://bugs.jqueryui.com/ticket/5035))
-* Fixed: Events not being triggered for drag and drop. ([#5134](http://bugs.jqueryui.com/ticket/5134))
-* Fixed: Slider's change event fires on slide. ([#5178](http://bugs.jqueryui.com/ticket/5178))
+* Added: Canceling the slide event now actually cancels the slide. ([#4751](https://bugs.jqueryui.com/ticket/4751))
+* Added: Handling for page up and page down. ([#3096](https://bugs.jqueryui.com/ticket/3096))
+* Added: Slider animation via programatic value change. ([#4659](https://bugs.jqueryui.com/ticket/4659), [#4432](https://bugs.jqueryui.com/ticket/4432))
+* Fixed: Updating values option affects the slider. ([#4522](https://bugs.jqueryui.com/ticket/4522))
+* Fixed: Range background shifts around as range size changes. ([#5035](https://bugs.jqueryui.com/ticket/5035))
+* Fixed: Events not being triggered for drag and drop. ([#5134](https://bugs.jqueryui.com/ticket/5134))
+* Fixed: Slider's change event fires on slide. ([#5178](https://bugs.jqueryui.com/ticket/5178))
### Tabs
-* Removed: deselectable option in favor of collapsible option. ([#4031](http://bugs.jqueryui.com/ticket/4031))
-* Added: More flexible markup allowed. ([#4877](http://bugs.jqueryui.com/ticket/4877), [#4501](http://bugs.jqueryui.com/ticket/4501), [#4506](http://bugs.jqueryui.com/ticket/4506))
-* Added: Demo with tabs at bottom. ([#4785](http://bugs.jqueryui.com/ticket/4785))
-* Fixed: Styling for multiple rows of tabs. ([#4399](http://bugs.jqueryui.com/ticket/4399))
-* Fixed: All tabs have the ui-state-default class. ([#4815](http://bugs.jqueryui.com/ticket/4815))
-* Fixed: Added support for jQuery 1.4. ([#4916](http://bugs.jqueryui.com/ticket/4916))
-* Fixed: Selected option returns wrong value. ([#4960](http://bugs.jqueryui.com/ticket/4960))
-* Fixed: Bug in ui.tabs selected tab detection. ([#5122](http://bugs.jqueryui.com/ticket/5122))
-* Fixed: Ajax tabs stop functioning on ajax error. ([#4451](http://bugs.jqueryui.com/ticket/4451))
-* Fixed: Cookies don't work with jQuery 1.4. ([#5264](http://bugs.jqueryui.com/ticket/5264))
+* Removed: deselectable option in favor of collapsible option. ([#4031](https://bugs.jqueryui.com/ticket/4031))
+* Added: More flexible markup allowed. ([#4877](https://bugs.jqueryui.com/ticket/4877), [#4501](https://bugs.jqueryui.com/ticket/4501), [#4506](https://bugs.jqueryui.com/ticket/4506))
+* Added: Demo with tabs at bottom. ([#4785](https://bugs.jqueryui.com/ticket/4785))
+* Fixed: Styling for multiple rows of tabs. ([#4399](https://bugs.jqueryui.com/ticket/4399))
+* Fixed: All tabs have the ui-state-default class. ([#4815](https://bugs.jqueryui.com/ticket/4815))
+* Fixed: Added support for jQuery 1.4. ([#4916](https://bugs.jqueryui.com/ticket/4916))
+* Fixed: Selected option returns wrong value. ([#4960](https://bugs.jqueryui.com/ticket/4960))
+* Fixed: Bug in ui.tabs selected tab detection. ([#5122](https://bugs.jqueryui.com/ticket/5122))
+* Fixed: Ajax tabs stop functioning on ajax error. ([#4451](https://bugs.jqueryui.com/ticket/4451))
+* Fixed: Cookies don't work with jQuery 1.4. ([#5264](https://bugs.jqueryui.com/ticket/5264))
## Effects
-* Removed: morph. ([#4602](http://bugs.jqueryui.com/ticket/4602))
-* Renamed: css files renamed to be consistent with js file renames in 1.8a1. ([#5163](http://bugs.jqueryui.com/ticket/5163))
-* Changed: Callback is now named "complete" not "callback". ([#4586](http://bugs.jqueryui.com/ticket/4586))
-* Fixed: Effects now honor jQuery.fx.off. ([#4328](http://bugs.jqueryui.com/ticket/4328))
-* Fixed: toggleClass now works consistently in IE. ([#4676](http://bugs.jqueryui.com/ticket/4676))
-* Fixed: show/hide now work properly on elements with opacity. ([#4274](http://bugs.jqueryui.com/ticket/4274))
-* Fixed: toggleClass now supports switch boolean parameter. ([#4722](http://bugs.jqueryui.com/ticket/4722))
-* Fixed: build.xml doesn't compile effects into full script. ([#5109](http://bugs.jqueryui.com/ticket/5109))
-* Fixed: Include all effect docs in build for download. ([#5103](http://bugs.jqueryui.com/ticket/5103))
-* Fixed: Slider demos need options reset before loading next demo. ([#5131](http://bugs.jqueryui.com/ticket/5131))
-* Fixed: Toggle speed issue. ([#5192](http://bugs.jqueryui.com/ticket/5192))
-* Fixed: Color animations. ([#4251](http://bugs.jqueryui.com/ticket/4251))
-* Fixed: Better handling of effects on positioned elements. ([#4770](http://bugs.jqueryui.com/ticket/4770), [#4540](http://bugs.jqueryui.com/ticket/4540))
-* Fixed: Class animations are more stable and work cross-browser. ([#4950](http://bugs.jqueryui.com/ticket/4950), [#3938](http://bugs.jqueryui.com/ticket/3938), [#4721](http://bugs.jqueryui.com/ticket/4721), [#4807](http://bugs.jqueryui.com/ticket/4807), [#4396](http://bugs.jqueryui.com/ticket/4396), [#4342](http://bugs.jqueryui.com/ticket/4342), [#4720](http://bugs.jqueryui.com/ticket/4720), [#3112](http://bugs.jqueryui.com/ticket/3112), [#4999](http://bugs.jqueryui.com/ticket/4999))
-* Fixed: Animation of borderColor. ([#3938](http://bugs.jqueryui.com/ticket/3938))
+* Removed: morph. ([#4602](https://bugs.jqueryui.com/ticket/4602))
+* Renamed: css files renamed to be consistent with js file renames in 1.8a1. ([#5163](https://bugs.jqueryui.com/ticket/5163))
+* Changed: Callback is now named "complete" not "callback". ([#4586](https://bugs.jqueryui.com/ticket/4586))
+* Fixed: Effects now honor jQuery.fx.off. ([#4328](https://bugs.jqueryui.com/ticket/4328))
+* Fixed: toggleClass now works consistently in IE. ([#4676](https://bugs.jqueryui.com/ticket/4676))
+* Fixed: show/hide now work properly on elements with opacity. ([#4274](https://bugs.jqueryui.com/ticket/4274))
+* Fixed: toggleClass now supports switch boolean parameter. ([#4722](https://bugs.jqueryui.com/ticket/4722))
+* Fixed: build.xml doesn't compile effects into full script. ([#5109](https://bugs.jqueryui.com/ticket/5109))
+* Fixed: Include all effect docs in build for download. ([#5103](https://bugs.jqueryui.com/ticket/5103))
+* Fixed: Slider demos need options reset before loading next demo. ([#5131](https://bugs.jqueryui.com/ticket/5131))
+* Fixed: Toggle speed issue. ([#5192](https://bugs.jqueryui.com/ticket/5192))
+* Fixed: Color animations. ([#4251](https://bugs.jqueryui.com/ticket/4251))
+* Fixed: Better handling of effects on positioned elements. ([#4770](https://bugs.jqueryui.com/ticket/4770), [#4540](https://bugs.jqueryui.com/ticket/4540))
+* Fixed: Class animations are more stable and work cross-browser. ([#4950](https://bugs.jqueryui.com/ticket/4950), [#3938](https://bugs.jqueryui.com/ticket/3938), [#4721](https://bugs.jqueryui.com/ticket/4721), [#4807](https://bugs.jqueryui.com/ticket/4807), [#4396](https://bugs.jqueryui.com/ticket/4396), [#4342](https://bugs.jqueryui.com/ticket/4342), [#4720](https://bugs.jqueryui.com/ticket/4720), [#3112](https://bugs.jqueryui.com/ticket/3112), [#4999](https://bugs.jqueryui.com/ticket/4999))
+* Fixed: Animation of borderColor. ([#3938](https://bugs.jqueryui.com/ticket/3938))
### Individual effects
-* Added: Fade effect. ([#4896](http://bugs.jqueryui.com/ticket/4896))
-* Fixed: Pulsate now pulses the proper number of times regardless of effect mode. ([#4718](http://bugs.jqueryui.com/ticket/4718))
-* Fixed: blind/fold didnt work. ([#5097](http://bugs.jqueryui.com/ticket/5097))
+* Added: Fade effect. ([#4896](https://bugs.jqueryui.com/ticket/4896))
+* Fixed: Pulsate now pulses the proper number of times regardless of effect mode. ([#4718](https://bugs.jqueryui.com/ticket/4718))
+* Fixed: blind/fold didnt work. ([#5097](https://bugs.jqueryui.com/ticket/5097))
## Website
-* Fixed: Theme switcher doesn't work on demos. ([#5144](http://bugs.jqueryui.com/ticket/5144))
-* Fixed: Demos reference missing bgiframe file. ([#5169](http://bugs.jqueryui.com/ticket/5169))
-* Fixed: ThemeRoller bookmarklet tries to load an invalid URL. ([#5098](http://bugs.jqueryui.com/ticket/5098))
-* Fixed: Wrong jQuery version in demos. ([#5147](http://bugs.jqueryui.com/ticket/5147))
-* Fixed: Download builder/ThemeRoller is broken. ([#5157](http://bugs.jqueryui.com/ticket/5157), [#5115](http://bugs.jqueryui.com/ticket/5115), [#5223](http://bugs.jqueryui.com/ticket/5223), [#5224](http://bugs.jqueryui.com/ticket/5224), [#5225](http://bugs.jqueryui.com/ticket/5225), [#5226](http://bugs.jqueryui.com/ticket/5226), [#5234](http://bugs.jqueryui.com/ticket/5234), [#5235](http://bugs.jqueryui.com/ticket/5235))
+* Fixed: Theme switcher doesn't work on demos. ([#5144](https://bugs.jqueryui.com/ticket/5144))
+* Fixed: Demos reference missing bgiframe file. ([#5169](https://bugs.jqueryui.com/ticket/5169))
+* Fixed: ThemeRoller bookmarklet tries to load an invalid URL. ([#5098](https://bugs.jqueryui.com/ticket/5098))
+* Fixed: Wrong jQuery version in demos. ([#5147](https://bugs.jqueryui.com/ticket/5147))
+* Fixed: Download builder/ThemeRoller is broken. ([#5157](https://bugs.jqueryui.com/ticket/5157), [#5115](https://bugs.jqueryui.com/ticket/5115), [#5223](https://bugs.jqueryui.com/ticket/5223), [#5224](https://bugs.jqueryui.com/ticket/5224), [#5225](https://bugs.jqueryui.com/ticket/5225), [#5226](https://bugs.jqueryui.com/ticket/5226), [#5234](https://bugs.jqueryui.com/ticket/5234), [#5235](https://bugs.jqueryui.com/ticket/5235))
diff --git a/page/changelog/1.8a1.md b/page/changelog/1.8a1.md
new file mode 100644
index 0000000..95821da
--- /dev/null
+++ b/page/changelog/1.8a1.md
@@ -0,0 +1,95 @@
+
+
+Released on August 12, 2009
+
+## New Plugins
+
+* [Position](https://wiki.jqueryui.com/Position)
+* [Stackfix](https://wiki.jqueryui.com/Stackfix)
+* zIndex
+
+## Core
+
+* added custom selectors for widgets, e.g., :ui-draggable ([#4266](https://bugs.jqueryui.com/ticket/4266))
+* widget factory auto detects getters ([#4411](https://bugs.jqueryui.com/ticket/4411)) ([#4601](https://bugs.jqueryui.com/ticket/4601))
+* all widget events are now lowercase ([#4668](https://bugs.jqueryui.com/ticket/4668))
+* plugin options now do a deep extend with defaults ([#4366](https://bugs.jqueryui.com/ticket/4366))
+* ui hash is always an object in callbacks/events now ([#4650](https://bugs.jqueryui.com/ticket/4650))
+
+## Interactions
+
+### Draggable
+
+* removed ui.absolutePosition in callbacks ([#3990](https://bugs.jqueryui.com/ticket/3990))
+* can now pass a string or array of x/y coordinates for cursorAt option ([#2525](https://bugs.jqueryui.com/ticket/2525))
+
+### Droppable
+
+* removed ui.absolutePosition in callbacks ([#3989](https://bugs.jqueryui.com/ticket/3989))
+
+### Resizable
+
+* disabling now works properly ([#4743](https://bugs.jqueryui.com/ticket/4743))
+
+### Sortable
+
+* connected, floated sortables work ([#4551](https://bugs.jqueryui.com/ticket/4551))
+* can now pass a string or array of x/y coordinates for cursorAt option ([#2525](https://bugs.jqueryui.com/ticket/2525))
+* supports nested sortables again ([#4611](https://bugs.jqueryui.com/ticket/4611))
+
+## Widgets
+
+### Accordion
+
+* fallback to a slide animation if an invalid easing is provided (also accept animated: true) ([#4392](https://bugs.jqueryui.com/ticket/4392))
+* fillSpace: true now accounts for header margins ([#4436](https://bugs.jqueryui.com/ticket/4436))
+* navigation option works again ([#4653](https://bugs.jqueryui.com/ticket/4653))
+* no longer stops propagation of clicks inside headers ([#4732](https://bugs.jqueryui.com/ticket/4732))
+* autoHeight now calculates height properly ([#4754](https://bugs.jqueryui.com/ticket/4754))
+* able to create an accordion without icons ([#4222](https://bugs.jqueryui.com/ticket/4222))
+* content no longer disappears in IE with autoHeight: false ([#4444](https://bugs.jqueryui.com/ticket/4444))
+* active property now updates to reflect current state ([#4576](https://bugs.jqueryui.com/ticket/4576))
+
+### Datepicker
+
+* able to properly pick dates in other months when showing multiple months ([#4634](https://bugs.jqueryui.com/ticket/4634)) ([#3657](https://bugs.jqueryui.com/ticket/3657))
+* manually entered dates now update the alt field ([#3861](https://bugs.jqueryui.com/ticket/3861))
+* iframe overlay for IE 6 z-index correction is now properly sized ([#4054](https://bugs.jqueryui.com/ticket/4054))
+* added showMonthAfterYear and yearSuffix options for i18n ([#4085](https://bugs.jqueryui.com/ticket/4085))
+* setDate can now be called multiple times ([#4647](https://bugs.jqueryui.com/ticket/4647))
+* added autoSize option to set the size of the input field based on the date format ([#3891](https://bugs.jqueryui.com/ticket/3891))
+* minDate getter now returns a value ([#4357](https://bugs.jqueryui.com/ticket/4357))
+* proper detection of prev/next links when displaying a grid of calendars ([#4536](https://bugs.jqueryui.com/ticket/4536))
+* fixed Hungarian localization ([#4556](https://bugs.jqueryui.com/ticket/4556))
+* fixed Italian localization ([#4599](https://bugs.jqueryui.com/ticket/4599))
+* input id can now contain $ ([#4684](https://bugs.jqueryui.com/ticket/4684))
+
+### Dialog
+
+* dialogs now remember their position after drag ([#4679](https://bugs.jqueryui.com/ticket/4679))
+* can now pass a hash for position ([#2525](https://bugs.jqueryui.com/ticket/2525))
+* when height is set to a pixel value smaller than the minHeight, the height will override the minHeight ([#4101](https://bugs.jqueryui.com/ticket/4101)) ([#4101](https://bugs.jqueryui.com/ticket/4101))
+* buttons no longer disappear after dragging ([#4271](https://bugs.jqueryui.com/ticket/4271))
+* now triggers drag and resize events ([#4629](https://bugs.jqueryui.com/ticket/4629))
+* resizing is now constrained to the document ([#4664](https://bugs.jqueryui.com/ticket/4664))
+* beforeclose option changed to beforeClose ([#4669](https://bugs.jqueryui.com/ticket/4669))
+
+### Slider
+
+* canceling the slide event now actually cancels the slide ([#4751](https://bugs.jqueryui.com/ticket/4751))
+
+### Tabs
+
+* Fixed styling for multiple rows of tabs ([#4399](https://bugs.jqueryui.com/ticket/4399))
+
+## Effects
+
+* effects now honor jQuery.fx.off ([#4328](https://bugs.jqueryui.com/ticket/4328))
+* toggleClass now works consistently in IE ([#4676](https://bugs.jqueryui.com/ticket/4676))
+* show/hide now work properly on elements with opacity ([#4274](https://bugs.jqueryui.com/ticket/4274))
+* callback is now named "complete" not "callback" ([#4586](https://bugs.jqueryui.com/ticket/4586))
+* morph was removed ([#4602](https://bugs.jqueryui.com/ticket/4602))
+* toggleClass now supports switch boolean parameter ([#4722](https://bugs.jqueryui.com/ticket/4722))
+
diff --git a/page/changelog/1.8a2.md b/page/changelog/1.8a2.md
new file mode 100644
index 0000000..b3afbd5
--- /dev/null
+++ b/page/changelog/1.8a2.md
@@ -0,0 +1,103 @@
+
+
+Released on December 29, 2009
+
+This release adds one new effect: Fade. It also changed the name of all source files to be consistent with the standard naming convention of other jQuery plugins.
+
+## Build
+
+* Fixed: Build on non-Windows platforms. ([#4973](https://bugs.jqueryui.com/ticket/4973)) ([#4896](https://bugs.jqueryui.com/ticket/4896))
+
+## Core
+
+* Split widget factory into its own file: jquery.ui.widget.js.
+* Split mouse plugin into its own file: jquery.ui.mouse.js.
+* Added: Multiple option hashes can now be passed on init. ([#4784](https://bugs.jqueryui.com/ticket/4784))
+* Fixed: Interaction plugins don't disable text selection in IE. ([#4773](https://bugs.jqueryui.com/ticket/4773))
+
+## Interactions
+
+### Draggable
+
+* Added: ui hash in events now contains originalPosition. ([#3782](https://bugs.jqueryui.com/ticket/3782))
+* Changed: stack option to accept a selector instead of a hash. ([#4375](https://bugs.jqueryui.com/ticket/4375))
+* Fixed: Draggable doesn't cause the page to scroll to top of the document anymore. ([#4934](https://bugs.jqueryui.com/ticket/4934))
+* Fixed: scope option works when no droppables exist. ([#4289](https://bugs.jqueryui.com/ticket/4289))
+* Fixed: start callback contains offset and position in ui hash. ([#4380](https://bugs.jqueryui.com/ticket/4380))
+* Fixed: Draggable can be destroyed immediately after drop. ([#4239](https://bugs.jqueryui.com/ticket/4239)) ([#4550](https://bugs.jqueryui.com/ticket/4550))
+
+### Droppable
+
+* Fixed: greedy option stops propagation of events. ([#4570](https://bugs.jqueryui.com/ticket/4570))
+
+### Sortable
+
+* Added: ui hash in events now contains originalPosition. ([#4797](https://bugs.jqueryui.com/ticket/4797))
+* Removed: ui hash in events no longer contains absolutePosition. ([#3991](https://bugs.jqueryui.com/ticket/3991))
+* Fixed: Serializing no longer contains the placeholder. ([#4138](https://bugs.jqueryui.com/ticket/4138))
+* Fixed: Documentation for revert option. ([#4657](https://bugs.jqueryui.com/ticket/4657))
+* Fixed: Restore original opacity. ([#4165](https://bugs.jqueryui.com/ticket/4165))
+
+## Widgets
+
+### Accordion
+
+* Removed: alwaysOpen option in favor of collapsible option. ([#4030](https://bugs.jqueryui.com/ticket/4030))
+
+### Datepicker
+
+* Added: UK localization. ([#4895](https://bugs.jqueryui.com/ticket/4895))
+* Added: DA localization. ([#4930](https://bugs.jqueryui.com/ticket/4930))
+* Added: Bosnian localization. ([#4987](https://bugs.jqueryui.com/ticket/4987))
+* Added: Documentation for localization. ([#4790](https://bugs.jqueryui.com/ticket/4790))
+* Added: yearRange option supports absolute and relative ranges. ([#4775](https://bugs.jqueryui.com/ticket/4775)) ([#4870](https://bugs.jqueryui.com/ticket/4870))
+* Fixed: Keyboard selection of dates in the future. ([#4917](https://bugs.jqueryui.com/ticket/4917))
+* Fixed: Proper alignment of dates with showOtherMonths option set to true. ([#4762](https://bugs.jqueryui.com/ticket/4762))
+* Fixed: Double clicking on next/previous buttons no longer closes the datepicker. ([#4949](https://bugs.jqueryui.com/ticket/4949))
+* Fixed: Proper alignment of month and year dropdowns with showMonthAfterYear option set to true. ([#4420](https://bugs.jqueryui.com/ticket/4420))
+* Fixed: Datepicker now works with multiple versions of jQuery on the same page. ([#4704](https://bugs.jqueryui.com/ticket/4704))
+* Fixed: Default action of tab key is no longer prevented. ([#4885](https://bugs.jqueryui.com/ticket/4885))
+* Fixed: Animation control. ([#4787](https://bugs.jqueryui.com/ticket/4787))
+* Fixed: Undefined function lookAhead(). ([#4956](https://bugs.jqueryui.com/ticket/4956))
+* Fixed: Element names can now contain special characters. ([#4969](https://bugs.jqueryui.com/ticket/4969))
+* Fixed: Datepicker works in IE again. ([#4774](https://bugs.jqueryui.com/ticket/4774))
+* Fixed: Added yearSuffix for Chinese/Korean localization. ([#4793](https://bugs.jqueryui.com/ticket/4793))
+
+### Dialog
+
+* Added: Support for fixed positioning. ([#2848](https://bugs.jqueryui.com/ticket/2848))
+* Fixed: title option now works properly in XHTML documents. ([#4970](https://bugs.jqueryui.com/ticket/4970))
+* Fixed: Positioning of modal dialogs in Opera. ([#4769](https://bugs.jqueryui.com/ticket/4769))
+* Added: Documentation for closeText option. ([#4887](https://bugs.jqueryui.com/ticket/4887))
+* Fixed: Settings resizable option to false after init toggles resizable. ([#4826](https://bugs.jqueryui.com/ticket/4826))
+* Fixed: Styling in form validation demo. ([#4808](https://bugs.jqueryui.com/ticket/4808))
+
+### Slider
+
+* Added: Handling for page up and page down. ([#3096](https://bugs.jqueryui.com/ticket/3096))
+* Fixed: Updating values option affects the slider. ([#4522](https://bugs.jqueryui.com/ticket/4522))
+* Added: Slider animation via programatic value change. ([#4659](https://bugs.jqueryui.com/ticket/4659)) ([#4432](https://bugs.jqueryui.com/ticket/4432))
+
+### Tabs
+
+* Added: More flexible markup allowed. ([#4877](https://bugs.jqueryui.com/ticket/4877)) ([#4501](https://bugs.jqueryui.com/ticket/4501)) ([#4506](https://bugs.jqueryui.com/ticket/4506))
+* Added: Demo with tabs at bottom. ([#4785](https://bugs.jqueryui.com/ticket/4785))
+* Removed: deselectable option in favor of collapsible option. ([#4031](https://bugs.jqueryui.com/ticket/4031))
+* Fixed: All tabs have the ui-state-default class. ([#4815](https://bugs.jqueryui.com/ticket/4815))
+* Fixed: Added support for jQuery 1.4. ([#4916](https://bugs.jqueryui.com/ticket/4916))
+
+## Effects
+
+### Core
+
+* Fixed: Color animations. ([#4251](https://bugs.jqueryui.com/ticket/4251))
+* Fixed: Better handling of effects on positioned elements. ([#4770](https://bugs.jqueryui.com/ticket/4770)) ([#4540](https://bugs.jqueryui.com/ticket/4540))
+* Fixed: Class animations are more stable and work cross-browser. ([#4950](https://bugs.jqueryui.com/ticket/4950)) ([#3938](https://bugs.jqueryui.com/ticket/3938)) ([#4721](https://bugs.jqueryui.com/ticket/4721)) ([#4807](https://bugs.jqueryui.com/ticket/4807)) ([#4396](https://bugs.jqueryui.com/ticket/4396)) ([#4342](https://bugs.jqueryui.com/ticket/4342)) ([#4720](https://bugs.jqueryui.com/ticket/4720)) ([#3112](https://bugs.jqueryui.com/ticket/3112)) ([#4999](https://bugs.jqueryui.com/ticket/4999))
+* Fixed: Animation of borderColor. ([#3938](https://bugs.jqueryui.com/ticket/3938))
+
+### Individual effects
+
+* Added: Fade effect. ([#4896](https://bugs.jqueryui.com/ticket/4896))
+* Fixed: Pulsate now pulses the proper number of times regardless of effect mode.([#4718](https://bugs.jqueryui.com/ticket/4718))
diff --git a/page/changelog/1.8b1.md b/page/changelog/1.8b1.md
new file mode 100644
index 0000000..e96034e
--- /dev/null
+++ b/page/changelog/1.8b1.md
@@ -0,0 +1,56 @@
+
+
+Released on January 20, 2010
+
+* jQuery 1.4
+* New widget factory that is not backward compatible with the old widget factory.
+* Two new plugins: button and autocomplete.
+* Removed the stackfix plugin, in favor of reverting back to the bgiframe plugin.
+
+## Build
+
+* Fixed: Build includes @import and full CSS. ([#5044](https://bugs.jqueryui.com/ticket/5044))
+
+## Widget Factory
+
+* Added: widget method to get the outermost element of a plugin. ([#4913](https://bugs.jqueryui.com/ticket/4913))
+* Added: The option method now returns the full options hash when called with no parameters. ([#5020](https://bugs.jqueryui.com/ticket/5020))
+* Added: Widget factory now adds disabled classes to outermost element instead of main element. ([#5028](https://bugs.jqueryui.com/ticket/5028))
+* Added: Re-instantiating plugins without destroying is now allowed. ([#5064](https://bugs.jqueryui.com/ticket/5064))
+* Fixed: Widget factory does not unbind all events. ([#5005](https://bugs.jqueryui.com/ticket/5005))
+* Fixed: Using effects with jQuery 1.4 kills widget instances. ([#5076](https://bugs.jqueryui.com/ticket/5076))
+
+## Position
+
+* Fixed: Changed by option to using option to match jQuery 1.4's offset method. ([#5030](https://bugs.jqueryui.com/ticket/5030))
+* Fixed: Including the position plugin twice was causing a stack overflow. ([#5041](https://bugs.jqueryui.com/ticket/5041))
+
+## Widgets
+
+* Fixed: Always use bgiframe when available. ([#5071](https://bugs.jqueryui.com/ticket/5071))
+
+### Accordion
+
+* Fixed: Some demos do not work. ([#5046](https://bugs.jqueryui.com/ticket/5046))
+* Fixed: Animated accordions sometimes fail in IE. ([#4382](https://bugs.jqueryui.com/ticket/4382))
+
+### Datepicker
+
+* Fixed: Next button doesn't display with multiple months in one column. ([#5022](https://bugs.jqueryui.com/ticket/5022))
+* Fixed: onChangeMonthYear fires at first run. ([#4804](https://bugs.jqueryui.com/ticket/4804))
+* Fixed: Don't reset dates on instantiation. ([#4869](https://bugs.jqueryui.com/ticket/4869))
+* Fixed: Proper comparison against minDate and maxDate. ([#5026](https://bugs.jqueryui.com/ticket/5026))
+
+### Dialog
+
+* Added: Support for button plugin.
+
+### Slider
+
+* Fixed: Range background shifts around as range size changes. ([#5035](https://bugs.jqueryui.com/ticket/5035))
+
+### Tabs
+
+* Fixed: Selected option returns wrong value. ([#4960](https://bugs.jqueryui.com/ticket/4960))
diff --git a/page/changelog/1.8rc1.md b/page/changelog/1.8rc1.md
new file mode 100644
index 0000000..d295ce6
--- /dev/null
+++ b/page/changelog/1.8rc1.md
@@ -0,0 +1,45 @@
+
+
+Released on January 27, 2010
+
+## Widgets
+
+### Button
+
+* Added: Add ui-state-focus on focus, making keyboard navigation possible, and button like 200% more accessible.
+* Added: Add ui-state-active on keydown, further improving keyboard navigation.
+* Fixed: handle space "click".
+* Fixed: Don't log a click on disabled buttons.
+
+### Datepicker
+
+* Fixed: Set focus error in IE8 for disabled and hidden elements. ([#5052](https://bugs.jqueryui.com/ticket/5052))
+* Fixed: Date picker localization in RO. ([#5088](https://bugs.jqueryui.com/ticket/5088))
+* Fixed: Bug in findPos for RTL languages. ([#5085](https://bugs.jqueryui.com/ticket/5085))
+* Fixed: Use null instead of empty string when showing/hiding without a duration. ([#5086](https://bugs.jqueryui.com/ticket/5086))
+
+### Dialog
+
+* Deprecated: beforeclose option instead of removing it. ([#4669](https://bugs.jqueryui.com/ticket/4669))
+* Fixed: Added padding and margin to the right side of the titlebar so the title doesn't go behind the close icon. ([#5087](https://bugs.jqueryui.com/ticket/5087))
+
+## Interactions
+
+### Droppable
+
+* Fixed: Droppable body let revert a div on a valid drop. ([#5095](https://bugs.jqueryui.com/ticket/5095))
+
+### Resizable
+
+* Fixed: 2 dialogs pos false on close. ([#5084](https://bugs.jqueryui.com/ticket/5084))
+
+### Selectable
+
+* Fixed: destroy method doesn't clean up selectees. ([#5094](https://bugs.jqueryui.com/ticket/5094))
+
+## Miscellaneous
+
+* Added: Switched to jQuery 1.4.1.
+* Removed: Firefox 2 ARIA support.
diff --git a/page/changelog/1.8rc2.md b/page/changelog/1.8rc2.md
new file mode 100644
index 0000000..e07cf3e
--- /dev/null
+++ b/page/changelog/1.8rc2.md
@@ -0,0 +1,82 @@
+
+
+Released on February 16, 2010
+
+## Core
+
+* Fixed: zIndex() only checks inline style, and ignores CSS. ([#5110](https://bugs.jqueryui.com/ticket/5110))
+
+## Widget Factory
+
+* Fixed: .remove() proxy doesn't work properly. ([#5143](https://bugs.jqueryui.com/ticket/5143))
+
+## Widgets
+
+### Autocomplete
+
+* Fixed: Autocomplete menu not visible in IE6. ([#5105](https://bugs.jqueryui.com/ticket/5105))
+* Fixed: Autocomplete: Turn off collision detection for menu. ([#5114](https://bugs.jqueryui.com/ticket/5114))
+* Fixed: Create menu only once and return that element from the widget method, put ui-autocomplete class on menu. ([#5120](https://bugs.jqueryui.com/ticket/5120))
+
+### Datepicker
+
+* Fixed: Conflict between beforeShowDay and getDate. ([#5187](https://bugs.jqueryui.com/ticket/5187))
+* Fixed: Datepicker appears underneath other widgets. ([#4580](https://bugs.jqueryui.com/ticket/4580))
+* Partial fix: UI Datepicker inside UI Dialog Issue. ([#4453](https://bugs.jqueryui.com/ticket/4453))
+* Fixed: Datepicker opens when setDate called. ([#5128](https://bugs.jqueryui.com/ticket/5128))
+* Fixed: Separate month and year unless both are drop-downs.
+* Fixed: Datepicker's vertical position in thickbox. ([#4443](https://bugs.jqueryui.com/ticket/4443)) This also fixes the virtual position when the datepicker is close but not right at the bottom of the page.
+
+### Dialog
+
+* Fixed: Datepicker Month/Year Dropdowns Not Working In Safari In A Dialog. ([#4363](https://bugs.jqueryui.com/ticket/4363))
+* Fixed: Position of Dialog is off the page when viewport is smaller then. ([#5141](https://bugs.jqueryui.com/ticket/5141))
+* Fixed: isOpen in dialogclose event is true. ([#5184](https://bugs.jqueryui.com/ticket/5184))
+
+### Slider
+
+* Fixed: Events not being triggered for drag and drop. ([#5134](https://bugs.jqueryui.com/ticket/5134))
+* Fixed: Slider's change event fires on slide. ([#5178](https://bugs.jqueryui.com/ticket/5178))
+
+### Tabs
+
+* Fixed: Bug in ui.tabs selected tab detection. ([#5122](https://bugs.jqueryui.com/ticket/5122))
+
+## Interactions
+
+### Draggable
+
+* Fixed: Start, drag and stop events should be preventable. ([#4145](https://bugs.jqueryui.com/ticket/4145))
+* Fixed: Fixed positions include wrong scroll offset in Safari 4. ([#4631](https://bugs.jqueryui.com/tcket/4631))
+* Fixed: Events not being triggered for drag and drop. ([#5134](https://bugs.jqueryui.com/ticket/5134))
+* Fixed: Draggable broken on inline elements in webkit browsers. ([#4824](https://bugs.jqueryui.com/ticket/4824))
+
+### Droppable
+
+* Fixed: Events not being triggered for drag and drop. ([#5134](https://bugs.jqueryui.com/ticket/5134))
+
+### Resizable
+
+* Fixed: resizable('destroy') moves images to end of parent element. ([#4940](https://bugs.jqueryui.com/ticket/4940))
+* Fixed: Events not being triggered for drag and drop. ([#5134](https://bugs.jqueryui.com/ticket/5134))
+
+### Sortable
+
+* Fixed: Events not being triggered for drag and drop. ([#5134](https://bugs.jqueryui.com/ticket/5134))
+
+## Effects
+
+* Fixed: build.xml doesn't compile effects into full script. ([#5109](https://bugs.jqueryui.com/ticket/5109))
+* Fixed: Include all effect docs in build for download. ([#5103](https://bugs.jqueryui.com/ticket/5103))
+
+### Blind/Fold
+
+* Fixed: blind/fold didnt work. ([#5097](https://bugs.jqueryui.com/ticket/5097))
+
+## Miscellaneous
+
+* Added: Switched to jQuery 1.4.2. ([#5182](https://bugs.jqueryui.com/ticket/5182))
+* Renamed: CSS files renamed to be consistent with js file renames in 1.8a1. ([#5163](https://bugs.jqueryui.com/ticket/5163))
+* Fixed: Slider demos need options reset before loading next demo. ([#5131](https://bugs.jqueryui.com/ticket/5131))
diff --git a/page/changelog/1.8rc3.md b/page/changelog/1.8rc3.md
new file mode 100644
index 0000000..7775219
--- /dev/null
+++ b/page/changelog/1.8rc3.md
@@ -0,0 +1,63 @@
+
+
+Released on February 25, 2010
+
+## Widgets
+
+### Accordion
+
+* Fixed: newContent/oldContent parameters are incorrect in change callback. ([#4469](https://bugs.jqueryui.com/ticket/4469))
+
+### Autocomplete
+
+* Fixed: Error when using bgiframe plugin. ([#5196](https://bugs.jqueryui.com/ticket/5196))
+* Fixed: Blur causes last active menu item to be selected. ([#5205](https://bugs.jqueryui.com/ticket/5205))
+* Fixed: Class needed on input element. ([#5198](https://bugs.jqueryui.com/ticket/5198))
+* Fixed: Broken demos. ([#5126](https://bugs.jqueryui.com/ticket/5126))
+* Fixed: Autocomplete in Dialog is positioned incorrectly. ([#5217](https://bugs.jqueryui.com/ticket/5217))
+
+### Button
+
+* Fixed: .buttonset() prevents change event. ([#5196](https://bugs.jqueryui.com/ticket/5195))
+
+### Datepicker
+
+* Fixed: Datepicker stays open when the field isn't focused. ([#5179](https://bugs.jqueryui.com/ticket/5179))
+
+### Dialog
+
+* Fixed: Modal dialogs leak memory in IE. ([#5185](https://bugs.jqueryui.com/ticket/5185))
+* Fixed: window.location.reload() doesn't work in dialog's close callback when it's triggered by ESC in Firefox. ([#4922](https://bugs.jqueryui.com/ticket/4922))
+* Fixed: No scrollbars in IE quirksmode. ([#4350](https://bugs.jqueryui.com/ticket/4350))
+* Fixed: Buttons disappear after dragging dialog. ([#5221](https://bugs.jqueryui.com/ticket/5221))
+
+### Tabs
+
+* Fixed: Ajax tabs stop functioning on ajax error. ([#4451](https://bugs.jqueryui.com/ticket/4451))
+
+## Interactions
+
+### Draggable
+
+* Fixed: Stack option can throw error. ([#5191](https://bugs.jqueryui.com/ticket/5191))
+
+### Sortable
+
+* Fixed: Over event triggered too frequently. ([#5111](https://bugs.jqueryui.com/ticket/5111))
+
+## Effects
+
+* Fixed: Toggle speed issue. ([#5192](https://bugs.jqueryui.com/ticket/5192))
+
+## Miscellaneous
+
+* Fixed: ThemeRoller bookmarklet tries to load an invalid URL. ([#5098](https://bugs.jqueryui.com/ticket/5098))
+* Fixed: Wrong jQuery version in demos. ([#5147](https://bugs.jqueryui.com/ticket/5147))
+* Fixed: Download builder/ThemeRoller is broken. ([#5157](https://bugs.jqueryui.com/ticket/5157), [#5115](https://bugs.jqueryui.com/ticket/5115), [#5223](https://bugs.jqueryui.com/ticket/5223), [#5224](https://bugs.jqueryui.com/ticket/5224), [#5225](https://bugs.jqueryui.com/ticket/5225), [#5226](https://bugs.jqueryui.com/ticket/5226), [#5234](https://bugs.jqueryui.com/ticket/5234), [#5235](https://bugs.jqueryui.com/ticket/5235))
+* Fixed: Autocomplete shows behind slider handles on download builder. ([#5238](https://bugs.jqueryui.com/ticket/5238))
+* Fixed: Theme switcher doesn't work on demos. ([#5144](https://bugs.jqueryui.com/ticket/5144))
+* Fixed: Demos reference missing bgiframe file. ([#5169](https://bugs.jqueryui.com/ticket/5169))
+* Updated: Cookie plugin updated to latest version. ([#5227](https://bugs.jqueryui.com/ticket/5227))
+* Updated: Qunit updated to latest version. ([#5230](https://bugs.jqueryui.com/ticket/5230))
diff --git a/page/changelog/1.9.0.md b/page/changelog/1.9.0.md
index 390642f..9c79614 100644
--- a/page/changelog/1.9.0.md
+++ b/page/changelog/1.9.0.md
@@ -2,327 +2,329 @@
"title": "jQuery UI 1.9.0 Changelog"
}
+Released on October 5, 2012
+
## General
* Added: Menu widget.
* Added: Spinner widget.
* Added: Tooltip widget.
-* Added: Consistent effects support across plugins. ([#3772](http://bugs.jqueryui.com/ticket/3772))
-* Fixed: Store version numbers on instances. ([#7436](http://bugs.jqueryui.com/ticket/7436), [6a5b21f](http://github.com/jquery/jquery-ui/commit/6a5b21fda2730a0650e0144658d47b9b01bffc64))
-* Fixed: Use .toggleClass() instead of \[ bool ? "addClass" : "removeClass" ](). ([#6764](http://bugs.jqueryui.com/ticket/6764), [956697b](http://github.com/jquery/jquery-ui/commit/956697bfca1b386ae20eb27ccfd8c1df3234f1f2))
-* Fixed: Consistent naming convention for .data() keys. ([#7810](http://bugs.jqueryui.com/ticket/7810), [3a0b8b8](http://github.com/jquery/jquery-ui/commit/3a0b8b84335f5d576cfb6d0a01301086a091fa39), [45ca20f](http://github.com/jquery/jquery-ui/commit/45ca20fa33204e2304295f2fb194f59c821b1512), [b141d63](http://github.com/jquery/jquery-ui/commit/b141d63a17a7f79b36ee9c9a0f1dd66493f3ef8e), [e93993c](http://github.com/jquery/jquery-ui/commit/e93993c54fd87130061a3ae1832ccb032d20ccfb), [59f2e88](http://github.com/jquery/jquery-ui/commit/59f2e88c58f0018f22b1c3be4bb5e9549a944381), [5fda4f6](http://github.com/jquery/jquery-ui/commit/5fda4f6828ad523bd0692b76f903010a458fcac4), [811b377](http://github.com/jquery/jquery-ui/commit/811b377aad83f97a817542bd9d9eda957beab99d))
-* Fixed: Remove uses of var self = this. ([#5404](http://bugs.jqueryui.com/ticket/5404), [1d530a1](http://github.com/jquery/jquery-ui/commit/1d530a16d7edf8954c85bf49f4c931c974491447))
+* Added: Consistent effects support across plugins. ([#3772](https://bugs.jqueryui.com/ticket/3772))
+* Fixed: Store version numbers on instances. ([#7436](https://bugs.jqueryui.com/ticket/7436), [6a5b21f](https://github.com/jquery/jquery-ui/commit/6a5b21fda2730a0650e0144658d47b9b01bffc64))
+* Fixed: Use .toggleClass() instead of \[ bool ? "addClass" : "removeClass" ](). ([#6764](https://bugs.jqueryui.com/ticket/6764), [956697b](https://github.com/jquery/jquery-ui/commit/956697bfca1b386ae20eb27ccfd8c1df3234f1f2))
+* Fixed: Consistent naming convention for .data() keys. ([#7810](https://bugs.jqueryui.com/ticket/7810), [3a0b8b8](https://github.com/jquery/jquery-ui/commit/3a0b8b84335f5d576cfb6d0a01301086a091fa39), [45ca20f](https://github.com/jquery/jquery-ui/commit/45ca20fa33204e2304295f2fb194f59c821b1512), [b141d63](https://github.com/jquery/jquery-ui/commit/b141d63a17a7f79b36ee9c9a0f1dd66493f3ef8e), [e93993c](https://github.com/jquery/jquery-ui/commit/e93993c54fd87130061a3ae1832ccb032d20ccfb), [59f2e88](https://github.com/jquery/jquery-ui/commit/59f2e88c58f0018f22b1c3be4bb5e9549a944381), [5fda4f6](https://github.com/jquery/jquery-ui/commit/5fda4f6828ad523bd0692b76f903010a458fcac4), [811b377](https://github.com/jquery/jquery-ui/commit/811b377aad83f97a817542bd9d9eda957beab99d))
+* Fixed: Remove uses of var self = this. ([#5404](https://bugs.jqueryui.com/ticket/5404), [1d530a1](https://github.com/jquery/jquery-ui/commit/1d530a16d7edf8954c85bf49f4c931c974491447))
## Build
* Added: Grunt build system.
-* Fixed: Cannot build on Windows. ([#8085](http://bugs.jqueryui.com/ticket/8085))
+* Fixed: Cannot build on Windows. ([#8085](https://bugs.jqueryui.com/ticket/8085))
## Core & Utilities
### UI Core
-* Deprecated: .disableSelection() and .enableSelection(). ([#7755](http://bugs.jqueryui.com/ticket/7755), [c343598](http://github.com/jquery/jquery-ui/commit/c343598d2a21712d33895f21468411cef23ac687))
-* Deprecated: $.ui.contains(). ([#5000](http://bugs.jqueryui.com/ticket/5000), [9681b1f](http://github.com/jquery/jquery-ui/commit/9681b1fd7ee69e336906a0c383c2768ecf2d32b7))
-* Added: .uniqueId() and .removeUniqueId(). ([#8361](http://bugs.jqueryui.com/ticket/8361), [40e47c0](http://github.com/jquery/jquery-ui/commit/40e47c0b08c31e5003833b9c46d36e7468a63de8))
+* Deprecated: .disableSelection() and .enableSelection(). ([#7755](https://bugs.jqueryui.com/ticket/7755), [c343598](https://github.com/jquery/jquery-ui/commit/c343598d2a21712d33895f21468411cef23ac687))
+* Deprecated: $.ui.contains(). ([#5000](https://bugs.jqueryui.com/ticket/5000), [9681b1f](https://github.com/jquery/jquery-ui/commit/9681b1fd7ee69e336906a0c383c2768ecf2d32b7))
+* Added: .uniqueId() and .removeUniqueId(). ([#8361](https://bugs.jqueryui.com/ticket/8361), [40e47c0](https://github.com/jquery/jquery-ui/commit/40e47c0b08c31e5003833b9c46d36e7468a63de8))
* Fixed: Incorrect UI keyCodes.
-* Fixed: Optimize :tabbable ([#7257](http://bugs.jqueryui.com/ticket/7257), [fe3b36b](http://github.com/jquery/jquery-ui/commit/fe3b36b8efcabf3d1f1d60523cae87c69a882f27))
+* Fixed: Optimize :tabbable ([#7257](https://bugs.jqueryui.com/ticket/7257), [fe3b36b](https://github.com/jquery/jquery-ui/commit/fe3b36b8efcabf3d1f1d60523cae87c69a882f27))
### Widget Factory
-* Deprecated: Use of metadata plugin. ([#7191](http://bugs.jqueryui.com/ticket/7191), [c6e7e3f](http://github.com/jquery/jquery-ui/commit/c6e7e3fc28fdf6ce74bf9768fa4101cf3a163d1c))
-* Deprecated: widgetBaseClass property; renamed to widgetFullName. ([#8154](http://bugs.jqueryui.com/ticket/8154), [1b80154](http://github.com/jquery/jquery-ui/commit/1b80154832611f8f440f4559c429fbdc4e773177))
-* Added: Ability to generate an item if no item is passed on creation. ([#8473](http://bugs.jqueryui.com/ticket/8473), [3a0b617](http://github.com/jquery/jquery-ui/commit/3a0b617bb44565aacfa90c2ee20b293654d911c9))
-* Added: $.widget.extend() which does deep extending, but only on plain objects. ([#7718](http://bugs.jqueryui.com/ticket/7718), [b915325](http://github.com/jquery/jquery-ui/commit/b9153258b0f0edbff49496ed16d2aa93bec07d95))
-* Added: Added _on() and _off(). ([#5207](http://bugs.jqueryui.com/ticket/5207), [659db70](http://github.com/jquery/jquery-ui/commit/659db70caa2ff1e3a43e98f3895f0353ebcee154), [9608e98](http://github.com/jquery/jquery-ui/commit/9608e981498846b3727cc4dad723a7fa7252fd86), [ff39bed](http://github.com/jquery/jquery-ui/commit/ff39bed57a05ca060033187b8aecebafab357f78))
-* Added: Ability to provide event data for create event. ([#8045](http://bugs.jqueryui.com/ticket/8045), [da89fcb](http://github.com/jquery/jquery-ui/commit/da89fcbc07f236d43e6a1edd98603beea6e245b6))
-* Added: _super() and _superApply() for easy access to parent methods. ([#6861](http://bugs.jqueryui.com/ticket/6861), [25dae41](http://github.com/jquery/jquery-ui/commit/25dae411bc7bb0e618db4df062fa2f1c08bfcc77))
-* Added: Extend .option() to get partial nested options. ([#7459](http://bugs.jqueryui.com/ticket/7459), [3dea8f1](http://github.com/jquery/jquery-ui/commit/3dea8f1786e07b17458f4fecff1dbb8b04f79a2d))
-* Added: Extend .option() to set partial nested options. ([#7035](http://bugs.jqueryui.com/ticket/7035), [6fc98de](http://github.com/jquery/jquery-ui/commit/6fc98deef03b91b0ea2ed51be2708bdd2c61d479))
-* Added: document and window properties. ([#7801](http://bugs.jqueryui.com/ticket/7801), [a0856ef](http://github.com/jquery/jquery-ui/commit/a0856efef3c392d413aa6cd9bd084dc601a337c6))
-* Added: Allow non-DOM based widget. ([#6895](http://bugs.jqueryui.com/ticket/6895), [cc90b44](http://github.com/jquery/jquery-ui/commit/cc90b440607a1af87c4abb8b2ee3325e96b0f5a1))
-* Added: Allow redefining a widget to create extensions. ([#6937](http://bugs.jqueryui.com/ticket/6937), [ee88a56](http://github.com/jquery/jquery-ui/commit/ee88a562433e75a0dd500ed7c71376d279eaacdf))
-* Added: Methods to abstract focus and hover classes. ([#3673](http://bugs.jqueryui.com/ticket/3673), [711df1f](http://github.com/jquery/jquery-ui/commit/711df1f5e54062d090d92f4e630e4cb0cc137b21), [17004b9](http://github.com/jquery/jquery-ui/commit/17004b9cac3eb87a72474b6d82d0f0063c23c269))
-* Added: Improved API for direct instantiation. ([#6891](http://bugs.jqueryui.com/ticket/6891), [3a0b617](http://github.com/jquery/jquery-ui/commit/3a0b617bb44565aacfa90c2ee20b293654d911c9), [244eebe](http://github.com/jquery/jquery-ui/commit/244eebe74dbc7bb35141e58e52ef9eaa21bd35f1), [bc71499](http://github.com/jquery/jquery-ui/commit/bc71499a505d0932668b4ae75603cd9dbfd4a2ac), [29bfb86](http://github.com/jquery/jquery-ui/commit/29bfb86ce2e192dae456bf15655c25cb469ad977))
-* Added: _delay() method. ([#8470](http://bugs.jqueryui.com/ticket/8470), [2a6ca3f](http://github.com/jquery/jquery-ui/commit/2a6ca3fb394f2caee6ad92c4dfc76ac66553cd46))
-* Fixed: Throw error for non-existent method calls. ([#5972](http://bugs.jqueryui.com/ticket/5972), [9ad2a4b](http://github.com/jquery/jquery-ui/commit/9ad2a4b1ccebb32cc745be3ef85a4b634e416ff8))
-* Fixed: Remove need to call base destroy method. ([#5056](http://bugs.jqueryui.com/ticket/5056), [ef1202d](http://github.com/jquery/jquery-ui/commit/ef1202dbe0af19b7929d6a31ef1ec66db7147889))
-* Fixed: Attempt to access private member of widget returns jQuery object. ([#6947](http://bugs.jqueryui.com/ticket/6947), [c94ec23](http://github.com/jquery/jquery-ui/commit/c94ec23b263464af3dfa4533eff45fc0d6fef954))
-* Fixed: Create lowercase pseudo selectors. ([#8433](http://bugs.jqueryui.com/ticket/8433), [a79d09a](http://github.com/jquery/jquery-ui/commit/a79d09a905740ce299f57602144144eee9b03af2))
-* Fixed: Make the widget method maintain the stack. ([#5732](http://bugs.jqueryui.com/ticket/5732), [f772240](http://github.com/jquery/jquery-ui/commit/f77224055a65f8343cd53411608a95d98db97138))
-* Fixed: _trigger() passes array arguments to handlers inconsistently. ([#6795](http://bugs.jqueryui.com/ticket/6795), [b3fcf17](http://github.com/jquery/jquery-ui/commit/b3fcf174716203013e9844f1aee3216f971fcd43))
+* Deprecated: Use of metadata plugin. ([#7191](https://bugs.jqueryui.com/ticket/7191), [c6e7e3f](https://github.com/jquery/jquery-ui/commit/c6e7e3fc28fdf6ce74bf9768fa4101cf3a163d1c))
+* Deprecated: widgetBaseClass property; renamed to widgetFullName. ([#8154](https://bugs.jqueryui.com/ticket/8154), [1b80154](https://github.com/jquery/jquery-ui/commit/1b80154832611f8f440f4559c429fbdc4e773177))
+* Added: Ability to generate an item if no item is passed on creation. ([#8473](https://bugs.jqueryui.com/ticket/8473), [3a0b617](https://github.com/jquery/jquery-ui/commit/3a0b617bb44565aacfa90c2ee20b293654d911c9))
+* Added: $.widget.extend() which does deep extending, but only on plain objects. ([#7718](https://bugs.jqueryui.com/ticket/7718), [b915325](https://github.com/jquery/jquery-ui/commit/b9153258b0f0edbff49496ed16d2aa93bec07d95))
+* Added: Added _on() and _off(). ([#5207](https://bugs.jqueryui.com/ticket/5207), [659db70](https://github.com/jquery/jquery-ui/commit/659db70caa2ff1e3a43e98f3895f0353ebcee154), [9608e98](https://github.com/jquery/jquery-ui/commit/9608e981498846b3727cc4dad723a7fa7252fd86), [ff39bed](https://github.com/jquery/jquery-ui/commit/ff39bed57a05ca060033187b8aecebafab357f78))
+* Added: Ability to provide event data for create event. ([#8045](https://bugs.jqueryui.com/ticket/8045), [da89fcb](https://github.com/jquery/jquery-ui/commit/da89fcbc07f236d43e6a1edd98603beea6e245b6))
+* Added: _super() and _superApply() for easy access to parent methods. ([#6861](https://bugs.jqueryui.com/ticket/6861), [25dae41](https://github.com/jquery/jquery-ui/commit/25dae411bc7bb0e618db4df062fa2f1c08bfcc77))
+* Added: Extend .option() to get partial nested options. ([#7459](https://bugs.jqueryui.com/ticket/7459), [3dea8f1](https://github.com/jquery/jquery-ui/commit/3dea8f1786e07b17458f4fecff1dbb8b04f79a2d))
+* Added: Extend .option() to set partial nested options. ([#7035](https://bugs.jqueryui.com/ticket/7035), [6fc98de](https://github.com/jquery/jquery-ui/commit/6fc98deef03b91b0ea2ed51be2708bdd2c61d479))
+* Added: document and window properties. ([#7801](https://bugs.jqueryui.com/ticket/7801), [a0856ef](https://github.com/jquery/jquery-ui/commit/a0856efef3c392d413aa6cd9bd084dc601a337c6))
+* Added: Allow non-DOM based widget. ([#6895](https://bugs.jqueryui.com/ticket/6895), [cc90b44](https://github.com/jquery/jquery-ui/commit/cc90b440607a1af87c4abb8b2ee3325e96b0f5a1))
+* Added: Allow redefining a widget to create extensions. ([#6937](https://bugs.jqueryui.com/ticket/6937), [ee88a56](https://github.com/jquery/jquery-ui/commit/ee88a562433e75a0dd500ed7c71376d279eaacdf))
+* Added: Methods to abstract focus and hover classes. ([#3673](https://bugs.jqueryui.com/ticket/3673), [711df1f](https://github.com/jquery/jquery-ui/commit/711df1f5e54062d090d92f4e630e4cb0cc137b21), [17004b9](https://github.com/jquery/jquery-ui/commit/17004b9cac3eb87a72474b6d82d0f0063c23c269))
+* Added: Improved API for direct instantiation. ([#6891](https://bugs.jqueryui.com/ticket/6891), [3a0b617](https://github.com/jquery/jquery-ui/commit/3a0b617bb44565aacfa90c2ee20b293654d911c9), [244eebe](https://github.com/jquery/jquery-ui/commit/244eebe74dbc7bb35141e58e52ef9eaa21bd35f1), [bc71499](https://github.com/jquery/jquery-ui/commit/bc71499a505d0932668b4ae75603cd9dbfd4a2ac), [29bfb86](https://github.com/jquery/jquery-ui/commit/29bfb86ce2e192dae456bf15655c25cb469ad977))
+* Added: _delay() method. ([#8470](https://bugs.jqueryui.com/ticket/8470), [2a6ca3f](https://github.com/jquery/jquery-ui/commit/2a6ca3fb394f2caee6ad92c4dfc76ac66553cd46))
+* Fixed: Throw error for non-existent method calls. ([#5972](https://bugs.jqueryui.com/ticket/5972), [9ad2a4b](https://github.com/jquery/jquery-ui/commit/9ad2a4b1ccebb32cc745be3ef85a4b634e416ff8))
+* Fixed: Remove need to call base destroy method. ([#5056](https://bugs.jqueryui.com/ticket/5056), [ef1202d](https://github.com/jquery/jquery-ui/commit/ef1202dbe0af19b7929d6a31ef1ec66db7147889))
+* Fixed: Attempt to access private member of widget returns jQuery object. ([#6947](https://bugs.jqueryui.com/ticket/6947), [c94ec23](https://github.com/jquery/jquery-ui/commit/c94ec23b263464af3dfa4533eff45fc0d6fef954))
+* Fixed: Create lowercase pseudo selectors. ([#8433](https://bugs.jqueryui.com/ticket/8433), [a79d09a](https://github.com/jquery/jquery-ui/commit/a79d09a905740ce299f57602144144eee9b03af2))
+* Fixed: Make the widget method maintain the stack. ([#5732](https://bugs.jqueryui.com/ticket/5732), [f772240](https://github.com/jquery/jquery-ui/commit/f77224055a65f8343cd53411608a95d98db97138))
+* Fixed: _trigger() passes array arguments to handlers inconsistently. ([#6795](https://bugs.jqueryui.com/ticket/6795), [b3fcf17](https://github.com/jquery/jquery-ui/commit/b3fcf174716203013e9844f1aee3216f971fcd43))
### Position
-* Deprecated: offset option; merged into my and at options. ([#6981](http://bugs.jqueryui.com/ticket/6981), [6f051d5](http://github.com/jquery/jquery-ui/commit/6f051d5d6a8eaf6fcc2a08ff68dbf5378029abc2))
-* Added: Allow for arbitrary element to be containing element. ([#5645](http://bugs.jqueryui.com/ticket/5645), [c6afaa1](http://github.com/jquery/jquery-ui/commit/c6afaa10727fdabefad129cf76cf8a4d2caafb60))
-* Added: Ability to determine if the element is flipped. ([#5937](http://bugs.jqueryui.com/ticket/5937), [d5452c0](http://github.com/jquery/jquery-ui/commit/d5452c0ec27219c3564522b852f83ca9757bed84))
-* Added: Allow percent-based offsets. ([#7028](http://bugs.jqueryui.com/ticket/7028), [6f051d5](http://github.com/jquery/jquery-ui/commit/6f051d5d6a8eaf6fcc2a08ff68dbf5378029abc2))
-* Added: flipfit collision. ([#7492](http://bugs.jqueryui.com/ticket/7492))
-* Fixed: Collision: fit doesn't work at top of window when scrolled. ([#7211](http://bugs.jqueryui.com/ticket/7211), [5e44b3c](http://github.com/jquery/jquery-ui/commit/5e44b3ce8851f62a38ce9211c6721e1050e2dabf))
-* Fixed: Position in flip mode does not take into consideration scrollTop and scrollLeft. ([#8481](http://bugs.jqueryui.com/ticket/8481), [6514607](http://github.com/jquery/jquery-ui/commit/651460792b3aeb7f05cbad5dc8f7b2276bdd9b29))
-* Fixed: collision:flip should be supported for at:center. ([#8127](http://bugs.jqueryui.com/ticket/8127), [c660d67](http://github.com/jquery/jquery-ui/commit/c660d679b1215004f3eb27d09a4f0059b0fd9b34))
-* Fixed: Smarter collision detection. ([#5284](http://bugs.jqueryui.com/ticket/5284))
+* Deprecated: offset option; merged into my and at options. ([#6981](https://bugs.jqueryui.com/ticket/6981), [6f051d5](https://github.com/jquery/jquery-ui/commit/6f051d5d6a8eaf6fcc2a08ff68dbf5378029abc2))
+* Added: Allow for arbitrary element to be containing element. ([#5645](https://bugs.jqueryui.com/ticket/5645), [c6afaa1](https://github.com/jquery/jquery-ui/commit/c6afaa10727fdabefad129cf76cf8a4d2caafb60))
+* Added: Ability to determine if the element is flipped. ([#5937](https://bugs.jqueryui.com/ticket/5937), [d5452c0](https://github.com/jquery/jquery-ui/commit/d5452c0ec27219c3564522b852f83ca9757bed84))
+* Added: Allow percent-based offsets. ([#7028](https://bugs.jqueryui.com/ticket/7028), [6f051d5](https://github.com/jquery/jquery-ui/commit/6f051d5d6a8eaf6fcc2a08ff68dbf5378029abc2))
+* Added: flipfit collision. ([#7492](https://bugs.jqueryui.com/ticket/7492))
+* Fixed: Collision: fit doesn't work at top of window when scrolled. ([#7211](https://bugs.jqueryui.com/ticket/7211), [5e44b3c](https://github.com/jquery/jquery-ui/commit/5e44b3ce8851f62a38ce9211c6721e1050e2dabf))
+* Fixed: Position in flip mode does not take into consideration scrollTop and scrollLeft. ([#8481](https://bugs.jqueryui.com/ticket/8481), [6514607](https://github.com/jquery/jquery-ui/commit/651460792b3aeb7f05cbad5dc8f7b2276bdd9b29))
+* Fixed: collision:flip should be supported for at:center. ([#8127](https://bugs.jqueryui.com/ticket/8127), [c660d67](https://github.com/jquery/jquery-ui/commit/c660d679b1215004f3eb27d09a4f0059b0fd9b34))
+* Fixed: Smarter collision detection. ([#5284](https://bugs.jqueryui.com/ticket/5284))
## Interactions
### Draggable
-* Fixed: helper="clone" doesn't remove the dragged clone if original element is removed upon drop. ([#7800](http://bugs.jqueryui.com/ticket/7800), [c3c8400](http://github.com/jquery/jquery-ui/commit/c3c84002898163c3c6625a4fedcddf1434f8e448))
+* Fixed: helper="clone" doesn't remove the dragged clone if original element is removed upon drop. ([#7800](https://bugs.jqueryui.com/ticket/7800), [c3c8400](https://github.com/jquery/jquery-ui/commit/c3c84002898163c3c6625a4fedcddf1434f8e448))
## Widgets
### Accordion
-* Removed: ui-accordion-disabled class. ([#8193](http://bugs.jqueryui.com/ticket/8193), [ec062c1](http://github.com/jquery/jquery-ui/commit/ec062c1156d58726dc212e6e2191ee7196302c44))
-* Deprecated: changestart event; renamed to beforeActivate. ([#6840](http://bugs.jqueryui.com/ticket/6840), [088ef05](http://github.com/jquery/jquery-ui/commit/088ef05142168de75d2afcbe447a5b44cb2d3673), [e0fe788](http://github.com/jquery/jquery-ui/commit/e0fe788ee0c0c0d8d23f9d90b9acff713ba1302f))
-* Deprecated: change event; renamed to activate. ([#6842](http://bugs.jqueryui.com/ticket/6842), [088ef05](http://github.com/jquery/jquery-ui/commit/088ef05142168de75d2afcbe447a5b44cb2d3673), [e0fe788](http://github.com/jquery/jquery-ui/commit/e0fe788ee0c0c0d8d23f9d90b9acff713ba1302f))
-* Deprecated: autoHeight, fillSpace, and clearStyle options; merged into new heightStyle option ([#5871](http://bugs.jqueryui.com/ticket/5871), [#5867](http://bugs.jqueryui.com/ticket/5867), [490792b](http://github.com/jquery/jquery-ui/commit/490792be6a17f53108f96e077948db5f3cbafa05))
-* Deprecated: navigation and navigationFilter options. ([#5869](http://bugs.jqueryui.com/ticket/5869), [f73d421](http://github.com/jquery/jquery-ui/commit/f73d4217537e130e2f41a7ee6729585a5c229107))
-* Deprecated: icons.headerSelected option; renamed to icons.activeHeader. ([#6834](http://bugs.jqueryui.com/ticket/6834), [b6ed932](http://github.com/jquery/jquery-ui/commit/b6ed9328ef5254cae18c6f96bdd467c195f1e2fa))
-* Deprecated: resize method; renamed to refresh. ([#6838](http://bugs.jqueryui.com/ticket/6838), [1b2f6ce](http://github.com/jquery/jquery-ui/commit/1b2f6ce0955f2a08a2e52c688f23335423179cf1))
-* Deprecated: animated option; renamed to animate. ([#8600](http://bugs.jqueryui.com/ticket/8600), [3d9f6b5](http://github.com/jquery/jquery-ui/commit/3d9f6b5bc74d09a08f6a116b6b31d93d72971f6d))
-* Deprecated: activate method. ([#6836](http://bugs.jqueryui.com/ticket/6836), [599e143](http://github.com/jquery/jquery-ui/commit/599e1434c591abcc3780f8ec7ac493e28504ef8c))
-* Deprecated: Non-number/falsey values for active option. ([#6852](http://bugs.jqueryui.com/ticket/6852), [b5b8cef](http://github.com/jquery/jquery-ui/commit/b5b8cefcb0f9e253a96c8aa97125b6353ebf2dcd))
-* Added: ui-accordion-header-icon class to generated icons. ([f1ff9b8](http://github.com/jquery/jquery-ui/commit/f1ff9b8f4d027207ebebce09c784b986b10fcf3c))
-* Added: Allow canceling the beforeActivate event. ([#6896](http://bugs.jqueryui.com/ticket/6896), [7a6dd71](http://github.com/jquery/jquery-ui/commit/7a6dd71f8cf04d19c938f0678c0f2a2586ed65c5))
-* Added: Use ui-accordion-header-active class. ([6074b06](http://github.com/jquery/jquery-ui/commit/6074b0698a01ec52c30eae91dbeb883e8f5432e1))
-* Added: Provide header and content details in create event. ([#7869](http://bugs.jqueryui.com/ticket/7869), [3919256](http://github.com/jquery/jquery-ui/commit/3919256abd7b91dcc8437c245f98d623103f97e0))
-* Fixed: Incorrect size when a panel is empty. ([#7335](http://bugs.jqueryui.com/ticket/7335), [4ff8d90](http://github.com/jquery/jquery-ui/commit/4ff8d90a825f8335a4dbc8df2539fa08a3fe0add))
-* Fixed: Accordion corner style applying order. ([#8224](http://bugs.jqueryui.com/ticket/8224), [04ba0a2](http://github.com/jquery/jquery-ui/commit/04ba0a254a1d7360d8038665b22e535b2dbdb6cf))
-* Fixed: Jumpy animation when opening a panel after closing all. ([#5540](http://bugs.jqueryui.com/ticket/5540), [6660640](http://github.com/jquery/jquery-ui/commit/66606407edf9faa33c566f0cc6a2bb1dd4d3e808))
-* Fixed: Dynamically changing accordion's event handler doesn't actually change the behavior. ([#6740](http://bugs.jqueryui.com/ticket/6740), [f70f01a](http://github.com/jquery/jquery-ui/commit/f70f01af9ea1d1d191b77fab6dadbbe421be43a8))
-* Fixed: Nested accordion styling. ([#7880](http://bugs.jqueryui.com/ticket/7880), [5a55d68](http://github.com/jquery/jquery-ui/commit/5a55d68eca60b52cbd1ae1ab48a6c9b1f8817ef1))
-* Fixed: Broken animation in Chrome. ([#6892](http://bugs.jqueryui.com/ticket/6892), [c580123](http://github.com/jquery/jquery-ui/commit/c58012364b495ef50aa8bfcb35fcede079983fdf))
-* Fixed: Nested accordion is oversized. ([#8140](http://bugs.jqueryui.com/ticket/8140), [1d2fcad](http://github.com/jquery/jquery-ui/commit/1d2fcaddadbb1ad313e3d7c5018f2fd9f31ce1e0))
-* Fixed: ui-accordion-content's overflow value does not change back to auto in IE 6. ([#6957](http://bugs.jqueryui.com/ticket/6957), [fb35d4e](http://github.com/jquery/jquery-ui/commit/fb35d4e5c5638dac72cb53ed37ee240b2fe91f46))
-* Fixed: Animation bug in Opera 11.01 with jQuery 1.4.3+. ([#6971](http://bugs.jqueryui.com/ticket/6971), [ecddf46](http://github.com/jquery/jquery-ui/commit/ecddf469d7924d88d72e57a4806996fc50fa50ae))
-* Fixed: Animation a bit jumpy in some browsers. ([#4178](http://bugs.jqueryui.com/ticket/4178), [3d9f6b5](http://github.com/jquery/jquery-ui/commit/3d9f6b5bc74d09a08f6a116b6b31d93d72971f6d), [d20f05e](d20f05ea37f17ec7799fb4d989c2ecba8689b096))
-* Fixed: Incorrect size when zoomed. ([#7371](http://bugs.jqueryui.com/ticket/7371), [3d9f6b5](http://github.com/jquery/jquery-ui/commit/3d9f6b5bc74d09a08f6a116b6b31d93d72971f6d))
-* Fixed: Activating a panel during animation fails. ([#3532](http://bugs.jqueryui.com/ticket/3532), [5f02a8f](http://github.com/jquery/jquery-ui/commit/5f02a8ff1fb7947c40003208886214203b834ce1))
-* Fixed: Folding with keyboard space mixes up headline style. ([#6779](http://bugs.jqueryui.com/ticket/6779), [8b23483](http://github.com/jquery/jquery-ui/commit/8b23483c0b03369dbfc9720e2aff8de690a3b854))
-* Fixed: Collapsible accordion in IE8 not toggling aria-expanded and aria-selected tags. ([#7300](http://bugs.jqueryui.com/ticket/7300))
-* Fixed: Accordion causes scrollbar to disappear. ([#7464](http://bugs.jqueryui.com/ticket/7464))
-* Fixed: Calling .accordion("activate, false) fires changestart event with incorrect values. ([#7683](http://bugs.jqueryui.com/ticket/7683))
-* Fixed: $(...).accordion('option', 'active') is incorrect when set by URL hash navigation. ([#7820](http://bugs.jqueryui.com/ticket/7820))
-* Fixed: Invalid negative CSS values from Accordion. ([#8142](http://bugs.jqueryui.com/ticket/8142))
-* Fixed: Accordion font reduce in safari of iPhone. ([#8310](http://bugs.jqueryui.com/ticket/8310))
+* Removed: ui-accordion-disabled class. ([#8193](https://bugs.jqueryui.com/ticket/8193), [ec062c1](https://github.com/jquery/jquery-ui/commit/ec062c1156d58726dc212e6e2191ee7196302c44))
+* Deprecated: changestart event; renamed to beforeActivate. ([#6840](https://bugs.jqueryui.com/ticket/6840), [088ef05](https://github.com/jquery/jquery-ui/commit/088ef05142168de75d2afcbe447a5b44cb2d3673), [e0fe788](https://github.com/jquery/jquery-ui/commit/e0fe788ee0c0c0d8d23f9d90b9acff713ba1302f))
+* Deprecated: change event; renamed to activate. ([#6842](https://bugs.jqueryui.com/ticket/6842), [088ef05](https://github.com/jquery/jquery-ui/commit/088ef05142168de75d2afcbe447a5b44cb2d3673), [e0fe788](https://github.com/jquery/jquery-ui/commit/e0fe788ee0c0c0d8d23f9d90b9acff713ba1302f))
+* Deprecated: autoHeight, fillSpace, and clearStyle options; merged into new heightStyle option ([#5871](https://bugs.jqueryui.com/ticket/5871), [#5867](https://bugs.jqueryui.com/ticket/5867), [490792b](https://github.com/jquery/jquery-ui/commit/490792be6a17f53108f96e077948db5f3cbafa05))
+* Deprecated: navigation and navigationFilter options. ([#5869](https://bugs.jqueryui.com/ticket/5869), [f73d421](https://github.com/jquery/jquery-ui/commit/f73d4217537e130e2f41a7ee6729585a5c229107))
+* Deprecated: icons.headerSelected option; renamed to icons.activeHeader. ([#6834](https://bugs.jqueryui.com/ticket/6834), [b6ed932](https://github.com/jquery/jquery-ui/commit/b6ed9328ef5254cae18c6f96bdd467c195f1e2fa))
+* Deprecated: resize method; renamed to refresh. ([#6838](https://bugs.jqueryui.com/ticket/6838), [1b2f6ce](https://github.com/jquery/jquery-ui/commit/1b2f6ce0955f2a08a2e52c688f23335423179cf1))
+* Deprecated: animated option; renamed to animate. ([#8600](https://bugs.jqueryui.com/ticket/8600), [3d9f6b5](https://github.com/jquery/jquery-ui/commit/3d9f6b5bc74d09a08f6a116b6b31d93d72971f6d))
+* Deprecated: activate method. ([#6836](https://bugs.jqueryui.com/ticket/6836), [599e143](https://github.com/jquery/jquery-ui/commit/599e1434c591abcc3780f8ec7ac493e28504ef8c))
+* Deprecated: Non-number/falsey values for active option. ([#6852](https://bugs.jqueryui.com/ticket/6852), [b5b8cef](https://github.com/jquery/jquery-ui/commit/b5b8cefcb0f9e253a96c8aa97125b6353ebf2dcd))
+* Added: ui-accordion-header-icon class to generated icons. ([f1ff9b8](https://github.com/jquery/jquery-ui/commit/f1ff9b8f4d027207ebebce09c784b986b10fcf3c))
+* Added: Allow canceling the beforeActivate event. ([#6896](https://bugs.jqueryui.com/ticket/6896), [7a6dd71](https://github.com/jquery/jquery-ui/commit/7a6dd71f8cf04d19c938f0678c0f2a2586ed65c5))
+* Added: Use ui-accordion-header-active class. ([6074b06](https://github.com/jquery/jquery-ui/commit/6074b0698a01ec52c30eae91dbeb883e8f5432e1))
+* Added: Provide header and content details in create event. ([#7869](https://bugs.jqueryui.com/ticket/7869), [3919256](https://github.com/jquery/jquery-ui/commit/3919256abd7b91dcc8437c245f98d623103f97e0))
+* Fixed: Incorrect size when a panel is empty. ([#7335](https://bugs.jqueryui.com/ticket/7335), [4ff8d90](https://github.com/jquery/jquery-ui/commit/4ff8d90a825f8335a4dbc8df2539fa08a3fe0add))
+* Fixed: Accordion corner style applying order. ([#8224](https://bugs.jqueryui.com/ticket/8224), [04ba0a2](https://github.com/jquery/jquery-ui/commit/04ba0a254a1d7360d8038665b22e535b2dbdb6cf))
+* Fixed: Jumpy animation when opening a panel after closing all. ([#5540](https://bugs.jqueryui.com/ticket/5540), [6660640](https://github.com/jquery/jquery-ui/commit/66606407edf9faa33c566f0cc6a2bb1dd4d3e808))
+* Fixed: Dynamically changing accordion's event handler doesn't actually change the behavior. ([#6740](https://bugs.jqueryui.com/ticket/6740), [f70f01a](https://github.com/jquery/jquery-ui/commit/f70f01af9ea1d1d191b77fab6dadbbe421be43a8))
+* Fixed: Nested accordion styling. ([#7880](https://bugs.jqueryui.com/ticket/7880), [5a55d68](https://github.com/jquery/jquery-ui/commit/5a55d68eca60b52cbd1ae1ab48a6c9b1f8817ef1))
+* Fixed: Broken animation in Chrome. ([#6892](https://bugs.jqueryui.com/ticket/6892), [c580123](https://github.com/jquery/jquery-ui/commit/c58012364b495ef50aa8bfcb35fcede079983fdf))
+* Fixed: Nested accordion is oversized. ([#8140](https://bugs.jqueryui.com/ticket/8140), [1d2fcad](https://github.com/jquery/jquery-ui/commit/1d2fcaddadbb1ad313e3d7c5018f2fd9f31ce1e0))
+* Fixed: ui-accordion-content's overflow value does not change back to auto in IE 6. ([#6957](https://bugs.jqueryui.com/ticket/6957), [fb35d4e](https://github.com/jquery/jquery-ui/commit/fb35d4e5c5638dac72cb53ed37ee240b2fe91f46))
+* Fixed: Animation bug in Opera 11.01 with jQuery 1.4.3+. ([#6971](https://bugs.jqueryui.com/ticket/6971), [ecddf46](https://github.com/jquery/jquery-ui/commit/ecddf469d7924d88d72e57a4806996fc50fa50ae))
+* Fixed: Animation a bit jumpy in some browsers. ([#4178](https://bugs.jqueryui.com/ticket/4178), [3d9f6b5](https://github.com/jquery/jquery-ui/commit/3d9f6b5bc74d09a08f6a116b6b31d93d72971f6d), [d20f05e](https://github.com/jquery/jquery-ui/commit/d20f05ea37f17ec7799fb4d989c2ecba8689b096))
+* Fixed: Incorrect size when zoomed. ([#7371](https://bugs.jqueryui.com/ticket/7371), [3d9f6b5](https://github.com/jquery/jquery-ui/commit/3d9f6b5bc74d09a08f6a116b6b31d93d72971f6d))
+* Fixed: Activating a panel during animation fails. ([#3532](https://bugs.jqueryui.com/ticket/3532), [5f02a8f](https://github.com/jquery/jquery-ui/commit/5f02a8ff1fb7947c40003208886214203b834ce1))
+* Fixed: Folding with keyboard space mixes up headline style. ([#6779](https://bugs.jqueryui.com/ticket/6779), [8b23483](https://github.com/jquery/jquery-ui/commit/8b23483c0b03369dbfc9720e2aff8de690a3b854))
+* Fixed: Collapsible accordion in IE8 not toggling aria-expanded and aria-selected tags. ([#7300](https://bugs.jqueryui.com/ticket/7300))
+* Fixed: Accordion causes scrollbar to disappear. ([#7464](https://bugs.jqueryui.com/ticket/7464))
+* Fixed: Calling .accordion("activate, false) fires changestart event with incorrect values. ([#7683](https://bugs.jqueryui.com/ticket/7683))
+* Fixed: $(...).accordion('option', 'active') is incorrect when set by URL hash navigation. ([#7820](https://bugs.jqueryui.com/ticket/7820))
+* Fixed: Invalid negative CSS values from Accordion. ([#8142](https://bugs.jqueryui.com/ticket/8142))
+* Fixed: Accordion font reduce in safari of iPhone. ([#8310](https://bugs.jqueryui.com/ticket/8310))
### Autocomplete
-* Added: Callback when search is complete. ([#6777](http://bugs.jqueryui.com/ticket/6777), [e7991e3](http://github.com/jquery/jquery-ui/commit/e7991e33f3c5d20d6efdb18654859175ef5cac68))
-* Added: Support for contenteditable. ([#6914](http://bugs.jqueryui.com/ticket/6914), [5095871](http://github.com/jquery/jquery-ui/commit/50958718c22aab5a4f5061c313531259761648c5))
-* Fixed: popup results not read by screen-readers. ([#7840](http://bugs.jqueryui.com/ticket/7840), [f4b2d7a](http://github.com/jquery/jquery-ui/commit/f4b2d7a4115814b64ff291e3518fe15f2dfbe390))
-* Fixed: Menu options are activated even if mouse is not moved. ([#7024](http://bugs.jqueryui.com/ticket/7024), [098dd14](http://github.com/jquery/jquery-ui/commit/098dd1404b7b6025a5735495a91ca2b964c5cb3e))
-* Fixed: Cancel pending request when text changes below minLength. ([#7523](http://bugs.jqueryui.com/ticket/7523), [530d4cb](http://github.com/jquery/jquery-ui/commit/530d4cb40814c68163197f8091322e2258f0e57a))
-* Fixed: Blur should not change the value of the input. ([#7742](http://bugs.jqueryui.com/ticket/7742), [ea19645](http://github.com/jquery/jquery-ui/commit/ea19645c20b79aea8afbc95999a51b4923a0b14b))
-* Fixed: Autocomplete overwrites input erroneously when user hits ESC before timeout expires. ([#7579](http://bugs.jqueryui.com/ticket/7579), [75415b3](http://github.com/jquery/jquery-ui/commit/75415b35eafbd09fbc804d6cfe6d9d6b6b65d17d))
-* Fixed: Holding down arrow keys in Firefox does not traverse list. ([#7269](http://bugs.jqueryui.com/ticket/7269), [bdfc6d5](http://github.com/jquery/jquery-ui/commit/bdfc6d532c68c092a83461a8b76840719294313f))
-* Fixed: Tab out of autocomplete with remote source can leave menu showing. ([#7423](http://bugs.jqueryui.com/ticket/7423), [2445e20](http://github.com/jquery/jquery-ui/commit/2445e20a856192179590c0d08e5d73479df1e52d))
-* Fixed: Double escape clear IE form. ([#8282](http://bugs.jqueryui.com/ticket/8282), [4ab7d53](http://github.com/jquery/jquery-ui/commit/4ab7d53b1cfb4e37e3c098ceddc33597b851a88f))
-* Fixed: Change event not triggered in time. ([#7550](http://bugs.jqueryui.com/ticket/7550), [f5b52a8](http://github.com/jquery/jquery-ui/commit/f5b52a89a735082d06d6f6ea950efbccff0a227f))
-* Fixed: Menu click when no mouseover causes error. ([#7085](http://bugs.jqueryui.com/ticket/7085), [da67ece](http://github.com/jquery/jquery-ui/commit/da67ece506ab69ef2d6d6bc6c1cf60be48776d4c))
-* Fixed: Combobox: Invalid value is set. ([#7197](http://bugs.jqueryui.com/ticket/7197), [9e26291](http://github.com/jquery/jquery-ui/commit/9e26291164a62d1cea16a56391b5762a561874bd))
-* Fixed: Combobox: Incorrect button size. ([#6729](http://bugs.jqueryui.com/ticket/6729), [309ca08](http://github.com/jquery/jquery-ui/commit/309ca08f721791f77c17c84f6bbe99206f418925))
-* Fixed: Autocomplete very slow in IE for 500+ items. ([#6670](http://bugs.jqueryui.com/ticket/6670))
-* Fixed: event.originalEvent undefined in overridden focus event. ([#7070](http://bugs.jqueryui.com/ticket/7070))
-* Fixed: autoFocus randomly deletes typed characters. ([#7555](http://bugs.jqueryui.com/ticket/7555))
-* Fixed: Menu doesn't hide on blur if selecting text. ([#8096](http://bugs.jqueryui.com/ticket/8096))
-* Fixed: Incorrect scrolling of items when zoomed. ([#8216](http://bugs.jqueryui.com/ticket/8216))
-* Fixed: Autocomplete does not display results on Android in Firefox unless you delete. ([#8263](http://bugs.jqueryui.com/ticket/8263))
-* Fixed: Single quote breaks autocomplete. ([#8276](http://bugs.jqueryui.com/ticket/8276))
-* Fixed: Remote autocomplete example can leave pending request tracking out of sync. ([#8616](http://bugs.jqueryui.com/ticket/8616))
+* Added: Callback when search is complete. ([#6777](https://bugs.jqueryui.com/ticket/6777), [e7991e3](https://github.com/jquery/jquery-ui/commit/e7991e33f3c5d20d6efdb18654859175ef5cac68))
+* Added: Support for contenteditable. ([#6914](https://bugs.jqueryui.com/ticket/6914), [5095871](https://github.com/jquery/jquery-ui/commit/50958718c22aab5a4f5061c313531259761648c5))
+* Fixed: popup results not read by screen-readers. ([#7840](https://bugs.jqueryui.com/ticket/7840), [f4b2d7a](https://github.com/jquery/jquery-ui/commit/f4b2d7a4115814b64ff291e3518fe15f2dfbe390))
+* Fixed: Menu options are activated even if mouse is not moved. ([#7024](https://bugs.jqueryui.com/ticket/7024), [098dd14](https://github.com/jquery/jquery-ui/commit/098dd1404b7b6025a5735495a91ca2b964c5cb3e))
+* Fixed: Cancel pending request when text changes below minLength. ([#7523](https://bugs.jqueryui.com/ticket/7523), [530d4cb](https://github.com/jquery/jquery-ui/commit/530d4cb40814c68163197f8091322e2258f0e57a))
+* Fixed: Blur should not change the value of the input. ([#7742](https://bugs.jqueryui.com/ticket/7742), [ea19645](https://github.com/jquery/jquery-ui/commit/ea19645c20b79aea8afbc95999a51b4923a0b14b))
+* Fixed: Autocomplete overwrites input erroneously when user hits ESC before timeout expires. ([#7579](https://bugs.jqueryui.com/ticket/7579), [75415b3](https://github.com/jquery/jquery-ui/commit/75415b35eafbd09fbc804d6cfe6d9d6b6b65d17d))
+* Fixed: Holding down arrow keys in Firefox does not traverse list. ([#7269](https://bugs.jqueryui.com/ticket/7269), [bdfc6d5](https://github.com/jquery/jquery-ui/commit/bdfc6d532c68c092a83461a8b76840719294313f))
+* Fixed: Tab out of autocomplete with remote source can leave menu showing. ([#7423](https://bugs.jqueryui.com/ticket/7423), [2445e20](https://github.com/jquery/jquery-ui/commit/2445e20a856192179590c0d08e5d73479df1e52d))
+* Fixed: Double escape clear IE form. ([#8282](https://bugs.jqueryui.com/ticket/8282), [4ab7d53](https://github.com/jquery/jquery-ui/commit/4ab7d53b1cfb4e37e3c098ceddc33597b851a88f))
+* Fixed: Change event not triggered in time. ([#7550](https://bugs.jqueryui.com/ticket/7550), [f5b52a8](https://github.com/jquery/jquery-ui/commit/f5b52a89a735082d06d6f6ea950efbccff0a227f))
+* Fixed: Menu click when no mouseover causes error. ([#7085](https://bugs.jqueryui.com/ticket/7085), [da67ece](https://github.com/jquery/jquery-ui/commit/da67ece506ab69ef2d6d6bc6c1cf60be48776d4c))
+* Fixed: Combobox: Invalid value is set. ([#7197](https://bugs.jqueryui.com/ticket/7197), [9e26291](https://github.com/jquery/jquery-ui/commit/9e26291164a62d1cea16a56391b5762a561874bd))
+* Fixed: Combobox: Incorrect button size. ([#6729](https://bugs.jqueryui.com/ticket/6729), [309ca08](https://github.com/jquery/jquery-ui/commit/309ca08f721791f77c17c84f6bbe99206f418925))
+* Fixed: Autocomplete very slow in IE for 500+ items. ([#6670](https://bugs.jqueryui.com/ticket/6670))
+* Fixed: event.originalEvent undefined in overridden focus event. ([#7070](https://bugs.jqueryui.com/ticket/7070))
+* Fixed: autoFocus randomly deletes typed characters. ([#7555](https://bugs.jqueryui.com/ticket/7555))
+* Fixed: Menu doesn't hide on blur if selecting text. ([#8096](https://bugs.jqueryui.com/ticket/8096))
+* Fixed: Incorrect scrolling of items when zoomed. ([#8216](https://bugs.jqueryui.com/ticket/8216))
+* Fixed: Autocomplete does not display results on Android in Firefox unless you delete. ([#8263](https://bugs.jqueryui.com/ticket/8263))
+* Fixed: Single quote breaks autocomplete. ([#8276](https://bugs.jqueryui.com/ticket/8276))
+* Fixed: Remote autocomplete example can leave pending request tracking out of sync. ([#8616](https://bugs.jqueryui.com/ticket/8616))
### Button
-* Fixed: Submit inputs don't automatically set label option. ([#8337](http://bugs.jqueryui.com/ticket/8337), [1f16138](http://github.com/jquery/jquery-ui/commit/1f1613852cb6116cd71a6600d737099fc2d55d2a))
-* Fixed: When opening a dialog, button keeps focused state. ([#5265](http://bugs.jqueryui.com/ticket/5265))
+* Fixed: Submit inputs don't automatically set label option. ([#8337](https://bugs.jqueryui.com/ticket/8337), [1f16138](https://github.com/jquery/jquery-ui/commit/1f1613852cb6116cd71a6600d737099fc2d55d2a))
+* Fixed: When opening a dialog, button keeps focused state. ([#5265](https://bugs.jqueryui.com/ticket/5265))
### Datepicker
-* Fixed: Chromium-Browser does not support html-entities in datePicker i18n-translation. ([#7008](http://bugs.jqueryui.com/ticket/7008), [7c4d6a7](http://github.com/jquery/jquery-ui/commit/7c4d6a763dfb5f9debf30c9a20875e046e89bc76))
-* Fixed: Datepicker does not properly scope the body selector. ([#8464](http://bugs.jqueryui.com/ticket/8464), [1626c97](http://github.com/jquery/jquery-ui/commit/1626c97caa920d72d0bb7501b240e64538ed41cd))
-* Fixed: Translation displays HTML entities when setting some formats. ([#8515](http://bugs.jqueryui.com/ticket/8515), [d372882](http://github.com/jquery/jquery-ui/commit/d372882af113ec14531d31991b0e9265c9cbcc2b))
-* Fixed: Update Catalan Localization. ([#7894](http://bugs.jqueryui.com/ticket/7894), [9ebbcfe](http://github.com/jquery/jquery-ui/commit/9ebbcfe87ed9213f1e20a2873e526878e474ee90))
-* Fixed: CSS collision causing display:block on initial hidden state. ([#4111](http://bugs.jqueryui.com/ticket/4111))
+* Fixed: Chromium-Browser does not support html-entities in datePicker i18n-translation. ([#7008](https://bugs.jqueryui.com/ticket/7008), [7c4d6a7](https://github.com/jquery/jquery-ui/commit/7c4d6a763dfb5f9debf30c9a20875e046e89bc76))
+* Fixed: Datepicker does not properly scope the body selector. ([#8464](https://bugs.jqueryui.com/ticket/8464), [1626c97](https://github.com/jquery/jquery-ui/commit/1626c97caa920d72d0bb7501b240e64538ed41cd))
+* Fixed: Translation displays HTML entities when setting some formats. ([#8515](https://bugs.jqueryui.com/ticket/8515), [d372882](https://github.com/jquery/jquery-ui/commit/d372882af113ec14531d31991b0e9265c9cbcc2b))
+* Fixed: Update Catalan Localization. ([#7894](https://bugs.jqueryui.com/ticket/7894), [9ebbcfe](https://github.com/jquery/jquery-ui/commit/9ebbcfe87ed9213f1e20a2873e526878e474ee90))
+* Fixed: CSS collision causing display:block on initial hidden state. ([#4111](https://bugs.jqueryui.com/ticket/4111))
### Dialog
-* Removed: Deprecated dialog option beforeclose. ([#5100](http://bugs.jqueryui.com/ticket/5100), [b42125a](http://github.com/jquery/jquery-ui/commit/b42125af4350eda14a6b15bb71f8dd336858fbd8))
-* Added: An extra class on the dialog wrapper to specify when a buttonset is showing. ([#7057](http://bugs.jqueryui.com/ticket/7057), [15c97e0](http://github.com/jquery/jquery-ui/commit/15c97e0b76b4576d0c7bee9d54dc4662c23502b9))
-* Added: Ability to set an absolute position, regardless of window size. ([#7947](http://bugs.jqueryui.com/ticket/7947))
-* Fixed: Incorrect behavior for ESCAPE with multiple modal dialogs. ([#8300](http://bugs.jqueryui.com/ticket/8300), [cab4c46](http://github.com/jquery/jquery-ui/commit/cab4c467d9c12ec61a652c3bf68eedd166319b34))
-* Fixed: Dialog box size and close animation bugs. ([#7327](http://bugs.jqueryui.com/ticket/7327), [c7eae7b](http://github.com/jquery/jquery-ui/commit/c7eae7b264112919462cb1b8b7ce115d3b24265d))
-* Fixed: Clicks on close button don't bubble. ([#6766](http://bugs.jqueryui.com/ticket/6766), [727d00d](http://github.com/jquery/jquery-ui/commit/727d00dec81671f26a15596acfb0df38920071a1))
-* Fixed: Dialog height is incorrect when .ui-dialog padding set. ([#7692](http://bugs.jqueryui.com/ticket/7692), [ce0afde](http://github.com/jquery/jquery-ui/commit/ce0afde900fb2b55b5766a3e0e3029e24a094a75))
-* Fixed: After repeated opening and closing of a modal dialog, focus navigation using tab becomes slow. ([#8551](http://bugs.jqueryui.com/ticket/8551), [6abb107](http://github.com/jquery/jquery-ui/commit/6abb10766c985bd2f3b0d580058c3e6ade18edaf))
-* Fixed: _createButtons() removes all elements with .ui-dialog-buttonpane class. ([#8343](http://bugs.jqueryui.com/ticket/8343), [286941e](http://github.com/jquery/jquery-ui/commit/286941ef8d325d6c0621eb29714792743871b1a3))
-* Fixed: Dimensions of reused overlay may cause scrollbars. ([#5637](http://bugs.jqueryui.com/ticket/5637), [a0f16a0](http://github.com/jquery/jquery-ui/commit/a0f16a00b9398f123dbb5e027b21b04af13fcc1b))
-* Fixed: Dialog shrinks on drag in IE. ([#5916](http://bugs.jqueryui.com/ticket/5916), [e34dbfe](http://github.com/jquery/jquery-ui/commit/e34dbfeef013313dead74e39bea8adaa848310d4))
-* Fixed: Destroy should place element back in original DOM position. ([#4980](http://bugs.jqueryui.com/ticket/4980), [a4b7fea](http://github.com/jquery/jquery-ui/commit/a4b7feabd3aa59bbd5523a8a199b0afbce070d7f))
-* Fixed: Small memory leak in ui dialog. ([#7793](http://bugs.jqueryui.com/ticket/7793), [42d33f2](http://github.com/jquery/jquery-ui/commit/42d33f2f86d48f5f82a640a6c57c566a4e84cdda))
-* Fixed: Optimize initialization. ([#7258](http://bugs.jqueryui.com/ticket/7258), [51df02e](http://github.com/jquery/jquery-ui/commit/51df02ee4ea02e91919842a169463612176682d5))
-* Fixed: Tabbing stops in modal dialog. ([#3123](http://bugs.jqueryui.com/ticket/3123), [96e5c24](http://github.com/jquery/jquery-ui/commit/96e5c241e1b26224c53738b590e07290db7a3e54))
-* Fixed: Dialogs larger than the window show off the screen (to the left). ([#8327](http://bugs.jqueryui.com/ticket/8327))
-* Fixed: Slow script warning with 1,000 options inside a select. ([#7118](http://bugs.jqueryui.com/ticket/7118), [09e88d6](http://github.com/jquery/jquery-ui/commit/09e88d6220af2f90197c826ac3a31a0ca97f2c8f))
-* Fixed: Modal dialogs cause horizontal scrollbars in IE. ([#3623](http://bugs.jqueryui.com/ticket/3623), [29b36bb](http://github.com/jquery/jquery-ui/commit/29b36bb4090632aaf306cc44591386c0263c9d27))
+* Removed: Deprecated dialog option beforeclose. ([#5100](https://bugs.jqueryui.com/ticket/5100), [b42125a](https://github.com/jquery/jquery-ui/commit/b42125af4350eda14a6b15bb71f8dd336858fbd8))
+* Added: An extra class on the dialog wrapper to specify when a buttonset is showing. ([#7057](https://bugs.jqueryui.com/ticket/7057), [15c97e0](https://github.com/jquery/jquery-ui/commit/15c97e0b76b4576d0c7bee9d54dc4662c23502b9))
+* Added: Ability to set an absolute position, regardless of window size. ([#7947](https://bugs.jqueryui.com/ticket/7947))
+* Fixed: Incorrect behavior for ESCAPE with multiple modal dialogs. ([#8300](https://bugs.jqueryui.com/ticket/8300), [cab4c46](https://github.com/jquery/jquery-ui/commit/cab4c467d9c12ec61a652c3bf68eedd166319b34))
+* Fixed: Dialog box size and close animation bugs. ([#7327](https://bugs.jqueryui.com/ticket/7327), [c7eae7b](https://github.com/jquery/jquery-ui/commit/c7eae7b264112919462cb1b8b7ce115d3b24265d))
+* Fixed: Clicks on close button don't bubble. ([#6766](https://bugs.jqueryui.com/ticket/6766), [727d00d](https://github.com/jquery/jquery-ui/commit/727d00dec81671f26a15596acfb0df38920071a1))
+* Fixed: Dialog height is incorrect when .ui-dialog padding set. ([#7692](https://bugs.jqueryui.com/ticket/7692), [ce0afde](https://github.com/jquery/jquery-ui/commit/ce0afde900fb2b55b5766a3e0e3029e24a094a75))
+* Fixed: After repeated opening and closing of a modal dialog, focus navigation using tab becomes slow. ([#8551](https://bugs.jqueryui.com/ticket/8551), [6abb107](https://github.com/jquery/jquery-ui/commit/6abb10766c985bd2f3b0d580058c3e6ade18edaf))
+* Fixed: _createButtons() removes all elements with .ui-dialog-buttonpane class. ([#8343](https://bugs.jqueryui.com/ticket/8343), [286941e](https://github.com/jquery/jquery-ui/commit/286941ef8d325d6c0621eb29714792743871b1a3))
+* Fixed: Dimensions of reused overlay may cause scrollbars. ([#5637](https://bugs.jqueryui.com/ticket/5637), [a0f16a0](https://github.com/jquery/jquery-ui/commit/a0f16a00b9398f123dbb5e027b21b04af13fcc1b))
+* Fixed: Dialog shrinks on drag in IE. ([#5916](https://bugs.jqueryui.com/ticket/5916), [e34dbfe](https://github.com/jquery/jquery-ui/commit/e34dbfeef013313dead74e39bea8adaa848310d4))
+* Fixed: Destroy should place element back in original DOM position. ([#4980](https://bugs.jqueryui.com/ticket/4980), [a4b7fea](https://github.com/jquery/jquery-ui/commit/a4b7feabd3aa59bbd5523a8a199b0afbce070d7f))
+* Fixed: Small memory leak in ui dialog. ([#7793](https://bugs.jqueryui.com/ticket/7793), [42d33f2](https://github.com/jquery/jquery-ui/commit/42d33f2f86d48f5f82a640a6c57c566a4e84cdda))
+* Fixed: Optimize initialization. ([#7258](https://bugs.jqueryui.com/ticket/7258), [51df02e](https://github.com/jquery/jquery-ui/commit/51df02ee4ea02e91919842a169463612176682d5))
+* Fixed: Tabbing stops in modal dialog. ([#3123](https://bugs.jqueryui.com/ticket/3123), [96e5c24](https://github.com/jquery/jquery-ui/commit/96e5c241e1b26224c53738b590e07290db7a3e54))
+* Fixed: Dialogs larger than the window show off the screen (to the left). ([#8327](https://bugs.jqueryui.com/ticket/8327))
+* Fixed: Slow script warning with 1,000 options inside a select. ([#7118](https://bugs.jqueryui.com/ticket/7118), [09e88d6](https://github.com/jquery/jquery-ui/commit/09e88d6220af2f90197c826ac3a31a0ca97f2c8f))
+* Fixed: Modal dialogs cause horizontal scrollbars in IE. ([#3623](https://bugs.jqueryui.com/ticket/3623), [29b36bb](https://github.com/jquery/jquery-ui/commit/29b36bb4090632aaf306cc44591386c0263c9d27))
### Menu - NEW!
-New menu widget. Check out the [menu documentation](http://api.jqueryui.com/menu/) for more details.
+New menu widget. Check out the [menu documentation](https://api.jqueryui.com/menu/) for more details.
### Tabs
-* Removed: rotate method. ([#5939](http://bugs.jqueryui.com/ticket/5939), [162364f](http://github.com/jquery/jquery-ui/commit/162364fae4a34bcd6e5ef9f094583b5afbdc6cc5))
-* Deprecated: idPrefix, tabTemplate, and panelTemplate options. ([#7139](http://bugs.jqueryui.com/ticket/7139), [c363019](http://github.com/jquery/jquery-ui/commit/c363019590da9c38754fb7c60e5f44e25ca48e21), [0546cd5](http://github.com/jquery/jquery-ui/commit/0546cd57bbd0ccee25e96e1fb8be5f208b08dfd4))
-* Deprecated: spinner option. ([#7134](http://bugs.jqueryui.com/ticket/7134), [e7971c9](http://github.com/jquery/jquery-ui/commit/e7971c9077ce1f8e4f9afb123118349544bf1acb), [5ae44f8](http://github.com/jquery/jquery-ui/commit/5ae44f8a3bdd858aa95c79b5938566ca0a67f373))
-* Deprecated: cookie option. ([#7144](http://bugs.jqueryui.com/ticket/7144), [cb0588f](http://github.com/jquery/jquery-ui/commit/cb0588f2dd80b5bcc6ff8ddf313366ab1f4c53b1), [36fccdd](http://github.com/jquery/jquery-ui/commit/36fccdda14c15f974ff6aed2315259df6da87be5))
-* Deprecated: ajaxOptions and cache options. ([#7131](http://bugs.jqueryui.com/ticket/7131), [aeaaf93](http://github.com/jquery/jquery-ui/commit/aeaaf93ebb51ab6ff61a42d365edfd3872ae2ebd), [9549686](http://github.com/jquery/jquery-ui/commit/9549686cb35b877740aca388286d71ad04311a2d), [7157af2](http://github.com/jquery/jquery-ui/commit/7157af2550b1b26fb71a7fac17ea67f36f117f7e))
-* Deprecated: selected option; renamed to active. ([#7135](http://bugs.jqueryui.com/ticket/7135), [9a00fd4](http://github.com/jquery/jquery-ui/commit/9a00fd4c5ef637f29afc6debda4db136f1fcb3fb), [92bcb25](http://github.com/jquery/jquery-ui/commit/92bcb2504f61427e5788d0777c5bcc784c32ad7a))
-* Deprecated: fx option; replaced with show and hide options. ([#8319](http://bugs.jqueryui.com/ticket/8319), [d4318a5](http://github.com/jquery/jquery-ui/commit/d4318a5f4c216e1184b6e90c17214b6e6cfbb0fb))
-* Deprecated: abort method. ([#7133](http://bugs.jqueryui.com/ticket/7133), [f53d117](http://github.com/jquery/jquery-ui/commit/f53d11785339543de7878add5ff25476246fa0b8), [3d61244](http://github.com/jquery/jquery-ui/commit/3d612445264ba1a5f76917aee78217b92b04543b))
-* Deprecated: select method. ([#7138](http://bugs.jqueryui.com/ticket/7138), [cbce358](http://github.com/jquery/jquery-ui/commit/cbce3585bcd3edb0202839d9533c43d3a6df1d7f), [c6a6ef5](http://github.com/jquery/jquery-ui/commit/c6a6ef5ee6ed026ed47a96030a341a8b08a201cf))
-* Deprecated: length method. ([#7143](http://bugs.jqueryui.com/ticket/7143), [03eb54b](http://github.com/jquery/jquery-ui/commit/03eb54b37902db771accd3a53bad1b927c058bc7))
-* Deprecated: add and remove methods. ([#7141](http://bugs.jqueryui.com/ticket/7141), [e378876](http://github.com/jquery/jquery-ui/commit/e378876918361182e6cb6321159393828848b2c9))
-* Deprecated: url method; use aria-controls instead of title to specify panels. ([#7132](http://bugs.jqueryui.com/ticket/7132), [1e2d314](http://github.com/jquery/jquery-ui/commit/1e2d3145fff7cdeca61e62f95eb1e30c37e664c5))
-* Deprecated: enable and disable events. ([#7142](http://bugs.jqueryui.com/ticket/7142), [e5f081b](http://github.com/jquery/jquery-ui/commit/e5f081bc1c16c051665eafc22c9a7af3fba456c8), [45c727d](http://github.com/jquery/jquery-ui/commit/45c727d75e411d0330027162646bbb26c4f671f1))
-* Deprecated: select event; renamed to beforeActivate. ([#7136](http://bugs.jqueryui.com/ticket/7136), [8b0c361](http://github.com/jquery/jquery-ui/commit/8b0c3618bdebddd98d4c09e77d14c50c4f4d3190), [632e6c7](http://github.com/jquery/jquery-ui/commit/632e6c76185664f1831c2f008e40f9057ef91bd0))
-* Deprecated: show event; renamed to activate. ([#7137](http://bugs.jqueryui.com/ticket/7137), [787efd3](http://github.com/jquery/jquery-ui/commit/787efd307aff11ad3c51a72f520c58b8158ae973), [1fc91f9](http://github.com/jquery/jquery-ui/commit/1fc91f90d0dea2bbc6c84bfa994e21d120391782))
-* Added: heightStyle option. ([#8345](http://bugs.jqueryui.com/ticket/8345), [6e2f95f](http://github.com/jquery/jquery-ui/commit/6e2f95f59d73d86a2b84faecba3fca593534b8c9))
-* Added: refresh method. ([#7140](http://bugs.jqueryui.com/ticket/7140), [8b89feb](http://github.com/jquery/jquery-ui/commit/8b89febbbb4d2f13c67bc8ec406b68ff29da3a5a))
-* Added: beforeload event. ([#7131](http://bugs.jqueryui.com/ticket/7131), [aeaaf93](http://github.com/jquery/jquery-ui/commit/aeaaf93ebb51ab6ff61a42d365edfd3872ae2ebd), [ff84d58](http://github.com/jquery/jquery-ui/commit/ff84d58444019268594b6ab11b32ed2e2a31926d))
-* Added: Provide tab and panel details in create event. ([#7868](http://bugs.jqueryui.com/ticket/7868), [6800e1a](http://github.com/jquery/jquery-ui/commit/6800e1a2f97a7d8aaf20d065aa2ce517528e5068))
-* Added: Demo with the tabs at the bottom. ([#4785](http://bugs.jqueryui.com/ticket/4785), [e7525d7](http://github.com/jquery/jquery-ui/commit/e7525d76863be54864237d87b9bb8c244f97d604), [6ca310f](http://github.com/jquery/jquery-ui/commit/6ca310f49a010dc0c650da155dab378544f08363))
-* Added: Ability to cleanly handle ajax load errors. ([#5070](http://bugs.jqueryui.com/ticket/5070))
-* Fixed: Bottom border disappears in IE. ([#5520](http://bugs.jqueryui.com/ticket/5520), [1655079](http://github.com/jquery/jquery-ui/commit/165507925638d0161163d7a712d5e0e63bae93dd))
-* Fixed: CSS Consistency Updates. ([#7146](http://bugs.jqueryui.com/ticket/7146), [e9ae04a](http://github.com/jquery/jquery-ui/commit/e9ae04a394e63e5b012f28fc40a04e71c4f935d9))
-* Fixed: Programmatically loading a tab shouldn't cancel active ajax requests. ([#7204](http://bugs.jqueryui.com/ticket/7204), [03939fc](http://github.com/jquery/jquery-ui/commit/03939fc8c14cd93f081c3195cdcdef6c56a6fccf))
-* Fixed: Don't forcefully remove filter attribute. ([#4621](http://bugs.jqueryui.com/ticket/4621), [c0f5db5](http://github.com/jquery/jquery-ui/commit/c0f5db539403f1b9c5a80db75d127d4465f911df))
-* Fixed: _sanitizeSelector() needs to escape '.'. ([#4681](http://bugs.jqueryui.com/ticket/4681), [5f10fa6](http://github.com/jquery/jquery-ui/commit/5f10fa6511ae1965088926217776692a3f5663cb))
-* Fixed: Panels do not sort when a tab is sorted which can cause a mismatch error when a tab is removed. ([#7698](http://bugs.jqueryui.com/ticket/7698), [c1cda18](http://github.com/jquery/jquery-ui/commit/c1cda180a93a6c0a63cf21a68dacb54233e03d03))
-* Fixed: Selected Tab CSS causes problem when tabs are wrapped onto more than one line. ([#4882](http://bugs.jqueryui.com/ticket/4882), [1bd139a](http://github.com/jquery/jquery-ui/commit/1bd139aaf9e4fc68f8f56ca5aeef5e9681ff177e))
-* Fixed: Detection of local vs. remote tabs. ([#4941](http://bugs.jqueryui.com/ticket/4941), [#4836](http://bugs.jqueryui.com/ticket/4836), [18a3b53](http://github.com/jquery/jquery-ui/commit/18a3b539882835ecc78ed976a7d9e830c128fd96))
-* Fixed: Accessibility. ([#3079](http://bugs.jqueryui.com/ticket/3079), [#7845](http://bugs.jqueryui.com/ticket/7845), [48588d3](http://github.com/jquery/jquery-ui/commit/48588d3bef746129aa66e5fa915da2962a1a4014))
-* Fixed: Use event.preventDefault() instead of returning false. ([#6765](http://bugs.jqueryui.com/ticket/6765), [e104f6c](http://github.com/jquery/jquery-ui/commit/e104f6cfa0324f9625c6258bb87f708d7c35d7bd))
-* Fixed: Adding tab moves targeted panel. ([#4578](http://bugs.jqueryui.com/ticket/4578), [965cb73](http://github.com/jquery/jquery-ui/commit/965cb7359ea704715839e3c171ae751d6a32dde9))
-* Fixed: Sortable demo causes bad index references. ([#4524](http://bugs.jqueryui.com/ticket/4524), [c3d9bd0](http://github.com/jquery/jquery-ui/commit/c3d9bd070051a79e1a288935d420f85278268149))
-* Fixed: Pass original event. ([#5043](http://bugs.jqueryui.com/ticket/5043), [8ef8d2d](http://github.com/jquery/jquery-ui/commit/8ef8d2d8772404ccd3587121de8365d44f791339))
-* Fixed: Incorrect handling for enable and disable method. ([#4386](http://bugs.jqueryui.com/ticket/4386), [710d762](http://github.com/jquery/jquery-ui/commit/710d7620e7f713677a21fc5a8572581250499dd3))
-* Fixed: Tabs doesn't need to have execute permissions. ([#7329](http://bugs.jqueryui.com/ticket/7329), [d522dad](http://github.com/jquery/jquery-ui/commit/d522dad71862c1633bae8281453936dea38c597f))
-* Fixed: Remove queueing logic. ([#7357](http://bugs.jqueryui.com/ticket/7357), [463849e](http://github.com/jquery/jquery-ui/commit/463849e4c35c64634f8f6d6dc876ef6774165542))
-* Fixed: Incomplete unit tests. ([#4051](http://bugs.jqueryui.com/ticket/4051))
-* Fixed: Removing a tab can result in a selected index of -1 if fx option is used. ([#4403](http://bugs.jqueryui.com/ticket/4403))
-* Fixed: Multiple tabs may be in an active state. ([#4549](http://bugs.jqueryui.com/ticket/4549))
-* Fixed: add() creates two tab panels when using a full URL. ([#5069](http://bugs.jqueryui.com/ticket/5069))
-* Fixed: Removing selected tab passes bad index to select callback. ([#5768](http://bugs.jqueryui.com/ticket/5768))
-* Fixed: Load event for Ajax tab can fire for the wrong tab. ([#5954](http://bugs.jqueryui.com/ticket/5954))
-* Fixed: Hover state sticks in Firefox if a field is focused on show. ([#6148](http://bugs.jqueryui.com/ticket/6148))
-* Fixed: Destroy method sometimes throws an error. ([#7199](http://bugs.jqueryui.com/ticket/7199))
-* Fixed: Memory leak. ([#7383](http://bugs.jqueryui.com/ticket/7383))
-* Fixed: Tab retains active state when programmatically moving focus. ([#7520](http://bugs.jqueryui.com/ticket/7520))
-* Fixed: Tabs are stopping event propagation. ([#7708](http://bugs.jqueryui.com/ticket/7708))
-* Fixed: Tabs displayed differently in IE7. ([#8632](http://bugs.jqueryui.com/ticket/8632))
+* Removed: rotate method. ([#5939](https://bugs.jqueryui.com/ticket/5939), [162364f](https://github.com/jquery/jquery-ui/commit/162364fae4a34bcd6e5ef9f094583b5afbdc6cc5))
+* Deprecated: idPrefix, tabTemplate, and panelTemplate options. ([#7139](https://bugs.jqueryui.com/ticket/7139), [c363019](https://github.com/jquery/jquery-ui/commit/c363019590da9c38754fb7c60e5f44e25ca48e21), [0546cd5](https://github.com/jquery/jquery-ui/commit/0546cd57bbd0ccee25e96e1fb8be5f208b08dfd4))
+* Deprecated: spinner option. ([#7134](https://bugs.jqueryui.com/ticket/7134), [e7971c9](https://github.com/jquery/jquery-ui/commit/e7971c9077ce1f8e4f9afb123118349544bf1acb), [5ae44f8](https://github.com/jquery/jquery-ui/commit/5ae44f8a3bdd858aa95c79b5938566ca0a67f373))
+* Deprecated: cookie option. ([#7144](https://bugs.jqueryui.com/ticket/7144), [cb0588f](https://github.com/jquery/jquery-ui/commit/cb0588f2dd80b5bcc6ff8ddf313366ab1f4c53b1), [36fccdd](https://github.com/jquery/jquery-ui/commit/36fccdda14c15f974ff6aed2315259df6da87be5))
+* Deprecated: ajaxOptions and cache options. ([#7131](https://bugs.jqueryui.com/ticket/7131), [aeaaf93](https://github.com/jquery/jquery-ui/commit/aeaaf93ebb51ab6ff61a42d365edfd3872ae2ebd), [9549686](https://github.com/jquery/jquery-ui/commit/9549686cb35b877740aca388286d71ad04311a2d), [7157af2](https://github.com/jquery/jquery-ui/commit/7157af2550b1b26fb71a7fac17ea67f36f117f7e))
+* Deprecated: selected option; renamed to active. ([#7135](https://bugs.jqueryui.com/ticket/7135), [9a00fd4](https://github.com/jquery/jquery-ui/commit/9a00fd4c5ef637f29afc6debda4db136f1fcb3fb), [92bcb25](https://github.com/jquery/jquery-ui/commit/92bcb2504f61427e5788d0777c5bcc784c32ad7a))
+* Deprecated: fx option; replaced with show and hide options. ([#8319](https://bugs.jqueryui.com/ticket/8319), [d4318a5](https://github.com/jquery/jquery-ui/commit/d4318a5f4c216e1184b6e90c17214b6e6cfbb0fb))
+* Deprecated: abort method. ([#7133](https://bugs.jqueryui.com/ticket/7133), [f53d117](https://github.com/jquery/jquery-ui/commit/f53d11785339543de7878add5ff25476246fa0b8), [3d61244](https://github.com/jquery/jquery-ui/commit/3d612445264ba1a5f76917aee78217b92b04543b))
+* Deprecated: select method. ([#7138](https://bugs.jqueryui.com/ticket/7138), [cbce358](https://github.com/jquery/jquery-ui/commit/cbce3585bcd3edb0202839d9533c43d3a6df1d7f), [c6a6ef5](https://github.com/jquery/jquery-ui/commit/c6a6ef5ee6ed026ed47a96030a341a8b08a201cf))
+* Deprecated: length method. ([#7143](https://bugs.jqueryui.com/ticket/7143), [03eb54b](https://github.com/jquery/jquery-ui/commit/03eb54b37902db771accd3a53bad1b927c058bc7))
+* Deprecated: add and remove methods. ([#7141](https://bugs.jqueryui.com/ticket/7141), [e378876](https://github.com/jquery/jquery-ui/commit/e378876918361182e6cb6321159393828848b2c9))
+* Deprecated: url method; use aria-controls instead of title to specify panels. ([#7132](https://bugs.jqueryui.com/ticket/7132), [1e2d314](https://github.com/jquery/jquery-ui/commit/1e2d3145fff7cdeca61e62f95eb1e30c37e664c5))
+* Deprecated: enable and disable events. ([#7142](https://bugs.jqueryui.com/ticket/7142), [e5f081b](https://github.com/jquery/jquery-ui/commit/e5f081bc1c16c051665eafc22c9a7af3fba456c8), [45c727d](https://github.com/jquery/jquery-ui/commit/45c727d75e411d0330027162646bbb26c4f671f1))
+* Deprecated: select event; renamed to beforeActivate. ([#7136](https://bugs.jqueryui.com/ticket/7136), [8b0c361](https://github.com/jquery/jquery-ui/commit/8b0c3618bdebddd98d4c09e77d14c50c4f4d3190), [632e6c7](https://github.com/jquery/jquery-ui/commit/632e6c76185664f1831c2f008e40f9057ef91bd0))
+* Deprecated: show event; renamed to activate. ([#7137](https://bugs.jqueryui.com/ticket/7137), [787efd3](https://github.com/jquery/jquery-ui/commit/787efd307aff11ad3c51a72f520c58b8158ae973), [1fc91f9](https://github.com/jquery/jquery-ui/commit/1fc91f90d0dea2bbc6c84bfa994e21d120391782))
+* Added: heightStyle option. ([#8345](https://bugs.jqueryui.com/ticket/8345), [6e2f95f](https://github.com/jquery/jquery-ui/commit/6e2f95f59d73d86a2b84faecba3fca593534b8c9))
+* Added: refresh method. ([#7140](https://bugs.jqueryui.com/ticket/7140), [8b89feb](https://github.com/jquery/jquery-ui/commit/8b89febbbb4d2f13c67bc8ec406b68ff29da3a5a))
+* Added: beforeload event. ([#7131](https://bugs.jqueryui.com/ticket/7131), [aeaaf93](https://github.com/jquery/jquery-ui/commit/aeaaf93ebb51ab6ff61a42d365edfd3872ae2ebd), [ff84d58](https://github.com/jquery/jquery-ui/commit/ff84d58444019268594b6ab11b32ed2e2a31926d))
+* Added: Provide tab and panel details in create event. ([#7868](https://bugs.jqueryui.com/ticket/7868), [6800e1a](https://github.com/jquery/jquery-ui/commit/6800e1a2f97a7d8aaf20d065aa2ce517528e5068))
+* Added: Demo with the tabs at the bottom. ([#4785](https://bugs.jqueryui.com/ticket/4785), [e7525d7](https://github.com/jquery/jquery-ui/commit/e7525d76863be54864237d87b9bb8c244f97d604), [6ca310f](https://github.com/jquery/jquery-ui/commit/6ca310f49a010dc0c650da155dab378544f08363))
+* Added: Ability to cleanly handle ajax load errors. ([#5070](https://bugs.jqueryui.com/ticket/5070))
+* Fixed: Bottom border disappears in IE. ([#5520](https://bugs.jqueryui.com/ticket/5520), [1655079](https://github.com/jquery/jquery-ui/commit/165507925638d0161163d7a712d5e0e63bae93dd))
+* Fixed: CSS Consistency Updates. ([#7146](https://bugs.jqueryui.com/ticket/7146), [e9ae04a](https://github.com/jquery/jquery-ui/commit/e9ae04a394e63e5b012f28fc40a04e71c4f935d9))
+* Fixed: Programmatically loading a tab shouldn't cancel active ajax requests. ([#7204](https://bugs.jqueryui.com/ticket/7204), [03939fc](https://github.com/jquery/jquery-ui/commit/03939fc8c14cd93f081c3195cdcdef6c56a6fccf))
+* Fixed: Don't forcefully remove filter attribute. ([#4621](https://bugs.jqueryui.com/ticket/4621), [c0f5db5](https://github.com/jquery/jquery-ui/commit/c0f5db539403f1b9c5a80db75d127d4465f911df))
+* Fixed: _sanitizeSelector() needs to escape '.'. ([#4681](https://bugs.jqueryui.com/ticket/4681), [5f10fa6](https://github.com/jquery/jquery-ui/commit/5f10fa6511ae1965088926217776692a3f5663cb))
+* Fixed: Panels do not sort when a tab is sorted which can cause a mismatch error when a tab is removed. ([#7698](https://bugs.jqueryui.com/ticket/7698), [c1cda18](https://github.com/jquery/jquery-ui/commit/c1cda180a93a6c0a63cf21a68dacb54233e03d03))
+* Fixed: Selected Tab CSS causes problem when tabs are wrapped onto more than one line. ([#4882](https://bugs.jqueryui.com/ticket/4882), [1bd139a](https://github.com/jquery/jquery-ui/commit/1bd139aaf9e4fc68f8f56ca5aeef5e9681ff177e))
+* Fixed: Detection of local vs. remote tabs. ([#4941](https://bugs.jqueryui.com/ticket/4941), [#4836](https://bugs.jqueryui.com/ticket/4836), [18a3b53](https://github.com/jquery/jquery-ui/commit/18a3b539882835ecc78ed976a7d9e830c128fd96))
+* Fixed: Accessibility. ([#3079](https://bugs.jqueryui.com/ticket/3079), [#7845](https://bugs.jqueryui.com/ticket/7845), [48588d3](https://github.com/jquery/jquery-ui/commit/48588d3bef746129aa66e5fa915da2962a1a4014))
+* Fixed: Use event.preventDefault() instead of returning false. ([#6765](https://bugs.jqueryui.com/ticket/6765), [e104f6c](https://github.com/jquery/jquery-ui/commit/e104f6cfa0324f9625c6258bb87f708d7c35d7bd))
+* Fixed: Adding tab moves targeted panel. ([#4578](https://bugs.jqueryui.com/ticket/4578), [965cb73](https://github.com/jquery/jquery-ui/commit/965cb7359ea704715839e3c171ae751d6a32dde9))
+* Fixed: Sortable demo causes bad index references. ([#4524](https://bugs.jqueryui.com/ticket/4524), [c3d9bd0](https://github.com/jquery/jquery-ui/commit/c3d9bd070051a79e1a288935d420f85278268149))
+* Fixed: Pass original event. ([#5043](https://bugs.jqueryui.com/ticket/5043), [8ef8d2d](https://github.com/jquery/jquery-ui/commit/8ef8d2d8772404ccd3587121de8365d44f791339))
+* Fixed: Incorrect handling for enable and disable method. ([#4386](https://bugs.jqueryui.com/ticket/4386), [710d762](https://github.com/jquery/jquery-ui/commit/710d7620e7f713677a21fc5a8572581250499dd3))
+* Fixed: Tabs doesn't need to have execute permissions. ([#7329](https://bugs.jqueryui.com/ticket/7329), [d522dad](https://github.com/jquery/jquery-ui/commit/d522dad71862c1633bae8281453936dea38c597f))
+* Fixed: Remove queueing logic. ([#7357](https://bugs.jqueryui.com/ticket/7357), [463849e](https://github.com/jquery/jquery-ui/commit/463849e4c35c64634f8f6d6dc876ef6774165542))
+* Fixed: Incomplete unit tests. ([#4051](https://bugs.jqueryui.com/ticket/4051))
+* Fixed: Removing a tab can result in a selected index of -1 if fx option is used. ([#4403](https://bugs.jqueryui.com/ticket/4403))
+* Fixed: Multiple tabs may be in an active state. ([#4549](https://bugs.jqueryui.com/ticket/4549))
+* Fixed: add() creates two tab panels when using a full URL. ([#5069](https://bugs.jqueryui.com/ticket/5069))
+* Fixed: Removing selected tab passes bad index to select callback. ([#5768](https://bugs.jqueryui.com/ticket/5768))
+* Fixed: Load event for Ajax tab can fire for the wrong tab. ([#5954](https://bugs.jqueryui.com/ticket/5954))
+* Fixed: Hover state sticks in Firefox if a field is focused on show. ([#6148](https://bugs.jqueryui.com/ticket/6148))
+* Fixed: Destroy method sometimes throws an error. ([#7199](https://bugs.jqueryui.com/ticket/7199))
+* Fixed: Memory leak. ([#7383](https://bugs.jqueryui.com/ticket/7383))
+* Fixed: Tab retains active state when programmatically moving focus. ([#7520](https://bugs.jqueryui.com/ticket/7520))
+* Fixed: Tabs are stopping event propagation. ([#7708](https://bugs.jqueryui.com/ticket/7708))
+* Fixed: Tabs displayed differently in IE7. ([#8632](https://bugs.jqueryui.com/ticket/8632))
### Tooltip - NEW!
-New tooltip widget. Check out the [tooltip documentation](http://api.jqueryui.com/tooltip/) for more details.
+New tooltip widget. Check out the [tooltip documentation](https://api.jqueryui.com/tooltip/) for more details.
### Spinner - NEW!
-New spinner widget. Check out the [spinner documentation](http://api.jqueryui.com/spinner/) for more details.
+New spinner widget. Check out the [spinner documentation](https://api.jqueryui.com/spinner/) for more details.
## Effects
-* Renamed: All files. ([92fb556](http://github.com/jquery/jquery-ui/commit/92fb5567a25080f2064710fc24f0c6c073424cf3))
-* Moved: Effects to $.effects.effect[]. ([#7103](http://bugs.jqueryui.com/ticket/7103), [d64c9ef](http://github.com/jquery/jquery-ui/commit/d64c9efda53f6e56feacf5f39940cd7719a2cb61))
-* Added: Add the queue functions to $.fn.effect() ([#7318](http://bugs.jqueryui.com/ticket/7318), [1c1a3b1](http://github.com/jquery/jquery-ui/commit/1c1a3b1a361d90a73755fbd038b3cdfb0960c29f))
-* Added: Support for rgba animations. ([#5215](http://bugs.jqueryui.com/ticket/5215), [13d560b](http://github.com/jquery/jquery-ui/commit/13d560b8f05a8eedbf28851824fe639a254f9fd0))
-* Added: Expose getRGB and getColor. ([#3806](http://bugs.jqueryui.com/ticket/3806), [13d560b](http://github.com/jquery/jquery-ui/commit/13d560b8f05a8eedbf28851824fe639a254f9fd0))
-* Added: Option to animate children elements in animateClass. ([#3939](http://bugs.jqueryui.com/ticket/3939), [2dcf723](http://github.com/jquery/jquery-ui/commit/2dcf72315141752ceb3e9813bffd53cf5655ebf9))
-* Fixed: Trying to animate the background color of a document fragment can easily fail. ([#6910](http://bugs.jqueryui.com/ticket/6910), [13d560b](http://github.com/jquery/jquery-ui/commit/13d560b8f05a8eedbf28851824fe639a254f9fd0))
-* Fixed: Animate backgroundColor to 'transparent'. ([#4372](http://bugs.jqueryui.com/ticket/4372), [13d560b](http://github.com/jquery/jquery-ui/commit/13d560b8f05a8eedbf28851824fe639a254f9fd0))
-* Fixed: getColor reports inaccurate color for transparent elements in Webkit. ([#5393](http://bugs.jqueryui.com/ticket/5393), [13d560b](http://github.com/jquery/jquery-ui/commit/13d560b8f05a8eedbf28851824fe639a254f9fd0))
-* Fixed: animateClass doesn't like going from borderStyle: none to borderStyle: *. ([#7109](http://bugs.jqueryui.com/ticket/7109), [c89bbc1](http://github.com/jquery/jquery-ui/commit/c89bbc1839ec7bcbb2834dc2a148bade2a538217))
-* Fixed: animateClass: css and class changes during animation are lost. ([#7106](http://bugs.jqueryui.com/ticket/7106), [e3156ea](http://github.com/jquery/jquery-ui/commit/e3156ea28617e6cc30a3389ee8d3f30514b9d894))
-* Fixed: Hide and Show try to affect hidden and showing elements. ([#6715](http://bugs.jqueryui.com/ticket/6715), [d18cd7e](http://github.com/jquery/jquery-ui/commit/d18cd7ed0f41213aca9f29ae67c360ca6b21abfa))
-* Fixed: 'borderColor' property is buggy. ([#6969](http://bugs.jqueryui.com/ticket/6969), [536d112](http://github.com/jquery/jquery-ui/commit/536d112aa9f49513f73e9d152866a4f67660d183))
-* Fixed: Relative width elements break when wrapped for effects. ([#5245](http://bugs.jqueryui.com/ticket/5245), [2c81518](http://github.com/jquery/jquery-ui/commit/2c8151848d191ad9ba53c0ee86b14aefe4288f67))
-* Fixed: Clear inline styles when stopping a class animation. ([#3928](http://bugs.jqueryui.com/ticket/3928))
-* Fixed: effect('highlight') produces exception in chrome on detached object. ([#5506](http://bugs.jqueryui.com/ticket/5506))
-* Fixed: Improve internal effects API. ([#7060](http://bugs.jqueryui.com/ticket/7060))
-* Fixed: Simplify easing equations to only rely on state. ([#7662](http://bugs.jqueryui.com/ticket/7662))
+* Renamed: All files. ([92fb556](https://github.com/jquery/jquery-ui/commit/92fb5567a25080f2064710fc24f0c6c073424cf3))
+* Moved: Effects to $.effects.effect[]. ([#7103](https://bugs.jqueryui.com/ticket/7103), [d64c9ef](https://github.com/jquery/jquery-ui/commit/d64c9efda53f6e56feacf5f39940cd7719a2cb61))
+* Added: Add the queue functions to $.fn.effect() ([#7318](https://bugs.jqueryui.com/ticket/7318), [1c1a3b1](https://github.com/jquery/jquery-ui/commit/1c1a3b1a361d90a73755fbd038b3cdfb0960c29f))
+* Added: Support for rgba animations. ([#5215](https://bugs.jqueryui.com/ticket/5215), [13d560b](https://github.com/jquery/jquery-ui/commit/13d560b8f05a8eedbf28851824fe639a254f9fd0))
+* Added: Expose getRGB and getColor. ([#3806](https://bugs.jqueryui.com/ticket/3806), [13d560b](https://github.com/jquery/jquery-ui/commit/13d560b8f05a8eedbf28851824fe639a254f9fd0))
+* Added: Option to animate children elements in animateClass. ([#3939](https://bugs.jqueryui.com/ticket/3939), [2dcf723](https://github.com/jquery/jquery-ui/commit/2dcf72315141752ceb3e9813bffd53cf5655ebf9))
+* Fixed: Trying to animate the background color of a document fragment can easily fail. ([#6910](https://bugs.jqueryui.com/ticket/6910), [13d560b](https://github.com/jquery/jquery-ui/commit/13d560b8f05a8eedbf28851824fe639a254f9fd0))
+* Fixed: Animate backgroundColor to 'transparent'. ([#4372](https://bugs.jqueryui.com/ticket/4372), [13d560b](https://github.com/jquery/jquery-ui/commit/13d560b8f05a8eedbf28851824fe639a254f9fd0))
+* Fixed: getColor reports inaccurate color for transparent elements in Webkit. ([#5393](https://bugs.jqueryui.com/ticket/5393), [13d560b](https://github.com/jquery/jquery-ui/commit/13d560b8f05a8eedbf28851824fe639a254f9fd0))
+* Fixed: animateClass doesn't like going from borderStyle: none to borderStyle: *. ([#7109](https://bugs.jqueryui.com/ticket/7109), [c89bbc1](https://github.com/jquery/jquery-ui/commit/c89bbc1839ec7bcbb2834dc2a148bade2a538217))
+* Fixed: animateClass: css and class changes during animation are lost. ([#7106](https://bugs.jqueryui.com/ticket/7106), [e3156ea](https://github.com/jquery/jquery-ui/commit/e3156ea28617e6cc30a3389ee8d3f30514b9d894))
+* Fixed: Hide and Show try to affect hidden and showing elements. ([#6715](https://bugs.jqueryui.com/ticket/6715), [d18cd7e](https://github.com/jquery/jquery-ui/commit/d18cd7ed0f41213aca9f29ae67c360ca6b21abfa))
+* Fixed: 'borderColor' property is buggy. ([#6969](https://bugs.jqueryui.com/ticket/6969), [536d112](https://github.com/jquery/jquery-ui/commit/536d112aa9f49513f73e9d152866a4f67660d183))
+* Fixed: Relative width elements break when wrapped for effects. ([#5245](https://bugs.jqueryui.com/ticket/5245), [2c81518](https://github.com/jquery/jquery-ui/commit/2c8151848d191ad9ba53c0ee86b14aefe4288f67))
+* Fixed: Clear inline styles when stopping a class animation. ([#3928](https://bugs.jqueryui.com/ticket/3928))
+* Fixed: effect('highlight') produces exception in chrome on detached object. ([#5506](https://bugs.jqueryui.com/ticket/5506))
+* Fixed: Improve internal effects API. ([#7060](https://bugs.jqueryui.com/ticket/7060))
+* Fixed: Simplify easing equations to only rely on state. ([#7662](https://bugs.jqueryui.com/ticket/7662))
### Individual effects
-* Added: Invert the blind effect. ([#4880](http://bugs.jqueryui.com/ticket/4880))
-* Fixed: Shake effect: Duration is multiplied based on number of shakes. ([#8531](http://bugs.jqueryui.com/ticket/8531), [dec9c54](http://github.com/jquery/jquery-ui/commit/dec9c54632be191947c310b402810cf6f1b4250a))
-* Fixed: Element jumps to wrong position after scale effect with origin: ['middle','center'] parameter. ([#4316](http://bugs.jqueryui.com/ticket/4316), [c1f71f1](http://github.com/jquery/jquery-ui/commit/c1f71f1c2f732e58a8fbca91185a284ea8db6b1b))
-* Fixed: Transfer effect to fixed positioned element. ([#5547](http://bugs.jqueryui.com/ticket/5547), [3e0d3c9](http://github.com/jquery/jquery-ui/commit/3e0d3c9225913db2f5aa8cd48ff29efa95f1feab))
-* Fixed: Explode: explodes from the right instead of from the center. ([#3968](http://bugs.jqueryui.com/ticket/3968), [39dcad6](http://github.com/jquery/jquery-ui/commit/39dcad6e498a4c7b1507f188ea7733ff5ac1eb26))
-* Fixed: effects.scale origin bottom bug. ([#6096](http://bugs.jqueryui.com/ticket/6096), [7d232f7](http://github.com/jquery/jquery-ui/commit/7d232f753428d68ade9b73f091579811cf90eb96))
-* Fixed: Multiple explosions cut short. ([#6022](http://bugs.jqueryui.com/ticket/6022), [4ade64b](http://github.com/jquery/jquery-ui/commit/4ade64b69028178772d0b9c11fbf7165de160972))
-* Fixed: Bounce effect duration is multiplied by the number of bounces. ([#7067](http://bugs.jqueryui.com/ticket/7067), [40ebb0f](http://github.com/jquery/jquery-ui/commit/40ebb0f846ce4152751d963f9fde0a964eabb337))
-* Fixed: position: absolute is lost when .stop() is used with .show('blind'). ([#6245](http://bugs.jqueryui.com/ticket/6245), [129d5c7](http://github.com/jquery/jquery-ui/commit/129d5c75aca94ae636ba6396124c4938e43a50f3))
-* Fixed: Bounce doesn't work when the page is zoomed in. ([#7726](http://bugs.jqueryui.com/ticket/7726))
-* Fixed: Scale effect only animates last image to attribute width/height. ([#8264](http://bugs.jqueryui.com/ticket/8264))
-* Fixed: toggleClass fails in IE8 with a border-width property. ([#8273](http://bugs.jqueryui.com/ticket/8273))
+* Added: Invert the blind effect. ([#4880](https://bugs.jqueryui.com/ticket/4880))
+* Fixed: Shake effect: Duration is multiplied based on number of shakes. ([#8531](https://bugs.jqueryui.com/ticket/8531), [dec9c54](https://github.com/jquery/jquery-ui/commit/dec9c54632be191947c310b402810cf6f1b4250a))
+* Fixed: Element jumps to wrong position after scale effect with origin: ['middle','center'] parameter. ([#4316](https://bugs.jqueryui.com/ticket/4316), [c1f71f1](https://github.com/jquery/jquery-ui/commit/c1f71f1c2f732e58a8fbca91185a284ea8db6b1b))
+* Fixed: Transfer effect to fixed positioned element. ([#5547](https://bugs.jqueryui.com/ticket/5547), [3e0d3c9](https://github.com/jquery/jquery-ui/commit/3e0d3c9225913db2f5aa8cd48ff29efa95f1feab))
+* Fixed: Explode: explodes from the right instead of from the center. ([#3968](https://bugs.jqueryui.com/ticket/3968), [39dcad6](https://github.com/jquery/jquery-ui/commit/39dcad6e498a4c7b1507f188ea7733ff5ac1eb26))
+* Fixed: effects.scale origin bottom bug. ([#6096](https://bugs.jqueryui.com/ticket/6096), [7d232f7](https://github.com/jquery/jquery-ui/commit/7d232f753428d68ade9b73f091579811cf90eb96))
+* Fixed: Multiple explosions cut short. ([#6022](https://bugs.jqueryui.com/ticket/6022), [4ade64b](https://github.com/jquery/jquery-ui/commit/4ade64b69028178772d0b9c11fbf7165de160972))
+* Fixed: Bounce effect duration is multiplied by the number of bounces. ([#7067](https://bugs.jqueryui.com/ticket/7067), [40ebb0f](https://github.com/jquery/jquery-ui/commit/40ebb0f846ce4152751d963f9fde0a964eabb337))
+* Fixed: position: absolute is lost when .stop() is used with .show('blind'). ([#6245](https://bugs.jqueryui.com/ticket/6245), [129d5c7](https://github.com/jquery/jquery-ui/commit/129d5c75aca94ae636ba6396124c4938e43a50f3))
+* Fixed: Bounce doesn't work when the page is zoomed in. ([#7726](https://bugs.jqueryui.com/ticket/7726))
+* Fixed: Scale effect only animates last image to attribute width/height. ([#8264](https://bugs.jqueryui.com/ticket/8264))
+* Fixed: toggleClass fails in IE8 with a border-width property. ([#8273](https://bugs.jqueryui.com/ticket/8273))
## CSS Framework
-* Fixed: ui-icon-radio-on and ui-icon-radio-off reversed. ([#7475](http://bugs.jqueryui.com/ticket/7475), [c66a7b1](http://github.com/jquery/jquery-ui/commit/c66a7b157b1e36c496272eb00444b4d26136c814))
-* Fixed: Use of !important in jquery-ui.css should be avoided. ([#8396](http://bugs.jqueryui.com/ticket/8396), [664777d](http://github.com/jquery/jquery-ui/commit/664777d0aa14381cb5c640be828ca12b9ce64efc))
-* Fixed: .ui-widget :active { outline: none; } causes slowness in FF. ([#6757](http://bugs.jqueryui.com/ticket/6757), [ac0f6de](http://github.com/jquery/jquery-ui/commit/ac0f6de4c830847b26fc59d485013359d8d30afc))
+* Fixed: ui-icon-radio-on and ui-icon-radio-off reversed. ([#7475](https://bugs.jqueryui.com/ticket/7475), [c66a7b1](https://github.com/jquery/jquery-ui/commit/c66a7b157b1e36c496272eb00444b4d26136c814))
+* Fixed: Use of !important in jquery-ui.css should be avoided. ([#8396](https://bugs.jqueryui.com/ticket/8396), [664777d](https://github.com/jquery/jquery-ui/commit/664777d0aa14381cb5c640be828ca12b9ce64efc))
+* Fixed: .ui-widget :active { outline: none; } causes slowness in FF. ([#6757](https://bugs.jqueryui.com/ticket/6757), [ac0f6de](https://github.com/jquery/jquery-ui/commit/ac0f6de4c830847b26fc59d485013359d8d30afc))
## Demos
-* Fixed: Ensure all PHP scripts for demos/tests properly escape/filter input data. ([#5124](http://bugs.jqueryui.com/ticket/5124), [51482a9](http://github.com/jquery/jquery-ui/commit/51482a9d6585246108b696f1875d1b9c4f5e422e))
-* Fixed: Don't filter source, display it all. ([#5511](http://bugs.jqueryui.com/ticket/5511))
-* Fixed: Animated dialog demo doesn't work. ([#7625](http://bugs.jqueryui.com/ticket/7625))
-* Fixed: Accordion hover intent demo doesn't work. ([#8539](http://bugs.jqueryui.com/ticket/8539))
-* Fixed: Scale effect doesn't work properly. ([#8541](http://bugs.jqueryui.com/ticket/8541))
+* Fixed: Ensure all PHP scripts for demos/tests properly escape/filter input data. ([#5124](https://bugs.jqueryui.com/ticket/5124), [51482a9](https://github.com/jquery/jquery-ui/commit/51482a9d6585246108b696f1875d1b9c4f5e422e))
+* Fixed: Don't filter source, display it all. ([#5511](https://bugs.jqueryui.com/ticket/5511))
+* Fixed: Animated dialog demo doesn't work. ([#7625](https://bugs.jqueryui.com/ticket/7625))
+* Fixed: Accordion hover intent demo doesn't work. ([#8539](https://bugs.jqueryui.com/ticket/8539))
+* Fixed: Scale effect doesn't work properly. ([#8541](https://bugs.jqueryui.com/ticket/8541))
## Tests
-* Added: Ability to run tests against minified files via ?min=1. ([dcac8c1](http://github.com/jquery/jquery-ui/commit/dcac8c1f29cd718c949c1b2c48681a90b0f647ed))
-* Added: Ability to run tests suites against different versions of jQuery core. ([d92b61e](http://github.com/jquery/jquery-ui/commit/d92b61e865df5d21360ff26a34ddf793f116393c))
-* Added: Test suites to run individual widget tests against all supported jQuery versions. ([bea74f2](http://github.com/jquery/jquery-ui/commit/bea74f2ae733f0c092a88038c7d054712fbf88ee))
-* Added: Created a composite test suite. ([0290325](http://github.com/jquery/jquery-ui/commit/02903259e1f6afee1b13d6431900610c70fb03b1))
-* Added: Enable QUnit.config.requireExpects. ([5ae668f](http://github.com/jquery/jquery-ui/commit/5ae668fdb61dd5e516dc599166a31fd46a916bfd))
-* Fixed: Use #qunit-fixture instead of deprecated #main. ([#7031](http://bugs.jqueryui.com/ticket/7031), [c37637e](http://github.com/jquery/jquery-ui/commit/c37637ee99ed737d2f81b58cb4d307fc01791319))
+* Added: Ability to run tests against minified files via ?min=1. ([dcac8c1](https://github.com/jquery/jquery-ui/commit/dcac8c1f29cd718c949c1b2c48681a90b0f647ed))
+* Added: Ability to run tests suites against different versions of jQuery core. ([d92b61e](https://github.com/jquery/jquery-ui/commit/d92b61e865df5d21360ff26a34ddf793f116393c))
+* Added: Test suites to run individual widget tests against all supported jQuery versions. ([bea74f2](https://github.com/jquery/jquery-ui/commit/bea74f2ae733f0c092a88038c7d054712fbf88ee))
+* Added: Created a composite test suite. ([0290325](https://github.com/jquery/jquery-ui/commit/02903259e1f6afee1b13d6431900610c70fb03b1))
+* Added: Enable QUnit.config.requireExpects. ([5ae668f](https://github.com/jquery/jquery-ui/commit/5ae668fdb61dd5e516dc599166a31fd46a916bfd))
+* Fixed: Use #qunit-fixture instead of deprecated #main. ([#7031](https://bugs.jqueryui.com/ticket/7031), [c37637e](https://github.com/jquery/jquery-ui/commit/c37637ee99ed737d2f81b58cb4d307fc01791319))
## Website
-* Fixed: Use H1 tags for page headers to improve SEO. ([#4810](http://bugs.jqueryui.com/ticket/4810))
-* Fixed: Sidebar doesn't properly handle large text. ([#4912](http://bugs.jqueryui.com/ticket/4912))
-* Fixed: Get rid of redirects to improve performance. ([#5653](http://bugs.jqueryui.com/ticket/5653))
-* Fixed: Changelog documentation is hard to find. ([#6057](http://bugs.jqueryui.com/ticket/6057))
-* Fixed: Supported browsers are out of sync with jQuery core. ([#8169](http://bugs.jqueryui.com/ticket/8169))
-* Fixed: No charset is content-type headers. ([#8387](http://bugs.jqueryui.com/ticket/8387))
+* Fixed: Use H1 tags for page headers to improve SEO. ([#4810](https://bugs.jqueryui.com/ticket/4810))
+* Fixed: Sidebar doesn't properly handle large text. ([#4912](https://bugs.jqueryui.com/ticket/4912))
+* Fixed: Get rid of redirects to improve performance. ([#5653](https://bugs.jqueryui.com/ticket/5653))
+* Fixed: Changelog documentation is hard to find. ([#6057](https://bugs.jqueryui.com/ticket/6057))
+* Fixed: Supported browsers are out of sync with jQuery core. ([#8169](https://bugs.jqueryui.com/ticket/8169))
+* Fixed: No charset is content-type headers. ([#8387](https://bugs.jqueryui.com/ticket/8387))
### Documentation
-* Added: Documentation for jquery.ui.core.js methods. ([#4719](http://bugs.jqueryui.com/ticket/4719))
-* Added: Documentation for easing equations. ([#5402](http://bugs.jqueryui.com/ticket/5402))
-* Added: Documentation for effects. ([#7368](http://bugs.jqueryui.com/ticket/7368))
-* Fixed: Alphabetize all options, events, and methods. ([#5150](http://bugs.jqueryui.com/ticket/5150))
-* Fixed: List out ui properties for all events. ([#5807](http://bugs.jqueryui.com/ticket/8541))
-* Fixed: Document when happens with properties that can't be animated. ([#6974](http://bugs.jqueryui.com/ticket/6974))
-* Fixed: Add note that widgets require functional CSS. ([#7345](http://bugs.jqueryui.com/ticket/7345))
-* Fixed: Incorrect types listed for dialog's show option. ([#7421](http://bugs.jqueryui.com/ticket/7421))
-* Fixed: toggleClass documentation missing switch parameter. ([#8049](http://bugs.jqueryui.com/ticket/8049))
-* Fixed: Grammar in sortable documentation. ([#8404](http://bugs.jqueryui.com/ticket/8404))
+* Added: Documentation for jquery.ui.core.js methods. ([#4719](https://bugs.jqueryui.com/ticket/4719))
+* Added: Documentation for easing equations. ([#5402](https://bugs.jqueryui.com/ticket/5402))
+* Added: Documentation for effects. ([#7368](https://bugs.jqueryui.com/ticket/7368))
+* Fixed: Alphabetize all options, events, and methods. ([#5150](https://bugs.jqueryui.com/ticket/5150))
+* Fixed: List out ui properties for all events. ([#5807](https://bugs.jqueryui.com/ticket/8541))
+* Fixed: Document when happens with properties that can't be animated. ([#6974](https://bugs.jqueryui.com/ticket/6974))
+* Fixed: Add note that widgets require functional CSS. ([#7345](https://bugs.jqueryui.com/ticket/7345))
+* Fixed: Incorrect types listed for dialog's show option. ([#7421](https://bugs.jqueryui.com/ticket/7421))
+* Fixed: toggleClass documentation missing switch parameter. ([#8049](https://bugs.jqueryui.com/ticket/8049))
+* Fixed: Grammar in sortable documentation. ([#8404](https://bugs.jqueryui.com/ticket/8404))
### Download Builder
-* Added: List of selected components in header comment. ([#5441](http://bugs.jqueryui.com/ticket/5441))
-* Fixed: Download doesn't include index.html if only UI Core is selected. ([#4811](http://bugs.jqueryui.com/ticket/4811))
-* Fixed: Stylesheet is not included when no theme is selected. ([#6119](http://bugs.jqueryui.com/ticket/6119))
-* Fixed: Buttons are not initialized in the generated index.html. ([#8296](http://bugs.jqueryui.com/ticket/8296))
+* Added: List of selected components in header comment. ([#5441](https://bugs.jqueryui.com/ticket/5441))
+* Fixed: Download doesn't include index.html if only UI Core is selected. ([#4811](https://bugs.jqueryui.com/ticket/4811))
+* Fixed: Stylesheet is not included when no theme is selected. ([#6119](https://bugs.jqueryui.com/ticket/6119))
+* Fixed: Buttons are not initialized in the generated index.html. ([#8296](https://bugs.jqueryui.com/ticket/8296))
### ThemeRoller
-* Fixed: phpThumb error with shorthand hex colors. ([#4600](http://bugs.jqueryui.com/ticket/4600))
-* Fixed: Move ThemeRoller permalink to top of file. ([#6785](http://bugs.jqueryui.com/ticket/6785))
-* Fixed: XSS vulnerability. ([#8518](http://bugs.jqueryui.com/ticket/8518))
-* Fixed: ThemeRoller doesn't work properly in IE7. ([#8550](http://bugs.jqueryui.com/ticket/8550))
-* Fixed: Spaces in font names are escaped with slashes. ([#8612](http://bugs.jqueryui.com/ticket/8612))
+* Fixed: phpThumb error with shorthand hex colors. ([#4600](https://bugs.jqueryui.com/ticket/4600))
+* Fixed: Move ThemeRoller permalink to top of file. ([#6785](https://bugs.jqueryui.com/ticket/6785))
+* Fixed: XSS vulnerability. ([#8518](https://bugs.jqueryui.com/ticket/8518))
+* Fixed: ThemeRoller doesn't work properly in IE7. ([#8550](https://bugs.jqueryui.com/ticket/8550))
+* Fixed: Spaces in font names are escaped with slashes. ([#8612](https://bugs.jqueryui.com/ticket/8612))
diff --git a/page/changelog/1.9.1.md b/page/changelog/1.9.1.md
new file mode 100644
index 0000000..461c31b
--- /dev/null
+++ b/page/changelog/1.9.1.md
@@ -0,0 +1,104 @@
+
+
+Released on October 25, 2012
+
+## Build
+
+* Fixed: .jshintrc files not copied to dist. ([#8687](https://bugs.jqueryui.com/ticket/8687), [390510c](https://github.com/jquery/jquery-ui/commit/390510c7059d98d68cfe082530051c476ee08be4))
+
+## Core & Utilities
+
+### UI Core
+
+* Fixed: :focusable pseudo-selector does not find elements if parent has 0x0 dimension. ([#8643](https://bugs.jqueryui.com/ticket/8643), [86a958d](https://github.com/jquery/jquery-ui/commit/86a958d3aa04a5928484d16b27a4d3eea39142e4))
+
+### Widget Factory
+
+* Fixed: Destroy only when element is the actual target. ([#8652](https://bugs.jqueryui.com/ticket/8652), [8bb05d2](https://github.com/jquery/jquery-ui/commit/8bb05d23e2c49ecbe2f83a3552efb0a93c48bb85))
+* Fixed: this._on delegates using instance.widget() instead of passed element ([#8658](https://bugs.jqueryui.com/ticket/8658), [721a4b4](https://github.com/jquery/jquery-ui/commit/721a4b4ae027b140ca280bbc8fb8ed334081b184))
+* Fixed: widgetEventPrefix is lost when extending existing widget. ([#8724](https://bugs.jqueryui.com/ticket/8724), [848ab48](https://github.com/jquery/jquery-ui/commit/848ab485839b6dd26f2b6c6680141d95cab32ceb))
+
+## Interactions
+
+### Draggable
+
+* Fixed: Dragging into nested sortables causes duplicated placeholders. ([#7777](https://bugs.jqueryui.com/ticket/7777), [20e6064](https://github.com/jquery/jquery-ui/commit/20e6064711abca6f540e18ec9feca8ece3720324))
+
+### Resizable
+
+* Fixed: Use .insertAfter() instead of .after() to avoid recursively destroying. ([#8662](https://bugs.jqueryui.com/ticket/8662), [025266e](https://github.com/jquery/jquery-ui/commit/025266e00270d155f45550b6838ddd6f4a44470b))
+* Fixed: Passing an object as ui.resizable handles parameter does not work. ([#8713](https://bugs.jqueryui.com/ticket/8713), [9b90887](https://github.com/jquery/jquery-ui/commit/9b908878ae3a9c0fbbd9958b579f223a648c5c69), [5e0a2ca](https://github.com/jquery/jquery-ui/commit/5e0a2ca1e502c482e3e281d07a37558b75ce3308))
+
+### Sortable
+
+* Fixed: Can't drag an item out of an inner sortable; Hard to put an item between two inner sortables. ([#8572](https://bugs.jqueryui.com/ticket/8572), [#8573](https://bugs.jqueryui.com/ticket/8573), [#8574](https://bugs.jqueryui.com/ticket/8574), [bae06d2](https://github.com/jquery/jquery-ui/commit/bae06d2b1ef6bbc946dce9fae91f68cc41abccda))
+* Fixed: Out of range problem in when dragging a nested sortable. ([#8571](https://bugs.jqueryui.com/ticket/8571), [77a4aaf](https://github.com/jquery/jquery-ui/commit/77a4aaf47abe08f11eb4e0eabdb2a1c026c0f221))
+
+## Widgets
+
+### Accordion
+
+* Fixed: Multiple collapsible Accordions won't work together. ([#8696](https://bugs.jqueryui.com/ticket/8696), [f4b3cd5](https://github.com/jquery/jquery-ui/commit/f4b3cd527116b25d4d6f44c2df0f2c472b961e6a))
+* Fixed: active: null allows panels to be collapsible. ([#8694](https://bugs.jqueryui.com/ticket/8694), [c2802d7](https://github.com/jquery/jquery-ui/commit/c2802d7aa05e6dc7731806a35d9f0057405a22c7), [eb392b3](https://github.com/jquery/jquery-ui/commit/eb392b30359e334a1777ed3a8bc1237ce09528a5))
+
+### Autocomplete
+
+* Fixed: Initial position of autocomplete is incorrect. ([#8656](https://bugs.jqueryui.com/ticket/8656), [1ee090e](https://github.com/jquery/jquery-ui/commit/1ee090ea9e03c800a764d992506869384409bdb6))
+
+### Button
+
+* Fixed: Anchor tags cannot be disabled within buttonset. ([#8237](https://bugs.jqueryui.com/ticket/8237), [5e24a1c](https://github.com/jquery/jquery-ui/commit/5e24a1ce4b337830b37511305a6ddefe797fd40c))
+
+### Datepicker
+
+* Fixed: Date range demo bug when clearing date. ([#5473](https://bugs.jqueryui.com/ticket/5473), [a50516f](https://github.com/jquery/jquery-ui/commit/a50516f77e82206f2d1f4188c9f5a242442ace09))
+
+### Dialog
+
+* Fixed: Escape closes incorrect dialog. ([#8063](https://bugs.jqueryui.com/ticket/8063), [1a69667](https://github.com/jquery/jquery-ui/commit/1a696678878f48748912b4c9d5df6da91c760b98))
+* Fixed: Position with pixels in array doesn't work with back compat disabled. ([#8675](https://bugs.jqueryui.com/ticket/8675), [11effcb](https://github.com/jquery/jquery-ui/commit/11effcbd35c7a0b36af2a710b385d741f5849cbf))
+* Fixed: jQuery dialog with hide options does not trigger close event. ([#8684](https://bugs.jqueryui.com/ticket/8684), [35dc930](https://github.com/jquery/jquery-ui/commit/35dc9307fc2ce5d2016e8848fdc578829867f97e))
+* Fixed: jQuery 1.9.0 dialog on a XHTML page is broken if buttons are defined ([#8639](https://bugs.jqueryui.com/ticket/8639), [1e6e4ce](https://github.com/jquery/jquery-ui/commit/1e6e4ce4dcd9ac885a7b4088898f61f4930e63a3))
+* Fixed: Escape closes incorrect dialog. ([#7737](https://bugs.jqueryui.com/ticket/7737), [1a69667](https://github.com/jquery/jquery-ui/commit/1a696678878f48748912b4c9d5df6da91c760b98))
+
+### Slider
+
+* Fixed: Slider with range doesn't work if values are not set. ([#7922](https://bugs.jqueryui.com/ticket/7922), [dda1925](https://github.com/jquery/jquery-ui/commit/dda1925d0f8d19b4baffa20259674dcef85e8bab))
+* Fixed: Setting min/max options does not update view. ([#7477](https://bugs.jqueryui.com/ticket/7477), [f37008e](https://github.com/jquery/jquery-ui/commit/f37008eeb11eb12571cb65b1010a7e5d367064ac))
+
+### Spinner
+
+* Fixed: Spinner input has no background ([#8654](https://bugs.jqueryui.com/ticket/8654), [112185e](https://github.com/jquery/jquery-ui/commit/112185ec8ddb7f0849fa40e7b1409e28153555f8))
+* Fixed: Spinner buttons displayed on top of Datepicker. ([#8655](https://bugs.jqueryui.com/ticket/8655), [ac43938](https://github.com/jquery/jquery-ui/commit/ac43938c8c1c908546cdb967dce11806bf2b4197))
+
+### Tabs
+
+* Fixed: wrong default active li if ul contains extraneous elements. ([#8568](https://bugs.jqueryui.com/ticket/8568), [fa62f21](https://github.com/jquery/jquery-ui/commit/fa62f21e5ad09e5368efc3079859730e23a7123b))
+* Fixed: Tabs are not working inside iframe in IE6/7. ([#8653](https://bugs.jqueryui.com/ticket/8653), [8ce3519](https://github.com/jquery/jquery-ui/commit/8ce35198daf261370e2962f4c429bf4fa998b2df))
+* Fixed: Set initial active tab from location hash for ajax tabs. ([#8660](https://bugs.jqueryui.com/ticket/8660), [94221c4](https://github.com/jquery/jquery-ui/commit/94221c4e5b11496ef927889e1541d84b5746fb31))
+
+### Tooltip
+
+* Fixed: Tooltip doesn't hide on disabled anchor element [IE only]. ([#8661](https://bugs.jqueryui.com/ticket/8661), [bd3a348](https://github.com/jquery/jquery-ui/commit/bd3a348776bf50da53d17f1574efd5538ce9de4f))
+* Fixed: Delayed tooltips set to track should reposition when being shown for the first time. ([#8644](https://bugs.jqueryui.com/ticket/8644), [0b3e59f](https://github.com/jquery/jquery-ui/commit/0b3e59f149054122d8948c29baa4bb174006d75e))
+* Fixed: Overlapping tooltipped elements shows native tooltip for one of the elements ([#8700](https://bugs.jqueryui.com/ticket/8700), [77a55f1](https://github.com/jquery/jquery-ui/commit/77a55f1291861b87d30011ac5fd948f6b38d2c60))
+* Fixed: Moving focus on click of a tooltipped element shows native tooltip in IE/Firefox on Windows ([#8699](https://bugs.jqueryui.com/ticket/8699), [6b48ef5](https://github.com/jquery/jquery-ui/commit/6b48ef5eca67f389d7a58f3c8a263ceb82c8becb))
+* Fixed: Tooltip flickers when too long. ([#8718](https://bugs.jqueryui.com/ticket/8718), [7af1ec7](https://github.com/jquery/jquery-ui/commit/7af1ec727bcca8367e804cea77b9dd238b1c0d69))
+* Fixed: Disabled tooltips on initialization. ([#8712](https://bugs.jqueryui.com/ticket/8712), [ba752cf](https://github.com/jquery/jquery-ui/commit/ba752cf7eda841ded93688ab3167b5515fa1660c))
+* Fixed: Delegated tooltips don't close when the tooltipped element is removed ([#8646](https://bugs.jqueryui.com/ticket/8646), [3b2d1e7](https://github.com/jquery/jquery-ui/commit/3b2d1e7736be99671af70aa3b775d67b917517e5))
+* Fixed: Remains after close of datepicker ([#8726](https://bugs.jqueryui.com/ticket/8726), [6b48ef5](https://github.com/jquery/jquery-ui/commit/6b48ef5eca67f389d7a58f3c8a263ceb82c8becb))
+
+## Effects
+
+* Fixed: null reference when using effects. ([#8670](https://bugs.jqueryui.com/ticket/8670), [8b76684](https://github.com/jquery/jquery-ui/commit/8b76684a92d7340175284bb369426f0164673b0a))
+
+## CSS Framework
+
+* Fixed: Primary icon "enabled" when button is disabled. ([#6059](https://bugs.jqueryui.com/ticket/6059), [fe1ecf9](https://github.com/jquery/jquery-ui/commit/fe1ecf97e01f6b9e6041ae324deafb69063d1c9c))
+* Fixed: Accordion Collapsed Color Issue. ([#7648](https://bugs.jqueryui.com/ticket/7648), [cb57f22](https://github.com/jquery/jquery-ui/commit/cb57f223e0390266de5cad356477178e9112df41))
+
+## Demos
+
+* Fixed: Incorrect titles. ([7756834](https://github.com/jquery/jquery-ui/commit/77568347cf0a063ee905364dbe32268ab80d6edd))
diff --git a/page/changelog/1.9.2.md b/page/changelog/1.9.2.md
new file mode 100644
index 0000000..3cfd441
--- /dev/null
+++ b/page/changelog/1.9.2.md
@@ -0,0 +1,68 @@
+
+
+Released on November 23, 2012
+
+## Core & Utilities
+
+### UI Core
+
+* Moved old jQuery support code to the bottom (above deprecated). ([177d0f2](https://github.com/jquery/jquery-ui/commit/177d0f2746c6aceb4323a1e11b1a4d0aeb46a6b7))
+* Patch over broken .removeData() in jQuery 1.6.1 + 1.6.2. ([310dff1](https://github.com/jquery/jquery-ui/commit/310dff10eab98f6649eac6a5aed05b43c7238393))
+
+### Widget Factory
+
+* Fixed: Ability to use _on() even when disabled. ([#8800](https://bugs.jqueryui.com/ticket/8800), [f8c154b](https://github.com/jquery/jquery-ui/commit/f8c154b4d2900d0b801af7c6576401cc962057b8))
+* Fixed: Bridge fails if widgetFullName is not supplied. ([#8775](https://bugs.jqueryui.com/ticket/8775), [8f098d8](https://github.com/jquery/jquery-ui/commit/8f098d88061adbdc2ec3c7e849dffc13fcf3f6ef))
+* Fixed: widgetEventPrefix is incorrect when inheriting with jQuery UI 1.9.1. ([#8805](https://bugs.jqueryui.com/ticket/8805), [e27195b](https://github.com/jquery/jquery-ui/commit/e27195ba443fd18e9a791fc926f226e5fc29f321))
+* Fixed: ui-state-disabled blocks destroy to be triggered on remove. ([#8769](https://bugs.jqueryui.com/ticket/8769), [0ad6d7a](https://github.com/jquery/jquery-ui/commit/0ad6d7a4a9f8a96b478c527f7afc8c33439e0426))
+
+## Widgets
+
+### Accordion
+
+* Use .css() to clear the height, instead of .height(). ([3175d7d](https://github.com/jquery/jquery-ui/commit/3175d7d1c271298351a562b45ed9357d4c3c118e))
+
+### Autocomplete
+
+* Fixed: Autocomplete dropdown positioned incorrectly in IE. ([#8749](https://bugs.jqueryui.com/ticket/8749), [8f0daea](https://github.com/jquery/jquery-ui/commit/8f0daea9eb0b5e6feb31b1e69878919bce78cef1))
+
+### Button
+
+* Fixed: Refresh does not re-enable disabled button. ([#8828](https://bugs.jqueryui.com/ticket/8828), [8def77c](https://github.com/jquery/jquery-ui/commit/8def77cb5cfefb733874d15a2294f02fc5ae78ae))
+* Fixed: Button doesn't remove hover state if they are disabled ([#5295](https://bugs.jqueryui.com/ticket/5295), [85b5c5b](https://github.com/jquery/jquery-ui/commit/85b5c5b5586af541291d52e5c52b9774e4ec2a22))
+
+### Datepicker
+
+* Fixed: Faroese locale has incorrect firstDay. ([#8815](https://bugs.jqueryui.com/ticket/8815), [a1f629f](https://github.com/jquery/jquery-ui/commit/a1f629f3e8ff838dcc17497cc86702040ca57ce1))
+
+### Dialog
+
+* Don't use .attr( props, true ). ([ccb741b](https://github.com/jquery/jquery-ui/commit/ccb741bd0ca4f2309f4cef7e6d05ff72ff37a342))
+* Fixed: dialog with position:fixed goes offscreen when opening after scrolling down since v 1.9.0. ([#8741](https://bugs.jqueryui.com/ticket/8741), [78ad8e4](https://github.com/jquery/jquery-ui/commit/78ad8e4891a612ed4060553274f1686b2a16dd5c))
+* Fixed: Internal autocomplete causes scroll bars. ([#8793](https://bugs.jqueryui.com/ticket/8793), [db1a622](https://github.com/jquery/jquery-ui/commit/db1a622900250eef3be2dff23d17a00dbc15a1d3))
+
+### Menu
+
+* Fixed: refresh() doesn't refresh existing submenus. ([#8773](https://bugs.jqueryui.com/ticket/8773), [9e0071f](https://github.com/jquery/jquery-ui/commit/9e0071fea411902f6daee04bd6e9f0ca83dc5296))
+
+### Tabs
+
+* Fixed: Tabs fail in Safari 5.1 when window.location contains a space. ([#8777](https://bugs.jqueryui.com/ticket/8777), [cdccd99](https://github.com/jquery/jquery-ui/commit/cdccd9956a7d524700cee2d8aa7101ac645eadc9))
+* Fixed: 'display: none;' attribute is not removed from tabs when destroy is called. ([#8795](https://bugs.jqueryui.com/ticket/8795), [41ec411](https://github.com/jquery/jquery-ui/commit/41ec41126dba9c2dd50ba0936e74237519bd92df))
+* Fixed: select event not triggering when collapsible:true. ([#8813](https://bugs.jqueryui.com/ticket/8813), [d7ee956](https://github.com/jquery/jquery-ui/commit/d7ee9569e18ac46ad3f0a23e790e48d3ee5a44c4))
+
+### Tooltip
+
+* Fixed: Using the track option within dialogs creates JS errors. ([#8747](https://bugs.jqueryui.com/ticket/8747), [241c100](https://github.com/jquery/jquery-ui/commit/241c10044d8dadf186a8c29113a954580a44dec8), [25a1de4](https://github.com/jquery/jquery-ui/commit/25a1de434377600898a325ec3001dfb654b94944))
+* Fixed: Does not hide consistently with dynamically loaded content. ([#8740](https://bugs.jqueryui.com/ticket/8740), [f4ce4d3](https://github.com/jquery/jquery-ui/commit/f4ce4d309c6384ccda68065bbbee5a4404385503))
+* Fixed: Tooltip is shown, but not hidden if element has class=ui-state-disabled. ([#8758](https://bugs.jqueryui.com/ticket/8758), [b5cf5b6](https://github.com/jquery/jquery-ui/commit/b5cf5b6ad88321eb17cd4a061430db9057eea96f))
+* Fixed: Default positioning on large items off. ([#8739](https://bugs.jqueryui.com/ticket/8739), [fbc0e6a](https://github.com/jquery/jquery-ui/commit/fbc0e6afe6cb277f7e8b91817484cdcd002afc32))
+* Fixed: tracking fails on nested elements. ([#8799](https://bugs.jqueryui.com/ticket/8799), [0be0c26](https://github.com/jquery/jquery-ui/commit/0be0c2603c8289027ce93a1daa38c8599c639b54))
+* Fixed: Tooltip shows incorrect message in chrome if there is input with name='title' in a form. ([#8742](https://bugs.jqueryui.com/ticket/8742), [48398bc](https://github.com/jquery/jquery-ui/commit/48398bc58c05d82232a0198f968794443414f231))
+* Use ui-tooltip-open instead of tooltip-open for data key. ([da2fbca](https://github.com/jquery/jquery-ui/commit/da2fbcaeee3ea265eecc49001bc6614bfab06e7d))
+
+## Effects
+
+* Making sure outerHeight and outerWidth make it through to the .size() implementation in all cases - Fixes IE8 effects failure ([188259e](https://github.com/jquery/jquery-ui/commit/188259eef6461604c86e38d06ed60595882a2437))
diff --git a/page/checkboxradio.html b/page/checkboxradio.html
new file mode 100644
index 0000000..5e1edc7
--- /dev/null
+++ b/page/checkboxradio.html
@@ -0,0 +1,13 @@
+
+
+Enhances standard checkbox and radio input element to themeable buttons with appropriate hover and active styles.
+
+
+
+Want to learn more about the checkboxradio widget? Check out the
+API documentation .
diff --git a/page/controlgroup.html b/page/controlgroup.html
new file mode 100644
index 0000000..22c3a96
--- /dev/null
+++ b/page/controlgroup.html
@@ -0,0 +1,13 @@
+
+
+Groups multiple buttons and other widgets into one visual set.
+
+
+
+Want to learn more about the controlgroup widget? Check out the
+API documentation .
diff --git a/page/datepicker.html b/page/datepicker.html
index e401615..ddcddd4 100644
--- a/page/datepicker.html
+++ b/page/datepicker.html
@@ -5,7 +5,9 @@
}
}
+Select a date from a popup or inline calendar
+
Want to learn more about the datepicker widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/demos.html b/page/demos.html
index 8996111..6124759 100644
--- a/page/demos.html
+++ b/page/demos.html
@@ -5,39 +5,23 @@
jQuery UI offers a combination of interaction, effects, widgets, utilities,
and themes designed to work well together or on their own. Play with the demos,
view the source, build a theme , read the
-API documentation and start using jQuery
+API documentation and start using jQuery
UI today.
Interactions
Interactions add basic mouse-based behaviors to any element. You can create
sortable lists, resizable elements, drag & drop behaviors and more with just
-a few lines or code. Interactions also make great building blocks for more complex
+a few lines of code. Interactions also make great building blocks for more complex
widgets and applications.
-
+
+
Widgets
Widgets are full-featured UI controls that bring the richness of desktop
applications to the Web. All widgets provide a solid core with plenty of extension
points for customizing behavior, as well as full theming support.
-
+
+
Effects
Effects add support for animating colors and class transitions, as well as
@@ -66,7 +50,5 @@
Effects
Utilities
Utilities used by jQuery UI to build interactions and widgets.
-
+
+
diff --git a/page/development.html b/page/development.html
index 1853db8..90f76ae 100644
--- a/page/development.html
+++ b/page/development.html
@@ -1,13 +1,14 @@
Development Status
-The current stable release is 1.9.0. We're currently working on bug fixes,
-API redesigns, and the
-new selectmenu widget . Check out the
-roadmap for more details.
+Check out our
+Roadmap to find out what we're working on.
We're also working on our new sites. All of our sites are on GitHub, with the
repositories named after the respective domain. For example, the repository for
@@ -16,35 +17,35 @@
Development Status
Reporting Bugs
Before filing a bug report, there are a few simple steps you should follow.
-First, search for existing
+First, search for existing
tickets to see if the issue has already been reported. Try a few different
phrases in case someone else described the problem in a slightly different way.
If you don't find an existing ticket, then
-create a new ticket . Make sure
+create a new ticket . Make sure
to provide a clear explanation of the problem, along with a reduced test case
-created in jsFiddle or
-jsbin using the latest version of jQuery UI.
+created in jsFiddle or
+jsbin using the latest version of jQuery UI.
Fixing Bugs
Do you have a bug fix that you'd like to contribute? If this is your first
-contribution, you may want to read aobut
-how to get involved .
+contribution, you may want to read about
+how to get involved .
You should also read our
-bug fixing guide and
-commit message
+ bug fixing guide and
+commit message
style guide . Please make sure you have your proper name and email address
configured in git. You'll also need to fill out a
- Contributor License Agreement
+Contributor License Agreement
so that we can properly track where our source code contributions are coming
from.
Talk to Us
Want to get more involved? Introduce yourself on the
-Developing jQuery UI
+ Developing jQuery UI
forum or join us on IRC in #jqueryui-dev on freenode. Provide feedback on
-our upcoming widgets on the development and
+our upcoming widgets on the development and
planning wiki or help answer questions on the
-Using jQuery UI forum .
+Using jQuery UI forum .
We also have weekly meetings every Wednesday at noon ET in #jquery-meeting on IRC.
diff --git a/page/dialog.html b/page/dialog.html
index 6fcf89d..e4b4e23 100644
--- a/page/dialog.html
+++ b/page/dialog.html
@@ -5,7 +5,9 @@
}
}
+Open content in an interactive overlay.
+
Want to learn more about the dialog widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/download/all.md b/page/download/all.md
new file mode 100644
index 0000000..4bc709b
--- /dev/null
+++ b/page/download/all.md
@@ -0,0 +1,442 @@
+
+
+## 1.14.2
+Released on January 28, 2026
+* [jQuery UI 1.14.2 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.14.2.zip)
+* [jQuery UI 1.14.2 Themes](/resources/download/jquery-ui-themes-1.14.2.zip)
+
+## 1.14.1
+Released on October 30, 2024
+* [jQuery UI 1.14.1 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.14.1.zip)
+* [jQuery UI 1.14.1 Themes](/resources/download/jquery-ui-themes-1.14.1.zip)
+
+## 1.14.0
+Released on August 5, 2024
+* [jQuery UI 1.14.0 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.14.0.zip)
+* [jQuery UI 1.14.0 Themes](/resources/download/jquery-ui-themes-1.14.0.zip)
+
+## 1.14.0-beta.2
+* Released on June 14, 2024
+* [jQuery UI 1.14.0-beta.2 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.14.0-beta.2.zip)
+* [jQuery UI 1.14.0-beta.2 Themes](/resources/download/jquery-ui-themes-1.14.0-beta.2.zip)
+
+## 1.13.3
+* Released on April 26, 2024
+* [jQuery UI 1.13.3 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.13.3.zip)
+* [jQuery UI 1.13.3 Themes](/resources/download/jquery-ui-themes-1.13.3.zip)
+
+## 1.13.2
+* Released on July 14, 2022
+* [jQuery UI 1.13.2 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.13.2.zip)
+* [jQuery UI 1.13.2 Themes](/resources/download/jquery-ui-themes-1.13.2.zip)
+
+## 1.13.1
+* Released on January 20, 2022
+* [jQuery UI 1.13.1 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.13.1.zip)
+* [jQuery UI 1.13.1 Themes](/resources/download/jquery-ui-themes-1.13.1.zip)
+
+## 1.13.0
+* Released on October 7, 2021
+* [jQuery UI 1.13.0 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.13.0.zip)
+* [jQuery UI 1.13.0 Themes](/resources/download/jquery-ui-themes-1.13.0.zip)
+
+## 1.13.0-rc.3
+* Released on September 25, 2021
+* [jQuery UI 1.13.0-rc.3 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.13.0-rc.3.zip)
+* [jQuery UI 1.13.0-rc.3 Themes](/resources/download/jquery-ui-themes-1.13.0-rc.3.zip)
+
+## 1.13.0-rc.2
+* Released on September 3, 2021
+* [jQuery UI 1.13.0-rc.2 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.13.0-rc.2.zip)
+* [jQuery UI 1.13.0-rc.2 Themes](/resources/download/jquery-ui-themes-1.13.0-rc.2.zip)
+
+## 1.12.1
+* Released on September 14, 2016
+* [jQuery UI 1.12.1 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.12.1.zip)
+* [jQuery UI 1.12.1 Themes](/resources/download/jquery-ui-themes-1.12.1.zip)
+
+## 1.12.0
+* Released on July 8, 2016
+* [jQuery UI 1.12.0 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.12.0.zip)
+* [jQuery UI 1.12.0 Themes](/resources/download/jquery-ui-themes-1.12.0.zip)
+
+## 1.12.0-rc.2
+* Released on April 21, 2016
+* [jQuery UI 1.12.0-rc.2 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.12.0-rc.2.zip)
+* [jQuery UI 1.12.0-rc.2 Themes](/resources/download/jquery-ui-themes-1.12.0-rc.2.zip)
+
+## 1.12.0-rc.1
+* Released on Marc 17, 2016
+* [jQuery UI 1.12.0-rc.1 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.12.0-rc.1.zip)
+* [jQuery UI 1.12.0-rc.1 Themes](/resources/download/jquery-ui-themes-1.12.0-rc.1.zip)
+
+## 1.12.0-beta.1
+* Released on December 23, 2015
+* [jQuery UI 1.12.0-beta.1 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.12.0-beta.1.zip)
+* [jQuery UI 1.12.0-beta.1 Themes](/resources/download/jquery-ui-themes-1.12.0-beta.1.zip)
+
+## 1.11.4
+* Released on March 11, 2015
+* [jQuery UI 1.11.4 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.11.4.zip)
+* [jQuery UI 1.11.4 Themes](/resources/download/jquery-ui-themes-1.11.4.zip)
+
+## 1.11.3
+* Released on February 12, 2015
+* [jQuery UI 1.11.3 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.11.3.zip)
+* [jQuery UI 1.11.3 Themes](/resources/download/jquery-ui-themes-1.11.3.zip)
+
+## 1.11.2
+* Released on October 16, 2014
+* [jQuery UI 1.11.2 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.11.2.zip)
+* [jQuery UI 1.11.2 Themes](/resources/download/jquery-ui-themes-1.11.2.zip)
+
+## 1.11.1
+* Released on August 13, 2014
+* [jQuery UI 1.11.1 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.11.1.zip)
+* [jQuery UI 1.11.1 Themes](/resources/download/jquery-ui-themes-1.11.1.zip)
+
+## 1.11.0
+* Released on June 26, 2014
+* [jQuery UI 1.11.0 (concatenated JS and CSS files)](/resources/download/jquery-ui-1.11.0.zip)
+* [jQuery UI 1.11.0 Themes](/resources/download/jquery-ui-themes-1.11.0.zip)
+
+## 1.11.0-beta.2
+* Released on May 23, 2014
+* [jQuery UI 1.11.0-beta.2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.11.0-beta.2.zip)
+
+## 1.11.0-beta.1
+* Released on April 24, 2014
+* [jQuery UI 1.11.0-beta.1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.11.0-beta.1.zip)
+
+## 1.10.4
+* Released on January 17, 2014
+* [jQuery UI 1.10.4 (source, theme, demos, tests)](/resources/download/jquery-ui-1.10.4.zip)
+* [jQuery UI 1.10.4 Themes](/resources/download/jquery-ui-themes-1.10.4.zip)
+
+## 1.10.3
+* Released on May 3, 2013
+* [jQuery UI 1.10.3 (source, theme, demos, tests)](/resources/download/jquery-ui-1.10.3.zip)
+* [jQuery UI 1.10.3 Themes](/resources/download/jquery-ui-themes-1.10.3.zip)
+
+## 1.10.2
+* Released on March 14, 2013
+* [jQuery UI 1.10.2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.10.2.zip)
+* [jQuery UI 1.10.2 Themes](/resources/download/jquery-ui-themes-1.10.2.zip)
+
+## 1.10.1
+* Released on February 15, 2013
+* [jQuery UI 1.10.1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.10.1.zip)
+* [jQuery UI 1.10.1 Themes](/resources/download/jquery-ui-themes-1.10.1.zip)
+
+## 1.10.0
+* Released on January 17, 2013
+* [jQuery UI 1.10.0 (source, theme, demos, tests)](/resources/download/jquery-ui-1.10.0.zip)
+* [jQuery UI 1.10.0 Themes](/resources/download/jquery-ui-themes-1.10.0.zip)
+
+## 1.10.0 RC 1
+* Released on January 9, 2013
+* [jQuery UI 1.10.0-rc.1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.10.0-rc.1.zip)
+
+## 1.10.0 Beta 1
+* Released on December 13, 2012
+* [jQuery UI 1.10.0-beta.1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.10.0-beta.1.zip)
+
+## 1.9.2
+* Released on November 23, 2012
+* [jQuery UI 1.9.2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9.2.zip)
+* [jQuery UI 1.9.2 Themes](/resources/download/jquery-ui-themes-1.9.2.zip)
+
+## 1.9.1
+* Released on October 25, 2012
+* [jQuery UI 1.9.1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9.1.zip)
+* [jQuery UI 1.9.1 Themes](/resources/download/jquery-ui-themes-1.9.1.zip)
+
+## 1.9.0
+* Released on October 5, 2012
+* [jQuery UI 1.9.0 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9.0.zip)
+* [jQuery UI 1.9.0 Themes](/resources/download/jquery-ui-themes-1.9.0.zip)
+
+## 1.9.0 RC 1
+* Released on August 24, 2012
+* [jQuery UI 1.9.0-rc.1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9.0-rc.1.zip)
+
+## 1.9.0 Beta 1
+* Released on June 28, 2012
+* [jQuery UI 1.9.0-beta.1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9.0-beta.1.zip)
+
+## 1.9.0 Milestone 8 - Position
+* Released on May 17, 2012
+* [jQuery UI 1.9.0m8 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9.0m8.zip)
+
+## 1.9.0 Milestone 7 - Accordion
+* Released on March 28, 2012
+* [jQuery UI 1.9m7 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9m7.zip)
+
+## 1.9.0 Milestone 6 - Spinner 2
+* Released on September 15, 2011
+* [jQuery UI 1.9m6 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9m6.zip)
+
+## 1.9.0 Milestone 5 - Tabs Redesign
+* Released on May 20, 2011
+* [jQuery UI 1.9m5 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9m5.zip)
+
+## 1.9.0 Milestone 4 - Accordion Redesign
+* Released on February 21, 2011
+* [jQuery UI 1.9m4 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9m4.zip)
+
+## 1.9.0 Milestone 3 - Spinner
+* Released on November 19, 2010
+* [jQuery UI 1.9m3 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9m3.zip)
+
+## 1.9.0 Milestone 2 - Menu
+* Released on June 19, 2010
+* [jQuery UI 1.9m2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9m2.zip)
+
+## 1.9.0 Milestone 1 - Tooltip
+* Released on May 7, 2010
+* [jQuery UI 1.9m1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.9m1.zip)
+
+## 1.8.24
+* Released on September 28, 2012
+* [jQuery UI 1.8.24 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.24.zip)
+* [jQuery UI 1.8.24 Themes](/resources/download/jquery-ui-themes-1.8.24.zip)
+
+## 1.8.23
+* Released on August 15, 2012
+* [jQuery UI 1.8.23 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.23.zip)
+* [jQuery UI 1.8.23 Themes](/resources/download/jquery-ui-themes-1.8.23.zip)
+
+## 1.8.22
+* Released on July 24, 2012
+* [jQuery UI 1.8.22 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.22.zip)
+* [jQuery UI 1.8.22 Themes](/resources/download/jquery-ui-themes-1.8.22.zip)
+
+## 1.8.21
+* Released on June 5, 2012
+* [jQuery UI 1.8.21 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.21.zip)
+* [jQuery UI 1.8.21 Themes](/resources/download/jquery-ui-themes-1.8.21.zip)
+
+## 1.8.20
+* Released on April 30, 2012
+* [jQuery UI 1.8.20 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.20.zip)
+* [jQuery UI 1.8.20 Themes](/resources/download/jquery-ui-themes-1.8.20.zip)
+
+## 1.8.19
+* Released on April 16, 2012
+* [jQuery UI 1.8.19 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.19.zip)
+* [jQuery UI 1.8.19 Themes](/resources/download/jquery-ui-themes-1.8.19.zip)
+
+## 1.8.18
+* Released on February 20, 2012
+* [jQuery UI 1.8.18 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.18.zip)
+* [jQuery UI 1.8.18 Themes](/resources/download/jquery-ui-themes-1.8.18.zip)
+
+## 1.8.17
+* Released on November 29, 2011
+* [jQuery UI 1.8.17 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.17.zip)
+* [jQuery UI 1.8.17 Themes](/resources/download/jquery-ui-themes-1.8.17.zip)
+
+## 1.8.16
+* Released on August 15, 2011
+* [jQuery UI 1.8.16 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.16.zip)
+* [jQuery UI 1.8.16 Themes](/resources/download/jquery-ui-themes-1.8.16.zip)
+
+## 1.8.15
+* Released on August 1, 2011
+* [jQuery UI 1.8.15 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.15.zip)
+* [jQuery UI 1.8.15 Themes](/resources/download/jquery-ui-themes-1.8.15.zip)
+
+## 1.8.14
+* Released on June 17, 2011
+* [jQuery UI 1.8.14 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.14.zip)
+* [jQuery UI 1.8.14 Themes](/resources/download/jquery-ui-themes-1.8.14.zip)
+
+## 1.8.13
+* Released on May 12, 2011
+* [jQuery UI 1.8.13 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.13.zip)
+* [jQuery UI 1.8.13 Themes](/resources/download/jquery-ui-themes-1.8.13.zip)
+
+## 1.8.12
+* Released on April 13, 2011
+* [jQuery UI 1.8.12 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.12.zip)
+* [jQuery UI 1.8.12 Themes](/resources/download/jquery-ui-themes-1.8.12.zip)
+
+## 1.8.11
+* Released on March 5, 2011
+* [jQuery UI 1.8.11 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.11.zip)
+* [jQuery UI 1.8.11 Themes](/resources/download/jquery-ui-themes-1.8.11.zip)
+
+## 1.8.10
+* Released on February 22, 2011
+* [jQuery UI 1.8.10 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.10.zip)
+* [jQuery UI 1.8.10 Themes](/resources/download/jquery-ui-themes-1.8.10.zip)
+
+## 1.8.9
+* Released on January 19, 2011
+* [jQuery UI 1.8.9 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.9.zip)
+* [jQuery UI 1.8.9 Themes](/resources/download/jquery-ui-themes-1.8.9.zip)
+
+## 1.8.8
+* Released on January 13, 2011
+* [jQuery UI 1.8.8 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.8.zip)
+* [jQuery UI 1.8.8 Themes](/resources/download/jquery-ui-themes-1.8.8.zip)
+
+## 1.8.7
+* Released on December 8, 2010
+* [jQuery UI 1.8.7 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.7.zip)
+* [jQuery UI 1.8.7 Themes](/resources/download/jquery-ui-themes-1.8.7.zip)
+
+## 1.8.6
+* Released on October 25, 2010
+* [jQuery UI 1.8.6 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.6.zip)
+* [jQuery UI 1.8.6 Themes](/resources/download/jquery-ui-themes-1.8.6.zip)
+
+## 1.8.5
+* Released on September 10, 2010
+* [jQuery UI 1.8.5 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.5.zip)
+* [jQuery UI 1.8.5 Themes](/resources/download/jquery-ui-themes-1.8.5.zip)
+
+## 1.8.4
+* Released on August 5, 2010
+* [jQuery UI 1.8.4 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.4.zip)
+* [jQuery UI 1.8.4 Themes](/resources/download/jquery-ui-themes-1.8.4.zip)
+
+## 1.8.2
+* Released on May 20, 2010
+* [jQuery UI 1.8.2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.2.zip)
+* [jQuery UI 1.8.2 Themes](/resources/download/jquery-ui-themes-1.8.2.zip)
+
+## 1.8.1
+* Released on April 21, 2010
+* [jQuery UI 1.8.1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.1.zip)
+* [jQuery UI 1.8.1 Themes](/resources/download/jquery-ui-themes-1.8.1.zip)
+
+## 1.8
+* Released on March 18, 2010
+* [jQuery UI 1.8 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8.zip)
+* [jQuery UI 1.8 Themes](/resources/download/jquery-ui-themes-1.8.zip)
+
+## 1.8rc3
+* Released on February 25, 2010
+* [jQuery UI 1.8rc3 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8rc3.zip)
+
+## 1.8rc2
+* Released on February 16, 2010
+* [jQuery UI 1.8rc2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8rc2.zip)
+
+## 1.8rc1
+* Released on January 27, 2010
+* [jQuery UI 1.8rc1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8rc1.zip)
+
+## 1.8b1
+* Released on January 20, 2010
+* [jQuery UI 1.8b1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8b1.zip)
+
+## 1.8a2
+* Released on December 29, 2009
+* [jQuery UI 1.8a2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8a2.zip)
+
+## 1.8a1
+* Released on August 12, 2009
+* [jQuery UI 1.8a1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.8a1.zip)
+
+## 1.7.2
+* Released on June 19, 2009
+* [jQuery UI 1.7.2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.7.2.zip)
+* [jQuery UI 1.7.2 Themes](/resources/download/jquery-ui-themes-1.7.2.zip)
+
+## 1.7.1
+* Released on March 18, 2009
+* [jQuery UI 1.7.1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.7.1.zip)
+* [jQuery UI 1.7.1 Themes](/resources/download/jquery-ui-themes-1.7.1.zip)
+
+## 1.7
+* Released on March 3, 2009
+* [jQuery UI 1.7 (source, theme, demos, tests)](/resources/download/jquery-ui-1.7.zip)
+* [jQuery UI 1.7 Themes](/resources/download/jquery-ui-themes-1.7.zip)
+
+## 1.6
+* Released on April 16, 2009
+* [jQuery UI 1.6 (source, theme, demos, tests)](/resources/download/jquery-ui-1.6.zip)
+
+## 1.6rc6
+* Released on January 29, 2009
+* [jQuery UI 1.6rc6 (source, theme, demos, tests)](/resources/download/jquery-ui-1.6rc6.zip)
+
+## 1.6rc5
+* Released on January 15, 2009
+* [jQuery UI 1.6rc5 (source, theme, demos, tests)](/resources/download/jquery-ui-1.6rc5.zip)
+
+## 1.6rc4
+* Released on January 1, 2009
+* [jQuery UI 1.6rc4 (source, theme, demos, tests)](/resources/download/jquery-ui-1.6rc4.zip)
+
+## 1.6rc3
+* Released on December 31, 2008
+* [jQuery UI 1.6rc3 (source, theme, demos, tests)](/resources/download/jquery-ui-1.6rc3.zip)
+
+## 1.6rc2.6
+* Released on March 26, 2009
+* [jQuery UI 1.6rc2.6 (source, theme, demos, tests)](/resources/download/jquery-ui-1.6rc2.6.zip)
+
+## 1.6rc2.5
+* Released on March 11, 2009
+* [jQuery UI 1.6rc2.5 (source, theme, demos, tests)](/resources/download/jquery-ui-1.6rc2.5.zip)
+
+## 1.6rc2
+* Released on September 19, 2008
+* [jQuery UI 1.6rc2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.6rc2.zip)
+
+## 1.6rc1
+* Released on September 12, 2008
+* [jQuery UI 1.6rc1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.6rc1.zip)
+
+## 1.6b
+* Released on August 14, 2008
+* [jQuery UI 1.6b (source, theme, demos, tests)](/resources/download/jquery-ui-1.6b.zip)
+
+## 1.5.3
+* Released on November 28, 2008
+* [jQuery UI 1.5.3 (source, theme, demos, tests)](/resources/download/jquery-ui-1.5.3.zip)
+
+## 1.5.2
+* Released on July 9, 2008
+* [jQuery UI 1.5.2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.5.2.zip)
+
+## 1.5.1
+* Released on June 26, 2008
+* [jQuery UI 1.5.1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.5.1.zip)
+
+## 1.5
+* Released on June 8, 2008
+* [jQuery UI 1.5 (source, theme, demos, tests)](/resources/download/jquery-ui-1.5.zip)
+
+## 1.5rc1
+* Released on June 1, 2008
+* [jQuery UI 1.5rc1 (source, theme, demos, tests)](/resources/download/jquery-ui-1.5rc1.zip)
+
+## 1.5b4
+* Released on May 5, 2008
+* [jQuery UI 1.5b4 (source, theme, demos, tests)](/resources/download/jquery-ui-1.5b4.zip)
+
+## 1.5b3
+* Released on May 5, 2008
+* [jQuery UI 1.5b3 (source, theme, demos, tests)](/resources/download/jquery-ui-1.5b3.zip)
+
+## 1.5b2
+* Released on April 9, 2008
+* [jQuery UI 1.5b2 (source, theme, demos, tests)](/resources/download/jquery-ui-1.5b2.zip)
+
+## 1.5b
+* Released on February 12, 2008
+* [jQuery UI 1.5b (source, theme, demos, tests)](/resources/download/jquery-ui-1.5b.zip)
+
+## 1.5a
+* Released on February 6, 2008
+* [jQuery UI 1.5a (source, theme, demos, tests)](/resources/download/jquery-ui-1.5a.zip)
+
+## 1.0
+* Released on September 16, 2007
+* [jQuery UI 1.0 (source, theme, demos, tests)](/resources/download/jquery-ui-1.0.zip)
diff --git a/page/draggable.html b/page/draggable.html
index 1e1ab3f..003aedf 100644
--- a/page/draggable.html
+++ b/page/draggable.html
@@ -5,7 +5,9 @@
}
}
+Allow elements to be moved using the mouse.
+
Want to learn more about the draggable interaction? Check out the
-API documentation .
+API documentation .
diff --git a/page/droppable.html b/page/droppable.html
index a981a99..06c39a3 100644
--- a/page/droppable.html
+++ b/page/droppable.html
@@ -5,7 +5,9 @@
}
}
+Create targets for draggable elements.
+
Want to learn more about the droppable interaction? Check out the
-API documentation .
+API documentation .
diff --git a/page/easing.html b/page/easing.html
new file mode 100644
index 0000000..1a3fa6e
--- /dev/null
+++ b/page/easing.html
@@ -0,0 +1,13 @@
+
+
+Apply an easing equation to an animation.
+
+
+
+Want to learn more about easings? Check out
+the API documentation .
diff --git a/page/effect.html b/page/effect.html
index 746f8ac..853c83f 100644
--- a/page/effect.html
+++ b/page/effect.html
@@ -5,7 +5,9 @@
}
}
-
+Apply an animation effect to an element.
+
+
Want to learn more about the .effect() method? Check out
-the API documentation .
+the API documentation .
diff --git a/page/hide.html b/page/hide.html
index 239572b..14928f4 100644
--- a/page/hide.html
+++ b/page/hide.html
@@ -5,7 +5,9 @@
}
}
-
+Hide elements using custom effects.
+
+
Want to learn more about the .hide() method? Check out
-the API documentation .
+the API documentation .
diff --git a/page/index.html b/page/index.html
index 8e759d5..7537df4 100644
--- a/page/index.html
+++ b/page/index.html
@@ -5,7 +5,7 @@
]
}
-
+
jQuery UI is a curated set of user interface interactions,
effects, widgets, and themes built on top of the jQuery JavaScript Library.
Whether you're building highly interactive web applications or you just
@@ -13,21 +13,21 @@
choice.
-
+
@@ -35,65 +35,61 @@ Download jQuery UI 1.9.0
Developer Links
-What's New in jQuery UI 1.9?
+What's New in jQuery UI 1.14?
-The menu widget creates nestable menus, great for
-inline menus, popup menus, or as a building block for complex menu systems.
+Compatibility with recent jQuery versions (up to 4.0) : Usage of deprecated jQuery APIs have been removed. jQuery UI 1.14.2 triggers no jQuery Migrate messages except for its initialization one when running its test suite against jQuery 4.0.0 with jQuery Migrate 4.0.2 or jQuery 3.7.1 with jQuery Migrate 3.6.0, i.e. the latest versions at the time of this release. Support for very old jQuery versions has been dropped, except for the latest releases in each major jQuery line. See the changelog of a specific jQuery UI version to see which jQuery versions have been tested with it.
-The spinner widget displays buttons to easily
-input numberic values via the keyboard or mouse. When used in combination
-with Globalize , the
-spinner supports numbers, currencies, and dates in hundreds of locales.
-
-The tooltip widget shows additional information
-for any element on hover or focus, with support for static content and
-remote content loaded via Ajax.
-
-The accordion, autocomplete, and tabs widgets have also received huge
-accessibility improvements. In addition, we've
-
-improved the APIs of several widgets, making them easier to use and
-creating more consistency across plugins.
+Dropped support: IE & Edge Legacy : Only the latest version of Chrome, Firefox, Safari & Edge are officially supported.
Interested in the full details of what changed? Check out the
-changelog and
-upgrade guide .
-
-
+1.14 upgrade guide ,
+1.14.0 changelog ,
+1.14.1 changelog , and
+1.14.2 changelog .
Dive In!
jQuery UI is built for designers and developers alike. We've designed
all of our plugins to get you up and running quickly while being flexible
-enough to evolve with your needs and solve a plethora of use cases. Play
-around with the demos and read through the
-API documentation to get an idea
+enough to evolve with your needs and solve a plethora of use cases. If
+you're new to jQuery UI, check out our
+getting started
+guide and other tutorials .
+Play around with the demos and read through the
+API documentation to get an idea
of what's possible.
Stay informed about what's going on with jQuery UI by subscribing to
-our blog and following us on
+our blog and following us on
Twitter .
diff --git a/page/menu.html b/page/menu.html
index 629ca3c..2b7c61a 100644
--- a/page/menu.html
+++ b/page/menu.html
@@ -5,7 +5,9 @@
}
}
+Themeable menu with mouse and keyboard interactions for navigation.
+
Want to learn more about the menu widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/position.html b/page/position.html
index 06a8e4d..8281dde 100644
--- a/page/position.html
+++ b/page/position.html
@@ -5,7 +5,9 @@
}
}
+Position an element relative to the window, document, another element, or the cursor/mouse.
+
Want to learn more about the .position() method? Check out
-the API documentation .
+the API documentation .
diff --git a/page/progressbar.html b/page/progressbar.html
index c225994..5a861da 100644
--- a/page/progressbar.html
+++ b/page/progressbar.html
@@ -5,7 +5,9 @@
}
}
+Display status of a determinate or indeterminate process.
+
Want to learn more about the progressbar widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/removeClass.html b/page/removeClass.html
index e19e509..b0797e5 100644
--- a/page/removeClass.html
+++ b/page/removeClass.html
@@ -5,7 +5,9 @@
}
}
-
+Removes class(es) from elements while animating all style changes.
+
+
Want to learn more about the .removeClass() method? Check out
-the API documentation .
+the API documentation .
diff --git a/page/resizable.html b/page/resizable.html
index 6fe73ea..2637e76 100644
--- a/page/resizable.html
+++ b/page/resizable.html
@@ -5,7 +5,9 @@
}
}
+Change the size of an element using the mouse.
+
Want to learn more about the resizable interaction? Check out the
-API documentation .
+API documentation .
diff --git a/page/selectable.html b/page/selectable.html
index 1519bda..a47af05 100644
--- a/page/selectable.html
+++ b/page/selectable.html
@@ -5,7 +5,9 @@
}
}
+Use the mouse to select elements, individually or in a group.
+
Want to learn more about the selectable interaction? Check out the
-API documentation .
+API documentation .
diff --git a/page/selectmenu.html b/page/selectmenu.html
new file mode 100644
index 0000000..7ee99c8
--- /dev/null
+++ b/page/selectmenu.html
@@ -0,0 +1,13 @@
+
+
+Duplicates and extends the functionality of a native HTML select element to overcome the limitations of the native control.
+
+
+
+Want to learn more about the selectmenu widget? Check out the
+API documentation .
diff --git a/page/show.html b/page/show.html
index b25cbf7..6862a52 100644
--- a/page/show.html
+++ b/page/show.html
@@ -5,7 +5,9 @@
}
}
-
+Display elements using custom effects.
+
+
Want to learn more about the .show() method? Check out
-the API documentation .
+the API documentation .
diff --git a/page/slider.html b/page/slider.html
index a1cb8a0..1945e50 100644
--- a/page/slider.html
+++ b/page/slider.html
@@ -5,7 +5,9 @@
}
}
+Drag a handle to select a numeric value.
+
Want to learn more about the slider widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/sortable.html b/page/sortable.html
index a2c7a36..3845ca3 100644
--- a/page/sortable.html
+++ b/page/sortable.html
@@ -5,7 +5,9 @@
}
}
+Reorder elements in a list or grid using the mouse.
+
Want to learn more about the sortable interaction? Check out the
-API documentation .
+API documentation .
diff --git a/page/spinner.html b/page/spinner.html
index b110852..48947b4 100644
--- a/page/spinner.html
+++ b/page/spinner.html
@@ -5,7 +5,9 @@
}
}
+Enhance a text input for entering numeric values, with up/down buttons and arrow key handling.
+
Want to learn more about the spinner widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/support.html b/page/support.html
index 05f8056..fdadaa0 100644
--- a/page/support.html
+++ b/page/support.html
@@ -1,63 +1,45 @@
-The jQuery UI community is very active and provides a friendy, helpful
-environment when you need development advice or have ideas on how to improve a
-script. The jQuery UI team encourages everyone to actively participate in the
-development of the library.
-
+The jQuery community provides a friendly, helpful environment to ask for
+development advice.
Community Support
-To get started with jQuery UI, begin with this
-quick start guide to
-using jQuery UI. Browsing the demos and
-documentation is also a good way to
-understand detailed information about each plugin's capabilities. For more help
-and support, try these resources:
-
-Forums
+Browse the demos to get a glimpse of what functionality
+each plugin provides, or read the
+API documentation for all methods,
+effects, widgets, and selectors provided by jQuery UI.
-Using jQuery UI :
-For everyone using jQuery UI, and the best place to ask questions and advice
-regarding the use of all UI components, including Themeroller.
+Matrix chat
-Developing jQuery UI :
-For developers working on building out the jQuery UI library and web sites.
-(Use the Using jQuery UI forum above to discuss how to use jQuery UI.)
+jQuery is on Matrix! The support channel for jQuery is #jquery_jquery:gitter.im .
+You can read along without an account, or join the channel via any Element or Matrix client.
-jQuery Accessibility :
-For anyone that is unable to use the normal forums due to accessibility issues.
+We use the public #jquery_meeting:gitter.im channel to discuss project developments,
+and also hold weekly meetings .
-IRC Chat
-The official IRC support channel is #jquery on irc.freenode.net. For discussions
-about development of jQuery UI, join the #jqueryui-dev channel.
+IRC chat
+There IRC channel for all jQuery projects is #jquery on Libera Chat IRC (Join via webchat ).
Found a bug? Let us know!
+
Please report any issues and enhancements in
-our bug tracking system .
-
-Commercial support
-
-The following companies have made a sponsorship commitment to jQuery UI.
-If you need business-critical support for jQuery or jQuery UI on your project,
-we encourage you to consider the professional services of our corporate sponsors:
-
-appendTo, LLC is a Denver, CO, USA based provider of consulting,
-training and support for jQuery and jQuery UI architecture, world-wide. We
-support the Open-Source Initiative and are the leading international provider of
-font-end web development for jQuery and jQuery UI in the large enterprise technology
-environment. Please visit us at: appendTo.com .
-Contact us at: +1 (877) jQuery-Help or email us at:
-contact@appendTo.com .
-
-
Filament Group Inc. is a Boston-based design firm specializing
-in UI design and front-end development for complex consumer and business
-applications for a wide range of devices — from web and mobile, to kiosk. With a
-focus on web standards, progressive enhancement and accessibility, Filament Group
-brings a unique perspective to it's role as the design team lead for the jQuery UI
-project. For more information, please visit
-www.filamentgroup.com or contact
-hello@filamentgroup.com .
+our bug tracking system .
+
+Archives
+
+
diff --git a/page/switchClass.html b/page/switchClass.html
index 98b099e..8e5bd82 100644
--- a/page/switchClass.html
+++ b/page/switchClass.html
@@ -5,7 +5,9 @@
}
}
-
+Add and remove class(es) to elements while animating all style changes.
+
+
Want to learn more about the .switchClass() method? Check out
-the API documentation .
+the API documentation .
diff --git a/page/tabs.html b/page/tabs.html
index 35d0ecc..9a7dded 100644
--- a/page/tabs.html
+++ b/page/tabs.html
@@ -5,7 +5,9 @@
}
}
+A single content area with multiple panels, each associated with a header in a list.
+
Want to learn more about the tabs widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/toggle.html b/page/toggle.html
index 16d0ed2..e86416c 100644
--- a/page/toggle.html
+++ b/page/toggle.html
@@ -5,7 +5,9 @@
}
}
-
+Display or hide elements using custom effects.
+
+
Want to learn more about the .toggle() method? Check out
-the API documentation .
+the API documentation .
diff --git a/page/toggleClass.html b/page/toggleClass.html
index e72cc9e..eb4fe08 100644
--- a/page/toggleClass.html
+++ b/page/toggleClass.html
@@ -5,7 +5,9 @@
}
}
-
+Toggle class(es) on elements while animating all style changes.
+
+
Want to learn more about the .toggleClass() method? Check out
-the API documentation .
+the API documentation .
diff --git a/page/tooltip.html b/page/tooltip.html
index 0661ccc..1a90359 100644
--- a/page/tooltip.html
+++ b/page/tooltip.html
@@ -5,7 +5,9 @@
}
}
+Customizable, themeable tooltips, replacing native tooltips.
+
Want to learn more about the tooltip widget? Check out the
-API documentation .
+API documentation .
diff --git a/page/upgrade-guide.md b/page/upgrade-guide.md
index 0d05280..34c70eb 100644
--- a/page/upgrade-guide.md
+++ b/page/upgrade-guide.md
@@ -1,25 +1,46 @@
+## [1.14 Upgrade Guide](/upgrade-guide/1.14/)
+Released on August 5, 2024
+
+## [1.13 Upgrade Guide](/upgrade-guide/1.13/)
+Released on October 7, 2021
+
+## [1.12 Upgrade Guide](/upgrade-guide/1.12/)
+Released on July 8, 2016
+
+## [1.11 Upgrade Guide](/upgrade-guide/1.11/)
+Released on June 26, 2014
+
+## [1.10 Upgrade Guide](/upgrade-guide/1.10/)
+Released on January 17, 2013
+
## [1.9 Upgrade Guide](/upgrade-guide/1.9/)
-Released in the FUTURE!
-
-
-
-Please bear with us while we import older upgrade guides. In the meantime,
-you can find the old upgrade guides on the old docs site:
-[1.8.15](http://docs.jquery.com/UI/Upgrade_Guide/1.8.15),
-[1.8.11](http://docs.jquery.com/UI/Upgrade_Guide/1.8.11),
-[1.8.9](http://docs.jquery.com/UI/Upgrade_Guide/1.8.9),
-[1.8.8](http://docs.jquery.com/UI/Upgrade_Guide/1.8.8),
-[1.8.7](http://docs.jquery.com/UI/Upgrade_Guide/1.8.7),
-[1.8.6](http://docs.jquery.com/UI/Upgrade_Guide/1.8.6),
-[1.8.5](http://docs.jquery.com/UI/Upgrade_Guide/1.8.5),
-[1.8.4](http://docs.jquery.com/UI/Upgrade_Guide_184),
-[1.8](http://docs.jquery.com/UI/Upgrade_Guide_18),
-[1.7](http://docs.jquery.com/UI/Upgrade_Guide_17).
-
-We're always looking for help, so if you're looking for an easy way to give
-back to the community, consider [forking this site](https://github.com/jquery/jqueryui.com),
-adding an upgrade guide or two and sending a pull request.
+Released on October 5, 2012
+
+## [1.8.11 Upgrade Guide](/upgrade-guide/1.8.11/)
+Released on March 15, 2011
+
+## [1.8.7 Upgrade Guide](/upgrade-guide/1.8.7/)
+Released on December 8, 2010
+
+## [1.8.6 Upgrade Guide](/upgrade-guide/1.8.6/)
+Released on October 25, 2010
+
+## [1.8.5 Upgrade Guide](/upgrade-guide/1.8.5/)
+Released on September 10, 2010
+
+## [1.8.4 Upgrade Guide](/upgrade-guide/1.8.4/)
+Released on August 5, 2010
+
+## [1.8 Upgrade Guide](/upgrade-guide/1.8/)
+Released on March 18, 2010
+
+## [1.7 Upgrade Guide](/upgrade-guide/1.7/)
+Released on March 3, 2009
diff --git a/page/upgrade-guide/1.10.md b/page/upgrade-guide/1.10.md
new file mode 100644
index 0000000..e1cd06c
--- /dev/null
+++ b/page/upgrade-guide/1.10.md
@@ -0,0 +1,543 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.9.x to jQuery UI 1.10.x.
+All changes are listed below, organized by plugin, along with how to upgrade
+your code to work with jQuery UI 1.10.
+
+## API Redesigns
+
+jQuery UI 1.10 introduces API redesigns for Dialog and Progressbar.
+You can read about the API redesign process on the
+[jQuery UI Blog](https://blog.jqueryui.com/2011/03/api-redesigns-the-past-present-and-future/).
+Although the redesigns introduce breaking changes,
+**1.10 maintains full compatibility with the 1.9 API by default.**
+This is accomplished by rebuilding the 1.9 API on top of the 1.10 API. The
+default behavior for all 1.10 releases will be to simultaneously use the 1.9
+and 1.10 APIs, deferring to the 1.9 API if there is a conflict. If you would like
+to load just the 1.10 API without the 1.9 API, you can set the `$.uiBackCompat`
+flag to `false`.
+
+```html
+
+
+
+```
+
+This will prevent the initialization of the back-compat layer, allowing you to
+use the 1.10 API in cases where there is a conflict with the 1.9 API.
+
+### Preparing for jQuery UI 1.11
+
+The API redesigns deprecate some functionality, which will be removed in 1.11.
+You don't have to wait for the 1.11.0 release in order to find out if your code
+will work when the 1.9 APIs are removed. You can use the `$.uiBackCompat` flag
+to test this with any 1.10 release.
+
+**If you find a regression from the 1.9 API, please report it in the
+[bug tracker](https://bugs.jqueryui.com/newticket). Even though the 1.9 API is
+deprecated, it's important for 1.10 releases not to regress so that users are
+encouraged to upgrade even if they're not ready to use the new APIs. Note that
+most 1.8 APIs which were deprecated in 1.9 were removed in 1.10 and will not
+exist, regardless of the `$.uiBackCompat` flag.**
+
+### Removed support for IE6
+
+IE6 usage has dropped to a low enough point that jQuery UI no longer finds it
+necessary to support. As of 1.10.0, some portions of jQuery UI may not work
+properly in IE6. If you need to continue to support IE6, use the latest
+jQuery UI 1.9 release.
+
+### Improved download builder
+
+The download builder once again supports downloading two versions. You can now
+download the latest stable release and one major version back. Also, as a result of
+[GitHub removing support for uploads](https://github.com/blog/1302-goodbye-uploads),
+we now host the download zips for all versions at https://jqueryui.com/download/all/.
+
+
+
+## Core
+
+### Removed `$.ui.isOver()` and `$.ui.isOverAxis()` methods
+
+([#8891](https://bugs.jqueryui.com/ticket/8891))
+The `$.ui.isOver()` and `$.ui.isOverAxis()` methods were written for specific
+plugins and had less-than-obvious APIs. They have been deprecated for a while,
+and as such have been removed.
+
+### Removed `$.ui.contains()` method; use `$.contains()`
+
+([#8902](https://bugs.jqueryui.com/ticket/8902))
+The `$.ui.contains()` method has been removed in favor of `$.contains()`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-ui-contains) for full details.
+
+
+
+## Accordion
+
+### Added ability to add/remove panels
+
+([#4672](https://bugs.jqueryui.com/ticket/4672))
+The `refresh` method will now recognize panels that have been added or removed.
+This brings accordion in line with tabs and other widgets that parse the markup
+to find changes.
+
+```
+// Initialize the accordion
+$( "#accordion" ).accordion();
+
+// Add a new header and panel
+$( "New Panel " ).appendTo( "#accordion" );
+$( "jQuery UI sure is awesome!
" ).appendTo( "#accordion" );
+
+// Refresh the accordion
+$( "#accordion" ).accordion( "refresh" );
+```
+
+### Removed `changestart` event; use `beforeActivate`
+
+([#6841](https://bugs.jqueryui.com/ticket/6841))
+The `changestart` event has been removed in favor of `beforeActivate`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-changestart-event-renamed-to-beforeactivate) for full details.
+
+### Removed `change` event; use `activate`
+
+([#6843](https://bugs.jqueryui.com/ticket/6843))
+The `change` event has been removed in favor of `activate`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-change-event-renamed-to-activate) for full details.
+
+### Removed `resize` method; use `refresh`
+
+([#6839](https://bugs.jqueryui.com/ticket/6839))
+The `resize` method has been removed in favor of `refresh`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-resize-method-renamed-to-refresh) for full details.
+
+### Removed `animated` option; use `animate`
+
+([#8601](https://bugs.jqueryui.com/ticket/8601))
+The `animated` option has been removed in favor of `animate`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-animated-option-renamed-to-animate) for full details.
+
+### Removed `icons.headerSelected` option; use `icons.activeHeader`
+
+([#6835](https://bugs.jqueryui.com/ticket/6835))
+The `icons.headerSelected` option has been removed in favor of `icons.activeHeader`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-icons-headerselected-option-renamed-to-icons-activeheader) for full details.
+
+### Removed `autoHeight`, `clearStyle`, and `fillSpace` options; use `heightStyle`
+
+([#5868](https://bugs.jqueryui.com/ticket/5868))
+([#5872](https://bugs.jqueryui.com/ticket/5872))
+The `autoHeight`, `clearStyle`, and `fillSpace` options have been removed in favor of `heightStyle`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-autoheight-clearstyle-and-fillspace-options-merged-into-heightstyle) for full details.
+
+### Removed `activate` method; use `active` option
+
+([#6837](https://bugs.jqueryui.com/ticket/6837))
+The `activate` method has been removed in favor of the `active` option.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-activate-method) for full details.
+
+### Removed `navigation` and `navigationFilter` options
+
+([#5870](https://bugs.jqueryui.com/ticket/5870))
+The `navigation` and `navigationFilter` options have been removed.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-navigation-and-navigationfilter-options) for full details.
+
+### Removed support for non-number/falsey values for `active` option
+
+([#6853](https://bugs.jqueryui.com/ticket/6853))
+The `active` option must be set to a number, or `false` to collapse. Negative numbers will now select panels starting from the last panel, similar to `.eq()`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-support-for-activating-panels-with-selectors-or-collapsing-with-1) for full details.
+
+### Deprecated `content` property in create event; renamed to `panel`
+
+([#8998](https://bugs.jqueryui.com/ticket/8998))
+The `content` property in the create event has been renamed to `panel` for
+consistency with other events. You should replace all uses of the `content`
+property with the `panel` property.
+
+Old API:
+
+```js
+$( "#accordion" ).accordion({
+ create: function( event, ui ) {
+ // Active panel
+ ui.content
+ // Active header
+ ui.header
+ }
+});
+```
+
+New API:
+
+```js
+$( "#accordion" ).accordion({
+ create: function( event, ui ) {
+ // Active panel
+ // CHANGED (previously content)
+ ui.panel
+ // Active header
+ ui.header
+ }
+});
+```
+
+*Note: This change was originally missed during the API redesign and did not
+occur until 1.10.1. As a result, the old API is not hidden behind the
+`$.uiBackCompat` flag and the new API is not available in 1.10.0.*
+
+**The `content` property will be removed in 1.11.**
+
+
+
+## Autocomplete
+
+### Removed `item.autocomplete` data; use `ui-autocomplete-item`
+
+([#8156](https://bugs.jqueryui.com/ticket/8156))
+Each menu item stores its source object using `.data()`. This data is no longer
+stored with a key of `item.autocomplete`, but rather `ui-autocomplete-item`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#changed-naming-convention-for-data-keys) for full details.
+
+
+
+## Dialog
+
+### Added `appendTo` option
+
+([#7948](https://bugs.jqueryui.com/ticket/7948))
+Previously, dialogs had always been appended to the body to ensure they were
+the last element in the DOM to avoid conflicts with other stacking contexts.
+However, in order to allow more flexibility and simplify the stacking logic,
+an `appendTo` option has been added which defaults to the body. Check out the
+[API documentation](https://api.jqueryui.com/dialog/#option-appendTo) for more
+information.
+
+### Added ability to specify which element to focus on open
+
+([#4731](https://bugs.jqueryui.com/ticket/4731))
+When a dialog opens, it gains focus so that the user may immediately start
+interacting with it. This also allows assistive technologies, such as screen
+readers, to announce the dialog. The logic for which element gains focus has
+traditionally been whichever element is found first in the following categories:
+tabbable elements within the content area, tabbable elements within the button
+pane, the close button, and finally the dialog itself as a fallback. Starting
+with 1.10.0, if there is an element inside the content area with the `autofocus`
+attribute, that element will gain focus; if there is none, then the previous
+logic will be used.
+
+### Added support for icons in buttons
+
+([#6830](https://bugs.jqueryui.com/ticket/6830))
+The `buttons` option now supports two more properties to control the use of icons.
+An `icons` hash may be provided, with `primary` and/or `secondary` properties,
+and the `showText` property may be set to false to hide text when using an icon.
+For more information on using icons, see the
+[button documentation](https://api.jqueryui.com/button/#option-icons).
+
+### Restore focus on close
+
+([#8730](https://bugs.jqueryui.com/ticket/8730))
+In addition to having more control over which element gains focus when the dialog
+opens, the dialog will also remember which element had focus outside of the dialog.
+When the dialog is closed, focus will be restored to the element that had focus
+immediately before the dialog opened. This will put the user back in the same
+state they were in, again resulting in improved usability and accessibility.
+
+### Deprecated array and string notations for `position` option
+
+([#8824](https://bugs.jqueryui.com/ticket/8824))
+Over time, the dialog widget accrued a few different ways to specify the opening
+position. You could specify a string, such as "left center"; or an array of pixels,
+such as `[ 200, 100 ]`; or an object that would get passed to the
+[position utility](https://api.jqueryui.com/position/). Since we have standardized
+on using the position utility in all widgets, we have deprecated the string and
+array notations.
+
+Old API:
+
+```js
+$( "#dialog" ).dialog({
+ position: "right bottom"
+});
+```
+
+New API:
+
+```js
+$( "#dialog" ).dialog({
+ position: {
+ my: "right bottom",
+ at: "right bottom"
+ }
+});
+```
+
+Old API:
+
+```js
+$( "#dialog" ).dialog({
+ position: [ 200, 100 ]
+});
+```
+
+New API:
+
+```js
+$( "#dialog" ).dialog({
+ position: {
+ my: "left top",
+ at: "left+200 top+100"
+ }
+});
+```
+
+### Removed `stack` option
+
+([#8722](https://bugs.jqueryui.com/ticket/8722))
+Dialogs previously supported a `stack` option, which determined whether dialogs
+should move to the top when focused. As this should always be the case, the
+option has been removed.
+
+### Removed `zIndex` option
+
+([#8729](https://bugs.jqueryui.com/ticket/8729))
+Similar to the `stack` option, the `zIndex` option is unnecessary with a proper
+stacking implementation. The z-index is defined in CSS and stacking is now
+controlled by ensuring the focused dialog is the last "stacking" element in its
+parent.
+
+### Changed `title` option from HTML to text
+
+([#6016](https://bugs.jqueryui.com/ticket/6016))
+Dialog titles are controlled either via the `title` option or the `title`
+attribute on the content element. The title has previously been set as HTML,
+but since titles are generally plain text, this could easily cause a scripting
+vulnerability for users who don't realize the value is being set as HTML. As a
+result, titles are now set as text. If you need to add custom formatting to your
+dialog titles, you can override the `_title()` method on the dialog.
+
+
+
+## Position
+
+### Removed `offset` option; use `my` or `at`
+
+([#6982](https://bugs.jqueryui.com/ticket/6982))
+The `offset` option has been removed in favor of providing offset information in
+`my` or `at`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-offset-option-merged-into-my-and-at) for full details.
+
+
+
+## Progressbar
+
+### Added support for indeterminate progressbars
+
+([#7624](https://bugs.jqueryui.com/ticket/7624))
+The progressbar widget now supports an indeterminate state for situations where
+the current status of an action cannot be determined. Simply set the `value`
+option to `false` to create an indeterminate progressbar. You can seamlessly
+transition from an indeterminate progressbar to a determinate progressbar just
+by changing the `value` from `false` to a number.
+
+
+
+## Resizable
+
+### Added support for complex markup in handles
+
+([#8756](https://bugs.jqueryui.com/ticket/8756))
+While most users let the resizable widget generate handles automatically, it is
+possible to create your own handles in the markup prior to initialization.
+However, until now the handles were required to be a single element. As of 1.10.0,
+custom handles can contain complex markup, nesting elements as deep as you wish
+within the handle.
+
+
+
+## Spinner
+
+### Trigger all events for programmatic steps
+
+([#8901](https://bugs.jqueryui.com/ticket/8901))
+In 1.9.x, the spinner widget did not trigger `start`, `spin`, or `stop` events
+when programmatically stepping via the `stepUp()`, `stepDown()`, `pageUp()`, or
+`pageDown()` methods (only `change` was triggered). Starting with 1.10.0, all
+events are triggered, matching the behavior of a user-initiated step.
+
+
+
+## Tabs
+
+### Removed `fx` option; use `show` and `hide`
+
+([#8320](https://bugs.jqueryui.com/ticket/8320))
+The `fx` option has been removed in favor of `show` and `hide`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-fx-option-use-show-and-hide-options) for full details.
+
+### Removed `ajaxOptions` and `cache` options; use `beforeLoad` event
+
+([#7147](https://bugs.jqueryui.com/ticket/7147))
+The `ajaxOptions` and `cache` options have been removed in favor of the
+`beforeLoad` event.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-ajaxoptions-and-cache-options-added-beforeload-event) for full details.
+
+### Removed `url` method; use `aria-controls` attribute
+
+([#7148](https://bugs.jqueryui.com/ticket/7148))
+The `url` method has been removed in favor of the `aria-controls` attribute.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-url-method-and-use-of-title-attribute-use-aria-controls-attribute) for full details.
+
+### Removed use of `title` attribute; use `aria-controls`
+
+([#7149](https://bugs.jqueryui.com/ticket/7149))
+Use of the `title` attribute to specify a tab panel has been removed in favor of
+`aria-controls`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-url-method-and-use-of-title-attribute-use-aria-controls-attribute) for full details.
+
+### Removed `abort` method
+
+([#7150](https://bugs.jqueryui.com/ticket/7150))
+The `abort` method was removed in favor of storing a reference to the `jqXHR`
+object in the `beforeLoad` event.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-abort-method) for full details.
+
+### Removed `spinner` option
+
+([#7151](https://bugs.jqueryui.com/ticket/7151))
+The `spinner` options has been removed.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-spinner-option) for full details.
+
+### Removed `selected` option; use `active`
+
+([#7152](https://bugs.jqueryui.com/ticket/7152))
+The `selected` option has been removed in favor of `active`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-selected-option-renamed-to-active) for full details.
+
+### Removed `select` event; use `beforeActivate`
+
+([#7154](https://bugs.jqueryui.com/ticket/7154))
+The `select` event has been removed in favor of `beforeActivate`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-select-event-renamed-to-beforeactivate) for full details.
+
+### Removed `show` event; use `activate`
+
+([#7155](https://bugs.jqueryui.com/ticket/7155))
+The `show` event has been removed in favor of `activate`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-show-event-renamed-to-activate) for full details.
+
+### Removed `select` method; use `active` option
+
+([#7156](https://bugs.jqueryui.com/ticket/7156))
+The `select` event has been removed in favor of the `active` option.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-select-method) for full details.
+
+### Removed `add` and `remove` methods; use `refresh`
+
+([#7158](https://bugs.jqueryui.com/ticket/7158))
+The `add` and `remove` methods have been removed in favor of `refresh`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-add-and-remove-methods-and-events-use-refresh-method) for full details.
+
+### Removed `idPrefix`, `tabTemplate`, and `panelTemplate` options; use `refresh` method
+
+([#7157](https://bugs.jqueryui.com/ticket/7157))
+The `idPrefix`, `tabTemplate`, and `panelTemplate` options have been removed in favor of the `refresh` method.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-idprefix-tabtemplate-and-paneltemplate-options-use-refresh-method) for full details.
+
+### Removed `enable` and `disable` events
+
+([#7160](https://bugs.jqueryui.com/ticket/7160))
+The `enable` and `disable` event have been removed.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-enable-and-disable-events) for full details.
+
+### Removed `length` method
+
+([#7161](https://bugs.jqueryui.com/ticket/7161))
+The `length` method has been removed.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-length-method) for full details.
+
+### Removed `cookie` option
+
+([#7162](https://bugs.jqueryui.com/ticket/7162))
+The `cookie` option has been removed.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-cookie-option) for full details.
+
+### Changed `load` event to pass jQuery objects
+
+([#8731](https://bugs.jqueryui.com/ticket/8731))
+The `load` event now passes jQuery objects instead of DOM elements for consistency
+with other plugins in jQuery UI.
+
+Old API:
+
+```js
+$( "#tabs" ).tabs({
+ load: function( event, ui ) {
+ $( ui.panel ).addClass( "loaded" );
+ }
+});
+```
+
+New API:
+
+```js
+$( "#tabs" ).tabs({
+ load: function( event, ui ) {
+ ui.panel.addClass( "loaded" );
+ }
+});
+```
+
+
+## Tooltip
+
+### Changed default `content` option from HTML to text
+
+([#8861](https://bugs.jqueryui.com/ticket/8861))
+The default `content` option uses the `title` attribute as the content for the
+tooltip. Previously the value was set as HTML, but it is now set as text. This
+fixes a security vulnerability as well as bringing the functionality in line
+with how the attribute is meant to be used.
+
+
+
+## Widget
+
+### Removed use of metadata plugin
+
+([#7192](https://bugs.jqueryui.com/ticket/7192))
+Use of the metadata plugin for widget options has been removed.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-use-of-metadata-plugin) for full details.
+
+### Removed `widgetBaseClass` property; use `widgetFullName`
+
+([#8155](https://bugs.jqueryui.com/ticket/8155))
+The `widgetBaseClass` property has been removed in favor of `widgetFullName`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-widgetbaseclass-property-renamed-to-widgetfullname) for full details.
+
+### Removed data fallbacks for widget names
+
+([#8801](https://bugs.jqueryui.com/ticket/8801))
+Widgets used to store their instances in `.data()` using just the plugin name as
+a key. The instances are now stored using the widget namespace as well. For
+example, the dialog widget is now stored in `ui-dialog` instead of `dialog`.
+See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#changed-naming-convention-for-data-keys) for full details.
+
+
+
+## Effects
+
+### Removed support for effects in `$.effects[]`; use `$.effects.effect[]`
+
+([#7115](https://bugs.jqueryui.com/ticket/7115))
+Support for defining effects directly on `$.effects` has been removed in favor
+of defining effects on `$.effects.effect`. The API for new effects is slightly
+different, so make sure to read
+[the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#redesigned-effects-api) for full details.
diff --git a/page/upgrade-guide/1.11.md b/page/upgrade-guide/1.11.md
new file mode 100644
index 0000000..ba39ba7
--- /dev/null
+++ b/page/upgrade-guide/1.11.md
@@ -0,0 +1,304 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.10.x to jQuery UI 1.11.x.
+All changes are listed below, organized by plugin, along with how to upgrade
+your code to work with jQuery UI 1.11.
+
+## General changes
+
+We made some changes that affect all source files and the ways you can access and load them in your applications. Our goal was to simplify where possible, while supporting more environments, specifically AMD and bower.
+
+### Renamed files
+
+We've dropped the "jquery.ui." prefix from all source files, so for example `jquery.ui.accordion.js` is now `accordion.js`. This makes usage with AMD easier (see below) and makes it easier to deal with the individual source files.
+
+### AMD support
+
+jQuery UI now supports AMD out-of-the-box. That means that you can specify `"ui/autocomplete"` as a dependency in your module, and an AMD script loader like require.js will resolve all the dependencies that the autocomplete widget has. You can learn more about using jQuery UI with AMD on [learn.jquery.com](https://learn.jquery.com/jquery-ui/environments/amd/).
+
+### Bower support
+
+jQuery UI now supports bower out-of-the-box. That means that you can install jQuery UI with bower by running `bower install jquery-ui`. You can learn more about using jQuery UI with bower on [learn.jquery.com](https://learn.jquery.com/jquery-ui/environments/bower/).
+
+### Simplified custom and quick downloads
+
+We've simplified our download packages. Instead of including all demos and source files, we now only include the concatenated files. The new structure looks like this:
+
+
+.
+├── images
+│ └── ...
+├── index.html
+├── jquery-ui.css
+├── jquery-ui.js
+├── jquery-ui.min.css
+├── jquery-ui.min.js
+├── jquery-ui.structure.css
+├── jquery-ui.structure.min.css
+├── jquery-ui.theme.css
+├── jquery-ui.theme.min.css
+└── jquery.js
+
+
+The `jquery-ui.structure.css` file provides the structural CSS rules (such as margins and positioning), and the `jquery-ui.theme.css` file contains the theming rules (such as backgrounds, colors, and fonts). This setup allows you to easily change themes by swapping in new `jquery-ui.theme.css` files. You can also build a theme from scratch by building on top of `jquery-ui.structure.css`. The `jquery-ui.css` file contains both `jquery-ui.structure.css` and `jquery-ui.theme.css`.
+
+The `index.html` file contains a demo of each jQuery UI component and includes your selected theme. This is the same demo file that was included in previous versions of jQuery UI. `jquery.js` file, which is a copy of jQuery Core, also has not changed. jQuery UI 1.11 supports jQuery Core versions >= 1.6.
+
+If you want the complete jQuery UI source files, demos, and tests, you can get them from .
+
+### Discontinued IE7 Support
+
+As of this release we are no longer accepting bug reports for IE7 issues. We have also removed IE7 from our testing infrastructure. The IE7 workarounds are still present in the code, but we will remove them for jQuery UI 1.12.
+
+
+## Core
+
+### Deprecated `.focus( n )`
+
+[(#9646)](https://bugs.jqueryui.com/ticket/9646) The modified version of the jQuery Core `.focus()` method is now deprecated. jQuery UI was using this only in our dialog widget, where we've replaced the delayed focus call with a timeout.
+
+Before:
+
+```js
+element.focus( 1 );
+```
+
+After:
+
+```js
+setTimeout(function() {
+ element.focus();
+});
+```
+
+### Deprecated `.zIndex()`
+
+[(#9061)](https://bugs.jqueryui.com/ticket/9061) `.zIndex()` is now deprecated in favor of the new `.ui-front` / `appendTo` logic used by all widgets that display an element on top of the page, like dialog and autocomplete.
+
+This method was used by dialog, but because the dialog now has an [`appendTo` option](https://api.jqueryui.com/dialog/#option-appendTo), this plugin method is no longer necessary. If you are using `.zIndex()`, or building a widget that must stack, check out our [guide to create stacking elements with a `ui-front` class name and `appendTo` option](https://api.jqueryui.com/theming/stacking-elements/).
+
+### Removed `$.ui.hasScroll()`
+
+[(#9190)](https://bugs.jqueryui.com/ticket/9190) The deprecated and undocumented `$.ui.hasScroll()` method has been removed as it was only used by the resizable interaction.
+
+### Removed $.ui.keyCode.NUMPAD_*.
+
+[(#9269)](https://bugs.jqueryui.com/ticket/9269) The following key code constants have been removed as they were not used by jQuery UI:
+
+* `$.ui.keyCode.NUMPAD_ADD`
+* `$.ui.keyCode.NUMPAD_DECIMAL`
+* `$.ui.keyCode.NUMPAD_DIVIDE`
+* `$.ui.keyCode.NUMPAD_ENTER`
+* `$.ui.keyCode.NUMPAD_MULTIPLY`
+* `$.ui.keyCode.NUMPAD_SUBTRACT`
+
+
+## Accordion
+
+### Removed `content` property in `create` event
+
+[(#8999)](https://bugs.jqueryui.com/ticket/8999) The deprecated `content` property in the `create` event was removed. The correct property to use is `panel`.
+
+
+## Dialog
+
+### Removed deprecated position handling
+
+[(#8825)](https://bugs.jqueryui.com/ticket/8825) The array and string notations for dialog's `position` option were deprecated in 1.10 and are now gone. Use the object notation of the [`position` option](https://api.jqueryui.com/dialog/#option-position) instead.
+
+
+### Switch back to shuffling z-index, but only look at `ui-front` siblings.
+
+[(#9166)](https://bugs.jqueryui.com/ticket/9166), [(#9364)](https://bugs.jqueryui.com/ticket/9364) In 1.10, we rewrote dialog's `moveToTop()` method to move the DOM elements that shared the `ui-front` class name within the same parent. This solved a lot of problems that the previous, `z-index` based solution had, but it also created new issues due to moving the dialog around in the DOM.
+
+In 1.11, we've kept the approach from 1.10, but also added back `z-index` handling, although in a restricted way. This solves problems with reloading of flash content and resetting of scroll positions, while still being more straightforward than the old approach.
+
+This should be a pure bug fix, though if you use the dialog widget along with other elements that use `z-index`, you may need to test the stacking behavior when updating to 1.11.
+
+
+## Position
+
+### Removed `offset` option; use `my` or `at`
+
+[(#6982)](https://bugs.jqueryui.com/ticket/6982) The `offset` option has been removed in favor of providing offset information in `my` or `at`. See [the 1.9 deprecation notice](https://jqueryui.com/upgrade-guide/1.9/#deprecated-offset-option-merged-into-my-and-at) for full details.
+
+
+## Menu
+
+### Added `items` option for better definition of menu items in non parent-child structures
+
+[(31e705a)](https://github.com/jquery/jquery-ui/commit/31e705ab324ec830062eee173a112551f7c919ea) A new [`items` option](https://api.jqueryui.com/menu/#option-items) was added to the menu widget. The option allows you to use markup other than the default, such as menu items that aren't immediate children of the menu container parent.
+
+### Remove the requirement to use anchors in menu items
+
+[(3a61627)](https://github.com/jquery/jquery-ui/commit/3a61627a501cb7ba1ce80046bfabbff0f7f2f517) The menu widget no longer expects list items to contain anchors. Markup containing anchors will still work, although there may be styling issues. It's recommended to remove the anchors from your markup.
+
+Old:
+
+```
+
+```
+
+New:
+
+```
+
+```
+
+The autocomplete and selectmenu widgets, which both use menu internally, were updated to remove the anchors.
+
+### Simplify styling. Remove rounded corners, reduce spacing.
+
+[(9910e93)](https://github.com/jquery/jquery-ui/commit/9910e938aad1090339a2c7f60693093ee18aba82) The structural styles of the menu widget have changed, including removing the rounded corners and reducing the spacing between menu items—which allows you to see more items without scrolling.
+
+If you're using the menu widget, check if the new style fits into your page, and use [the widget's theming hooks](https://api.jqueryui.com/menu/#theming) to customize the display to meet your needs.
+
+
+## Slider
+
+### Added Windows 8 touch support
+
+[(#9709)](https://bugs.jqueryui.com/ticket/9709) The slider widget now supports usage on Windows 8 touch devices.
+
+### Switched handles from anchors to spans
+
+[(#9890)](https://bugs.jqueryui.com/ticket/9890) The slider widget now uses `` elements instead of `` elements for its handles to workaround an issue with usage in some single-page application frameworks. The handles still use the same `ui-slider-handle` class name as a styling hook.
+
+
+## Spinner
+
+### Added `isValid()` method
+
+[(#9542)](https://bugs.jqueryui.com/ticket/9542) The spinner widget now exposes an `isValid()` for determining whether the value of the spinner's input is valid. For example the following returns `true`:
+
+```
+$( " " )
+ .spinner({ step: 1 })
+ .spinner( "isValid" );
+```
+
+And the following returns `false`:
+
+```
+$( " " )
+ .spinner({ step: 2 })
+ .spinner( "isValid" );
+```
+
+
+## Widget
+
+### `$.widget()` returns the widget's constructor.
+
+[(#9467)](https://bugs.jqueryui.com/ticket/9467) The `$.widget()` method now returns the widget's constructor instead of `undefined`. As an example, the following code creates a dialog extension, and then uses the new widget's constructor function to create an instance on a newly created ``:
+
+```
+var redDialog = $.widget( "demo.redDialog", $.ui.dialog, {
+ _create: function() {
+ this._super();
+ this.element.css( "color", "red" );
+ }
+});
+redDialog( {}, "
jQuery UI Rocks!
" );
+```
+
+The same constructor functions are also returned when you use the jQuery UI widgets in an AMD context. For more details on how to use the widget's constructor functions, see our guide on [using jQuery UI with AMD](https://learn.jquery.com/jquery-ui/environments/amd/).
+
+### Added `instance()` method on the bridge to return widget instance
+
+[(#9030)](https://bugs.jqueryui.com/ticket/9030) A new `instance()` method is now available on the plugin bridge. The method provides access to the widget's instance without going through `.data()`.
+
+Old:
+
+```
+var instance = $( "
" )
+ .progressbar()
+ .data( "ui-progressbar" );
+```
+
+New:
+
+```
+var instance = $( "
" )
+ .progressbar()
+ .progressbar( "instance" );
+```
+
+Unlike other plugin methods, the `instance()` method is safe to call on any element. If the element is not an instance of the given widget, the method returns `undefined`. For example the following code throws an error:
+
+```
+// Uncaught Error: cannot call methods on dialog prior to initialization; attempted to call method 'open'
+$( "#not-a-dialog" ).dialog( "open" );
+```
+
+And this returns `undefined`:
+
+```
+$( "#not-a-dialog" ).dialog( "instance" );
+```
+
+### Changed `enable()` and `disable()` to use `_setOptions()` instead of `_setOption()`
+
+[(bc85742)](https://github.com/jquery/jquery-ui/commit/bc857424a36fb33eda80f69454b123b226ec1685) Custom widgets can now override `_setOptions()` to implement custom handling for the `disabled` option. Because `_setOptions()` invokes `_setOption()`, existing code should not be affected.
+
+### Stop setting `ui-state-disabled` and `aria-disabled` by default when the `disabled` option is set.
+
+[(#5973)](https://bugs.jqueryui.com/ticket/5973) [(#5974)](https://bugs.jqueryui.com/ticket/5974) [(#6039)](https://bugs.jqueryui.com/ticket/6039) The widget factory used to manage the `ui-state-disabled` class name and `aria-disabled` attribute as a widget's `disabled` option was toggled. That behavior has been removed as it created issues in some widgets where `ui-state-disabled` and `aria-disabled` did not make sense, such as the resizable widget.
+
+If you have a themeable widget with a `disabled` option, you can manage `ui-state-disabled` and `aria-disabled` in the widget's `_setOption()` method. For instance this is how the progressbar widget handles its `disabled` option changing:
+
+```
+_setOption: function( key, value ) {
+ ...
+ if ( key === "disabled" ) {
+ this.element
+ .toggleClass( "ui-state-disabled", !!value )
+ .attr( "aria-disabled", value );
+ }
+ this._super( key, value );
+}
+```
+
+### Support events with dashes and colons
+
+[(#9708)](https://bugs.jqueryui.com/ticket/9708) The widget factory's `_on()` method now supports event names with dashes and colons. As an example the following creates a widget that listens for two events—one with a dash and one with a colon:
+
+```
+$.widget( "myNamespace.myWidget", {
+ _create: function() {
+ this._on({
+ "foo-bar": function() {
+ console.log( "foo-bar" );
+ },
+ "foo:bar": function() {
+ console.log( "foo:bar" );
+ }
+ });
+ }
+});
+```
+
+And the following creates an instance of the above widget and triggers the two events:
+
+```
+$( "
" ).myWidget()
+ .trigger( "foo-bar" )
+ .trigger( "foo:bar" );
+```
+
+## Effects
+
+### Give puff and size effects their own files
+
+[(d0c613d)](https://github.com/jquery/jquery-ui/commit/d0c613d3a8db7bd44ce70c20e8dc55478699b3d0) Previously, the puff, size, and scale effects shared a single file—`jquery.ui.effect-scale.js`. Now, each of these effects have their own files—`effect-puff.js`, `effect-scale.js`, and `effect-size.js`, respectively.
diff --git a/page/upgrade-guide/1.12.md b/page/upgrade-guide/1.12.md
new file mode 100644
index 0000000..9e5c2c1
--- /dev/null
+++ b/page/upgrade-guide/1.12.md
@@ -0,0 +1,588 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.11.x to jQuery UI 1.12.x. All changes are listed below, organized by plugin, along with how to upgrade your code to work with jQuery UI 1.12.
+
+## API Redesigns
+
+jQuery UI 1.12 introduces API redesigns for Button, Buttonset, Dialog, Draggable, Droppable, Menu, Mouse, Resizable, Selectable, Sortable, Tabs, Tooltip, and Effects. You can read about the API redesign process on the
+[jQuery UI Blog](https://blog.jqueryui.com/2011/03/api-redesigns-the-past-present-and-future/). Although the redesigns introduce breaking changes, **1.12 maintains a lot of compatibility with the 1.11 API by default.** This is accomplished by rebuilding the 1.11 API on top of the 1.12 API. The default behavior for all 1.12 releases will be to simultaneously use the 1.11 and 1.12 APIs where possible. If you would like to load just the 1.12 API without the 1.11 API, you can set the `$.uiBackCompat` flag to `false`.
+
+```html
+
+
+
+```
+
+### Preparing for a future jQuery UI release
+
+The API redesigns deprecate some functionality, which will be removed in the future. You don't have to wait in order to find out if your code will work when the 1.11 APIs are removed. You can use the `$.uiBackCompat` flag to test this with any 1.12 release.
+
+
If you find a regression from the 1.11 API, please report it in the bug tracker . Even though the 1.11 API is deprecated, it's important for 1.12 releases not to regress so that users are encouraged to upgrade even if they're not ready to use the new APIs. Note that
+most 1.10 APIs which were deprecated in 1.11 were removed in 1.12 and will not exist, regardless of the $.uiBackCompat flag.
+
+## General changes
+
+Independent of changes to specific components, this release removes support for IE7, modernizes the theming, including the default font-size, and improves support for AMD. The minimal jQuery version supported is now 1.7.0.
+
+### Removed IE7 workarounds
+
+[(#9838)](https://bugs.jqueryui.com/ticket/9838) All IE7 workarounds have been removed from the source code. If you need continued IE7 support you can continue to use jQuery UI 1.11.x.
+
+### Discontinued IE8, IE9, and IE10 support
+
+As of this release we are no longer accepting bug reports for IE8, IE9, or IE10 issues. We have also removed these browsers from our testing infrastructure. The workarounds for these browsers are still present in the code, but we will remove them for jQuery UI 1.14.
+
+### Font size changes
+
+[(#10131)](https://bugs.jqueryui.com/ticket/10131) jQuery UI themes used to be built around a `body` font-size of 62.5%, while widgets compensated for that with font-size of 1.1em. This rather small font-size default is now gone, assuming instead the default font-size of browsers.
+
+### New default theme
+
+[(#10617)](https://bugs.jqueryui.com/ticket/10617) jQuery UI used to ship with a default theme called Smoothness. This theme is still available through ThemeRoller, but has been replaced by a new default theme called Base. This new theme has been modernized to get rid of background gradients, reduce rounded corners and use some colors outside of the greyscale range. In other words, it looks much better.
+
+### Dropped support for jQuery 1.6
+
+[(#10723)](https://bugs.jqueryui.com/ticket/10723) jQuery UI no longer supports jQuery 1.6. The minimal supported version is now 1.7.0.
+
+### Split `core.js` into small modules
+
+[(#9647)](https://bugs.jqueryui.com/ticket/9647) The "core" module that used to bundle various utilities is deprecated. Other source files no longer depend on `core.js`, which is now just a single `define()` call that specifies all the modules it previously bundled as dependencies.
+
+### Moved widgets and effects source files into folders
+
+[(#13885)](https://bugs.jqueryui.com/ticket/13885) All widgets, including `mouse.js` (but excluding `widget.js`) were moved to a `widgets` subfolder, so for example, the source for the autocomplete widget is now `ui/widgets/autocomplete.js`. Similarly, all effects (except `effect.js`) were moved to an `effects` subfolder.
+
+### Explicit CSS dependencies
+
+In jQuery UI 1.11 we added support for AMD dependency management, but this applied only for JS files. CSS files still had to be managed manually (though download builder helps). In 1.12 all JS components now explicitly list their direct CSS dependencies, through structured source comments. For example, `widgets/autocomplete.js` has these comments:
+```js
+//>>css.structure: ../../themes/base/core.css
+//>>css.structure: ../../themes/base/autocomplete.css
+//>>css.theme: ../../themes/base/theme.css
+```
+Download builder parses these to resolve each JS component's CSS dependencies. Other build tools like requirejs or webpack could also parse these (and make it reusable through plugins).
+
+We hope to move to a format that resembles more of a standard eventually.
+
+### Official package on npm
+
+jQuery UI 1.12 is the first release officially published to npm as `jquery-ui`. The [previous source repository](https://github.com/devongovett/jqueryui-npm) only covered up to jQuery UI 1.10.5, but never had any of the 1.11 releases. Since the unofficial releases where heavily transformed and fundamentally incompatible with our source files and existing release process, we decided to publish 1.12 under the same name, with different folders and files. Accordingly, the npm releases of 1.12+ are **not backwards compatible** with the 1.10.x releases.
+
+If you've used jQuery UI 1.10 via npm, make sure you don't use minor version ranges in your `package.json`.
+Before:
+```
+"jquery-ui": "^1.10.5"
+```
+After:
+```
+"jquery-ui": "1.10.x"
+```
+
+When you're ready to upgrade, you need to update your import paths.
+
+Before:
+```
+var autocomplete = require( "jquery-ui/autocomplete" );
+```
+After:
+```
+var autocomplete = require( "jquery-ui/ui/widgets/autocomplete" );
+```
+
+If you've used `require( "jquery-ui" )`, then you need to replace that with individual imports.
+
+If you're using browserify: The UMD headers we have aren't supported by browserify natively, and [the deamdify plugin has a blocking bug](https://github.com/jaredhanson/deamdify/issues/33). If you depend on that combination, please help fix that bug!
+
+If you're using webpack or are considering it: You're good to go! It works, [as shown in this demo](https://github.com/jzaefferer/webpack-jquery-ui).
+
+## Core
+
+### Removed .focus( delay )
+
+[(#9649)](https://bugs.jqueryui.com/ticket/9649) The deprecated `.focus( delay )` method override has been removed. jQuery UI was using this only in our dialog widget, where we've replaced the delayed focus call with a timeout.
+
+### Removed .zIndex()
+
+[(#9156)](https://bugs.jqueryui.com/ticket/9156) The deprecated `.zIndex()` method has been removed, in favor of the new `.ui-front` / `appendTo` [stacking elements](//api.jqueryui.com/theming/stacking-elements/) logic used by all widgets that display an element on top of the page, like dialog and autocomplete.
+
+This method was used by dialog, but because the dialog now has an [`appendTo` option](//api.jqueryui.com/dialog/#option-appendTo), this plugin method is no longer necessary. If you are using `.zIndex()`, or building a widget that must stack, check out our [guide to create stacking elements with a `ui-front` class name and `appendTo` option](//api.jqueryui.com/theming/stacking-elements/).
+
+### Added .labels()
+
+[(#12475)](https://bugs.jqueryui.com/ticket/12475) This release introduces a new jQuery plugin method. `.labels()` finds all label elements associated with the first selected element.
+
+## Mouse
+
+### Deprecated `distance` and `delay` options
+
+[(#10615)](https://bugs.jqueryui.com/ticket/10615) Interactions should be instantaneous. These settings are typically used to prevent accidental drags, but a proper fix for that is to improve the user experience, e.g., using handles to avoid accidental drags.
+
+
Unlike most deprecated APIs which only remain for one version before being removed, the `distance` and `delay` options for each interaction won't be removed until the respective rewrites are included in a new version. As such, the `$.uiBackCompat` flag won't remove the options from the API.
+
+## Autocomplete
+
+### Require wrappers for each autocomplete menu item
+
+See the [changes in the menu widget](#require-wrappers-for-each-menu-item).
+
+## Button
+
+The button widget underwent a rewrite in this release. Most notably, support for inputs of type checkbox and radio has been extracted into a standalone [checkboxradio widget](//api.jqueryui.com/1.12/checkboxradio/), and support for groups of buttons has been extracted into a more generic [controlgroup widget](//api.jqueryui.com/1.12/controlgroup/). The remaining button widget also underwent some changes, simplifiying markup and options.
+
+### Deprecated `icons` options in favor of `icon` and `iconPosition`
+
+[(#14744)](https://bugs.jqueryui.com/ticket/14744) The button widget used to have an `icons` option that supported `primary` and `secondary` properties, allowing up to two icons at once. This has been replaced by the `icon` option, which only allows a single icon, and the `iconPosition` option, which controls the placement of that one icon.
+
+The equivalent of the old `primary` icons property is `iconPosition: "beginning"`, while the equivalent of the old `secondary` icons property is `iconPosition: "end"`. The new button also supports "top" and "bottom" for `iconPosition`, allowing the icon to be displayed above or below the button text.
+
+To replace a primary icon:
+
+Old:
+```js
+$( "button" ).button( {
+ icons: {
+ primary: "ui-icon-lock"
+ }
+} );
+```
+
+New:
+```js
+$( "button" ).button( {
+ icon: "ui-icon-lock"
+} );
+```
+
+Replacing a secondary icon also requires the `iconPosition` option:
+
+Old:
+```js
+$( "button" ).button( {
+ icons: {
+ secondary: "ui-icon-gear"
+ }
+} );
+```
+
+New:
+```js
+$( "button" ).button( {
+ icon: "ui-icon-gear",
+ iconPosition: "end"
+} );
+```
+
+Replacing a button with two icons can be accomplished by putting one icon in the markup:
+
+Old:
+```html
+
Click me
+```
+```js
+$( "button" ).button( {
+ icons: {
+ primary: "ui-icon-lock",
+ secondary: "ui-icon-gear"
+ }
+} );
+```
+
+New:
+```html
+
Click me
+```
+```js
+$( "button" ).button( {
+ icon: "ui-icon-lock"
+} );
+```
+
+### Deprecated `text` option in favor of `showLabel`
+
+[(#8203)](https://bugs.jqueryui.com/ticket/8203) This option was renamed for clarity, otherwise it hasn't changed.
+
+Old:
+```js
+$( "button" ).button( {
+ text: false,
+
+ // Still can't hide text without an icon
+ icons: {
+ primary: "ui-icon-gear"
+ }
+} );
+```
+
+New:
+```js
+$( "button" ).button( {
+ showLabel: false,
+ icon: "ui-icon-gear"
+} );
+```
+
+### Deprecated support for `checkbox` and `radio` types, in favor of checkboxradio widget
+
+[(#14746)](https://bugs.jqueryui.com/ticket/14746) With the introduction of the new [checkboxradio widget](//api.jqueryui.com/1.12/checkboxradio/), the button widget is no longer intended to be used as a toggle button. However, with back-compat enabled, the button widget will automatically detect if you're trying to create a button from a checkbox or radio button and call `.checkboxradio()` on those elements for you.
+
+If you're using the button widget with one of these input types, replace it with the new checkboxradio widget:
+
+Old:
+```js
+$( "input[type=checkbox]" ).button();
+```
+
+New:
+```js
+$( "input[type=checkbox]" ).checkboxradio();
+```
+
+Both old and new `button` and new `checkboxradio` support the `label` option, so you can keep using it without any changes. Checkboxradio doesn't have an equivalent of the `text` (old) or `showLabel` (new) option, it will always show the label. It also doesn't have an equivalent of the `icons` (Object, old) or `icon` (String, new) option, you can only turn the checkbox/radio icon on or off using the `icon` (Boolean) option. To replace a toggle button with a custom icon (no checkmark), turn off the icon and add a custom icon to the markup.
+
+Old:
+```html
+
+
Metal Checkbox
+```
+```js
+$( "input[type=checkbox]" ).button( {
+ icons: {
+ primary: "ui-icon-gear"
+ }
+} );
+```
+
+New:
+```html
+
+
Metal Checkbox
+```
+```js
+$( "input[type=checkbox]" ).checkboxradio({
+ icon: false
+});
+```
+
+## Buttonset
+
+### Deprecated buttonset in favor of controlgroup
+
+[(#14747)](https://bugs.jqueryui.com/ticket/14747) The buttonset widget, bundled with the button widget, is now deprecated, in favor of the new [controlgroup widget](//api.jqueryui.com/1.12/controlgroup/). If you were using buttonset without any options, migrating to controlgroup only requires a search-and-replace:
+
+```js
+$( ".group" ).buttonset();
+```
+
+New:
+```js
+$( ".group" ).controlgroup();
+```
+
+Controlgroup also has an `items` option, but the signature is different. Instead of listing only the selectors to match button widgets, all supported widgets now have a key in the `items` option, with the selectors as the value:
+
+Old:
+```js
+$( ".group" ).buttonset( {
+ items: "button, span.btn"
+} );
+```
+
+New:
+```js
+$( ".group" ).controlgroup( {
+ items: {
+ button: "button, span.btn"
+ }
+} );
+```
+
+## Dialog
+
+### Deprecated `dialogClass` in favor of `classes.ui-dialog`
+
+[(#12161)](https://bugs.jqueryui.com/ticket/12161) The `dialogClass` option is now deprecated. Use the new [`classes`](//api.jqueryui.com/1.12/dialog/#option-classes) option with the `ui-dialog` property instead.
+
+Old:
+```js
+$( ".content" ).dialog( {
+ dialogClass: "payment-dialog"
+} );
+```
+
+New:
+```js
+$( ".content" ).dialog( {
+ classes: {
+ "ui-dialog": "payment-dialog"
+ }
+} );
+```
+
+## Draggable
+
+### Deprecated `distance` and `delay` options
+
+See [the notes for the mouse widget](#deprecated-distance-and-delay-options).
+
+## Droppable
+
+### Deprecated `activeClass` in favor of `classes.ui-droppable-active`
+
+[(#12162)](https://bugs.jqueryui.com/ticket/12162) The `activeClass` option is now deprecated. Use the new [`classes`](//api.jqueryui.com/1.12/droppable/#option-classes) option with the `ui-droppable-active` property instead.
+
+Old:
+```js
+$( ".target" ).droppable( {
+ activeClass: "drop-target"
+} );
+```
+
+New:
+```js
+$( ".target" ).droppable( {
+ classes: {
+ "ui-droppable-active": "drop-target"
+ }
+} );
+```
+
+### Deprecated `hoverClass` in favor of `classes.ui-droppable-hover`
+
+[(#12162)](https://bugs.jqueryui.com/ticket/12162) The `hoverClass` option is now deprecated. Use the new [`classes`](//api.jqueryui.com/1.12/droppable/#option-classes) option with the `ui-droppable-hover` property instead.
+
+Old:
+```js
+$( ".target" ).droppable( {
+ hoverClass: "drop-hover"
+} );
+```
+
+New:
+```js
+$( ".target" ).droppable( {
+ classes: {
+ "ui-droppable-hover": "drop-hover"
+ }
+} );
+```
+
+## Menu
+
+### Require wrappers for each menu item
+
+[(#10162)](https://bugs.jqueryui.com/ticket/10162) To resolve [several styling issues](https://bugs.jqueryui.com/ticket/10162), the menu widget now requires each menu item to be wrapped with a DOM element. The example below uses `
` elements for wrappers, but you can use any block-level element.
+
+Old:
+
+```html
+
+```
+
+New:
+
+```html
+
+```
+
+The autocomplete and selectmenu widgets, which both use menu internally, were both updated to include wrappers.
+
+
This is a breaking change. If you use menu directly in your project, you need to update its markup to include the wrappers. Otherwise you'll end up with a menu that looks wrong and can't be interacted with.
+
+### Use consistent styling for focused and active items
+
+[(#10692)](https://bugs.jqueryui.com/ticket/10692) We used to style active parent menu items with `ui-state-active`, while everything else got `ui-state-focus` (or `ui-state-hover`, which we style the same as focus). When a menu item in a submenu has focus, the parent menu item gets `ui-state-active`, which is inconsistent and confusing. We've now switched to using only the `ui-state-active` class.
+
+## Resizable
+
+### Deprecated `distance` and `delay` options
+
+See [the notes for the mouse widget](#deprecated-distance-and-delay-options).
+
+## Selectable
+
+### Deprecated `distance` and `delay` options
+
+See [the notes for the mouse widget](#deprecated-distance-and-delay-options).
+
+## Selectmenu
+
+### Require wrappers for each selectmenu item
+
+See the [changes in the menu widget](#require-wrappers-for-each-menu-item).
+
+### Added `_renderButtonItem()` method
+
+[(#10142)](https://bugs.jqueryui.com/ticket/10142) The [new extension method `._renderButtonItem()`](//api.jqueryui.com/1.12/selectmenu/#method-_renderButtonItem) makes customizations of how the selected item is rendered a lot easier.
+
+### Support `width: false` and default to 14em
+
+[(#11198)](https://bugs.jqueryui.com/ticket/11198) `width: null` still matches the width of the original element. `width: false` prevents an inline style from being set for the width. This makes it easy to set the width via a stylesheet and allows the use of any unit for setting the width, such as the new default of 14em, which is set through the stylesheet.
+
+### Uses `button.css`
+
+Instead of duplicating CSS, the selectmenu widget now reuses classes defined in `button.css`. If you're building jQuery UI manually, you need to include `button.css` as a dependency for selectmenu.
+
+## Slider
+
+### Added `handleIndex` to `start`, `slide`, `stop`, and `change` events
+
+[(#7630)](https://bugs.jqueryui.com/ticket/7630) Sliders now provide the index of the handle that's being moved inside the `start`, `slide`, `stop`, and `change` events. The index is provided in the `handleIndex` property of the `ui` parameter.
+
+```js
+$( "#slider" ).slider( {
+ values: [ 10, 20 ],
+ slide: function( event, ui ) {
+ console.log( "Handle " + ui.handleIndex + " moved to " + ui.value );
+ }
+} );
+```
+
+## Sortable
+
+### Deprecated `distance` and `delay` options
+
+See [the notes for the mouse widget](#deprecated-distance-and-delay-options).
+
+## Spinner
+
+### Deprecated `_buttonHtml()` and `_uiSpinnerHtml()` extension methods
+
+[(#11097)](https://bugs.jqueryui.com/ticket/11097) The `_buttonHtml()` and `_uiSpinnerHtml()` methods which were used to customize the markup generated for the spinner have been considerably simplified over time. At this point, the markup used is so minimal that we no longer feel it's necessary to include these extension points. As a result, these have been deprecated. Custom styling can still be accomplished via the `classes` option.
+
+## Tabs
+
+### Deprecated `ui-tab` class, replaced with `ui-tabs-tab`
+
+[(#12061)](https://bugs.jqueryui.com/ticket/12061) The tabs widget now adds the `ui-tabs-tab` class instead of the inconsistently named `ui-tab` to each tab element.
+
+## Tooltip
+
+### Deprecated `tooltipClass` in favor of `classes.ui-tooltip`
+
+[(#12167)](https://bugs.jqueryui.com/ticket/12167) The `tooltipClass` option is now deprecated. Use the new [`classes`](//api.jqueryui.com/1.12/tooltip/#option-classes) option with the `ui-tooltip` property instead.
+
+Old:
+```js
+$( ".content" ).tooltip( {
+ tooltipClass: "warning"
+} );
+```
+
+New:
+```js
+$( ".content" ).tooltip( {
+ classes: {
+ "ui-tooltip": "warning"
+ }
+} );
+```
+
+### Allow DOM elements and jQuery objects as content
+
+[(#9278)](https://bugs.jqueryui.com/ticket/9278) Tooltip now accepts HTMLElement and jQuery objects for the `content` option.
+
+## Widget
+
+### Ability to customize style-related CSS classes
+
+[(#7053)](https://bugs.jqueryui.com/ticket/7053) jQuery UI used to hardcode classes like `ui-corner-all` in widgets. We removed the hardcoding and added the ability to customize the style-related classes based on the functional classes. For the dialog, droppable and tooltip widgets, we replaced options that were doing just that.
+
+Here's an example using dialog:
+```js
+$( "#dialog" ).dialog( {
+ classes: {
+ "ui-dialog": "ui-corner-top awesome-fade-class",
+ "ui-dialog-titlebar": null
+ }
+} );
+```
+
+This will add the `ui-corner-top` and `awesome-fade-class` classes to the element which has the `ui-dialog` class, while also removing the default `ui-corner-all` class from the element which has the `ui-dialog-titlebar` class.
+
+### Added support for widget mixins
+
+[(#12601)](https://bugs.jqueryui.com/ticket/12601) The widget factory now supports mixins so that you can have common behaviors shared across many widgets in scenarios where inheritance doesn't make sense. Until now, this required manually extending the widget prototype with the mixins. Under the hood, this is all that's happening, but there's now dedicated syntax to make calls to the widget factory a little cleaner.
+
+Old:
+```js
+$.widget( "demo.widget", $.extend( {}, someMixin, someOtherMixin, {
+
+ // Widget prototype
+} );
+```
+
+New:
+```js
+$.widget( "demo.widget", [ someMixin, someOtherMixin, {
+
+ // Widget prototype
+} ] );
+```
+
+### Added form reset mixin
+
+[(#12638)](https://bugs.jqueryui.com/ticket/12638) A form reset mixin has been added to simplify the logic of refreshing form elements when their associated form is reset. For full details see the [form reset mixin documentation](//api.jqueryui.com/1.12/form-reset-mixin/).
+
+## Effects
+
+### Converted transfer effect to a jQuery plugin method
+
+[(#14749)](https://bugs.jqueryui.com/ticket/14749) The transfer effect was available through the extended `.show()`, `.hide()` and `.toggle()` methods, which was a side-effect of exposing it as an effect, but made no semantic sense. The effect is now available exclusively through the `.transfer()` method.
+
+Old:
+```js
+$( ".from" ).effect( "transfer", {
+ to: $( ".target" )
+} );
+```
+
+New:
+```js
+$( ".from" ).transfer( {
+ to: $( ".target" )
+} );
+```
+
+### Added `.cssClip()`
+
+The new [`.cssClip()` method](//api.jqueryui.com/1.12/cssClip/) is a convenience method for getting and setting the CSS `clip` property as an object. The object contains `top`, `right`, `bottom`, and `left` properties. For example, if you want to clip off 10 pixels from the right side of an element:
+
+```js
+var element = $( ".elem" );
+var clip = element.cssClip();
+clip.right -= 10;
+element.cssClip( clip );
+```
+
+### Added low-level effects APIs
+
+A number of new low-level effects APIs have been created to aid in the development of custom effects.
+
+* [`$.effects.define()`](//api.jqueryui.com/1.12/jQuery.effects.define/): Defines an effect.
+* [`$.effects.scaledDimensions()`](//api.jqueryui.com/1.12/jQuery.effects.scaledDimensions/): Scales the dimensions of an element.
+* [`$.effects.clipToBox()`](//api.jqueryui.com/1.12/jQuery.effects.clipToBox/): Calculates position and dimensions based on a clip animation.
+* [`$.effects.saveStyle()`](//api.jqueryui.com/1.12/jQuery.effects.saveStyle/): Stores a copy of all inline styles applied to an element.
+* [`$.effects.restoreStyle()`](//api.jqueryui.com/1.12/jQuery.effects.restoreStyle/): Restores all inline styles for an element.
+* [`$.effects.createPlaceholder()`](//api.jqueryui.com/1.12/jQuery.effects.createPlaceholder/): Creates a placeholder to support `clip` animations without disrupting the layout.
+* [`$.effects.removePlaceholder()`](//api.jqueryui.com/1.12/jQuery.effects.removePlaceholder/): Removes a placeholder created with `$.effects.createPlaceholder()`.
+
+## Theme
+
+### Removed `ui-icon-carat-*` classes; renamed to `ui-icon-caret-*`
+
+[(#15022)](https://bugs.jqueryui.com/ticket/15022) The caret icons all had a typo in their names, which has now been fixed.
diff --git a/page/upgrade-guide/1.13.md b/page/upgrade-guide/1.13.md
new file mode 100644
index 0000000..416fcd7
--- /dev/null
+++ b/page/upgrade-guide/1.13.md
@@ -0,0 +1,94 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.12.x to jQuery UI 1.13.x. All changes are listed below, organized by plugin, along with how to upgrade your code to work with jQuery UI 1.13.
+
+## Reminder: API Redesigns
+
+jQuery UI 1.12 introduced API redesigns for Button, Buttonset, Dialog, Draggable, Droppable, Menu, Mouse, Resizable, Selectable, Sortable, Tabs, Tooltip, and Effects. You can read about the API redesign process on the
+[jQuery UI Blog](https://blog.jqueryui.com/2011/03/api-redesigns-the-past-present-and-future/). Although the redesigns introduced breaking changes, **1.12 & 1.13 maintain a lot of compatibility with the 1.11 API by default.** This is accomplished by rebuilding the 1.11 API on top of the 1.12/1.13 API. The default behavior for all 1.12 & 1.13 releases will be to simultaneously use the 1.11 and 1.12/1.13 APIs where possible. If you would like to load just the 1.12/1.13 API without the 1.11 API to prepare for removal of these legacy APIs, you can set the `$.uiBackCompat` flag to `false`.
+
+```html
+
+
+
+```
+
+
If you find a regression from the 1.11 API, please report it in the bug tracker . Even though the 1.11 API is deprecated, it's important for 1.13 releases not to regress so that users are encouraged to upgrade even if they're not ready to use the new APIs.
+
+## General changes
+
+The main focus of this release was improving compatibility with recent jQuery versions. Removal of deprecated APIs and removal of legacy browser support are not included. Therefore, the number of breaking changes is extremely limited compared to previous upgrades.
+
+### Security fixes
+
+A few security fixes have landed in this release; they're marked with their assigned CVEs below.
+
+### Strict mode
+
+Both the compiled jQuery UI JavaScript files and all individual AMD modules now use ECMAScript 5 strict mode. This shouldn't be noticeable to most users; some older debugging tools may not be able to step through the code, though.
+
+A similar change has been live in jQuery since version 3.0.0, so we're optimistic this will not cause issues for jQuery UI either.
+
+### Files & directory structure
+
+There have been some minor changes to source files:
+* Source has been migrated from JSHint + JSCS to ESLint. The linter config files are no longer included in the `jquery-ui` npm package.
+* The file `jquery-1-7.js` has been renamed to `ui/jquery-patch.js` since it includes patches for all jQuery versions from 1.8 to 3.4 inclusive.
+* The jQuery Color library is no longer inlined into the `ui/effects.js` module; instead, it lies in `ui/vendor/jquery-color/jquery-color.js` and `ui/effects.js` declares an AMD dependency on the file.
+* The file `ui/escape-selector.js` has been removed.
+
+### Newer Core features
+
+As part of making sure jQuery UI doesn't depend on deprecated Core APIs, we started using some newer Core APIs, polyfilling them in the `jquery-patch.js` file for older jQuery versions. If you haven't included `jquery-1-7.js` in your bundle of jQuery UI 1.12.x, you may still need to include `jquery-patch.js` when migrating to UI 1.13.x; it's required for all jQuery versions older than 3.5.0.
+
+### Dropped support for jQuery 1.7
+
+([gh-1923](https://github.com/jquery/jquery-ui/pull/1923), [b61b16b](https://github.com/jquery/jquery-ui/commit/b61b16b5a89ee27b30efdf7635d897af810af130)) jQuery UI no longer supports jQuery 1.7. The minimal supported version is now 1.8.0.
+
+### Dropped `$.ui.escapeSelector`
+
+The private `$.ui.escapeSelector` API has been dropped in favor of a jQuery `$.escapeSelector` one. That API is only available in jQuery 3.0.0 & newer but jQuery UI polyfills it via `ui/jquery-patch.js` for older jQuery versions.
+
+## Accordion
+
+### Added function value for a `header` option
+
+([gh-1904](https://github.com/jquery/jquery-ui/pull/1904), [0c860b0](https://github.com/jquery/jquery-ui/commit/0c860b0d92f9959f6747f8c02e9671eb2fc561aa)) Accordion’s [`header` option](https://api.jqueryui.com/accordion/#option-header) may now accept not only a selector matching header elements:
+```js
+$( ".selector" ).accordion( {
+ header: "h3"
+} );
+```
+but also a function taking the accordion element as a parameter and returning the header elements:
+```js
+$( ".selector" ).accordion( {
+ header: function ( accordionElement ) {
+ return accordionElement.find( "h3" );
+ }
+} );
+```
+
+## Datepicker
+
+### Added `onUpdateDatepicker` callback
+
+([gh-1912](https://github.com/jquery/jquery-ui/pull/1912), [17d115b](https://github.com/jquery/jquery-ui/commit/17d115b8298b935ab0d26b881d4f6f3e83984868), [a12c985](https://github.com/jquery/jquery-ui/commit/a12c98574d07f002fd59d166f9fc1fd391581b91)) Datepicker options now include the optional [`onUpdateDatepicker` callback](https://api.jqueryui.com/datepicker/#option-onUpdateDatepicker), called when the datepicker widget’s DOM is updated.
+
+### `altField` no longer accepts HTML input
+
+([CVE-2021-41182](https://github.com/jquery/jquery-ui/security/advisories/GHSA-9gj3-hwp5-pmwc), [gh-1954](https://github.com/jquery/jquery-ui/pull/1954), [3285086](https://github.com/jquery/jquery-ui/commit/32850869d308d5e7c9bf3e3b4d483ea886d373ce)) Due to a bug, the [`altField` option](https://api.jqueryui.com/datepicker/#option-altField) used to accept HTML input that created fresh elements. This is now fixed and all string input is treated as a CSS selector.
+
+### Various `*Text` options no longer accept HTML input
+
+([CVE-2021-41183](https://github.com/jquery/jquery-ui/security/advisories/GHSA-j7qv-pgf6-hvh4), [trac-15284](https://bugs.jqueryui.com/ticket/15284), [gh-1953](https://github.com/jquery/jquery-ui/pull/1953), [afe20b7](https://github.com/jquery/jquery-ui/commit/afe20b79a64266e64011f34b26a30b3d1c62fd47)) Various [Datepicker](https://api.jqueryui.com/datepicker/) `*Text` options: [`appendText`](https://api.jqueryui.com/datepicker/#option-appendText), [`buttonText`](https://api.jqueryui.com/datepicker/#option-buttonText), [`closeText`](https://api.jqueryui.com/datepicker/#option-closeText), [`currentText`](https://api.jqueryui.com/datepicker/#option-currentText), [`nextText`](https://api.jqueryui.com/datepicker/#option-nextText) and [`prevText`](https://api.jqueryui.com/datepicker/#option-prevText) used to erroneously accept HTML input despite never documented to do so. That disconnect between docs & reality can lead to security issues so the options now only accept text input.
+
+## Position
+
+### `of` is treated as a CSS selector
+
+([CVE-2021-41184](https://github.com/jquery/jquery-ui/security/advisories/GHSA-gpqq-952q-5327), [gh-1955](https://github.com/jquery/jquery-ui/pull/1955), [effa323](https://github.com/jquery/jquery-ui/commit/effa323f1505f2ce7a324e4f429fa9032c72f280)) Due to a bug, the [`of` option](https://api.jqueryui.com/position/#position-options-options) used to accept HTML input that created fresh elements. This is now fixed and all string input is treated as a CSS selector.
diff --git a/page/upgrade-guide/1.14.md b/page/upgrade-guide/1.14.md
new file mode 100644
index 0000000..e06e7b4
--- /dev/null
+++ b/page/upgrade-guide/1.14.md
@@ -0,0 +1,83 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.13.x to jQuery UI 1.14.x. All changes are listed below, organized by plugin, along with how to upgrade your code to work with jQuery UI 1.14.
+
+## Reminder: API Redesigns
+
+jQuery UI 1.12 introduced API redesigns for Button, Buttonset, Dialog, Draggable, Droppable, Menu, Mouse, Resizable, Selectable, Sortable, Tabs, Tooltip, and Effects. You can read about the API redesign process on the
+[jQuery UI Blog](https://blog.jqueryui.com/2011/03/api-redesigns-the-past-present-and-future/). Although the redesigns introduced breaking changes, **1.12, 1.13 & maintain a lot of compatibility with the 1.11 API by default.** This is accomplished by rebuilding the 1.11 API on top of the 1.12/1.13/1.14 API. However, since 1.14, the default behavior is only loading the new API. If you would like to load the legacy 1.11 API as well, you can set the `$.uiBackCompat` flag to `true`.
+
+```html
+
+
+
+```
+
+
If you find a regression from the 1.11 API, please report it in the bug tracker . Even though the 1.11 API is deprecated, it's important for 1.14 releases not to regress so that users are encouraged to upgrade even if they're not ready to use the new APIs.
+
+## General changes
+
+The main focus of this release was reducing the maintenance. This resulted in a few breaking changes.
+
+### Reduced browser support
+
+Only the latest version of Chrome, Firefox, Safari & Edge are officially supported; there is no support for any version of IE and Edge Legacy. Contrary to what was done in past releases, code supporting unsupported browsers has been deleted.
+
+### Reduced jQuery support
+
+Only the latest jQuery version within each major version of jQuery is supported. To make updates easier, we also run tests with a few other relatively recent versions, but we don't guarantee continued support for them in all jQuery UI releases in the `1.14.x` line. Each jQuery UI version will document on which jQuery versions it was tested - both in the release blog post and in the changelog page at https://jqueryui.com/changelog/.
+
+### The backwards compatibility flag is off by default
+
+Backwards compatibility with the 1.11 API is disabled by default. To re-enable it (restoring the default 1.13 behavior), set the `jQuery.uiBackCompat` flag to true.
+
+### Removed APIs
+
+The following APIs have been removed:
+* `$.fn._form`. Instead of `$( elem )._form()`, use `$( elem ).prop( "form" )`.
+* `$.ui.ie`. No version of IE is supported anymore and this API already only reported IE <11.
+* `$.ui.safeActiveElement`. Use native `document.activeElement`.
+* `$.ui.safeBlur`. Instead of `$.ui.safeBlur( elem )`, use `$( elem ).trigger( "blur" )`.
+
+### Files & directory structure
+
+There have been some minor changes to source files:
+* The deprecated file `ui/core.js` has been removed.
+* Files defining removed APIs have been removed. This includes: `ui/form.js`, `ui/ie.js`, `ui/safe-active-element.js` & `ui.safe-blur.js`.
+* Directories `.github`, `build` & `external` have been removed from the npm package
+
+### Newer jQuery features
+
+As part of making sure jQuery UI doesn't depend on deprecated jQuery APIs, in 1.13 we started using some newer jQuery APIs, polyfilling them in the `jquery-patch.js` file for older jQuery versions. In 1.14, that file is deprecated and it's no longer required for compatibility with some older supported jQuery versions. It is provided for backwards compatibility - so that apps depending on those patches continue to work after the upgrade. The file has no effect in jQuery 3.5.0 or newer.
+
+### Improved tests on PRs
+
+jQuery UI 1.14 is tested in all supported browsers & jQuery versions not only post-merge as was done in the past, but also on every pull request via GitHub Actions.
+
+## Datepicker
+
+When the datepicker UI is shown and then destroyed programmatically:
+```js
+$( "#datepicker" ).datepicker( "destroy" );
+```
+the UI will now be hidden without the need for an explicit user action. Previously, in 1.12 the UI would not disappear immediately but only after the first `mousedown`. In later 1.13 versions, the UI would not disappear at all.
+
+## Effects
+
+The bundled jQuery Color version has been updated from v2 to v3. This changes the serialized values of color properties to include a space after each comma; e.g. `rgb(127, 127, 127)` instead of `rgb(127,127,127)`. Also, transparent values now report `rgba(0, 0, 0, 0)` instead of `transparent`. This matches the standard browser serialization. It mostly affects direct usage of jQuery Color, for example:
+```js
+// jQuery Color 2.x:
+jQuery.Color( 0, 100, 200 ) + ""; // "rgb(0,100,200)"
+jQuery.Color( 0, 100, 200, 0 ) + ""; // "transparent"
+jQuery.Color( 0, 0, 0, 0 ) + ""; // "transparent"
+
+// jQuery Color 3.x:
+jQuery.Color( 0, 100, 200 ) + ""; // "rgb(0, 100, 200)"
+jQuery.Color( 0, 100, 200, 0 ) + ""; // "rgab(0, 100, 200, 0)"
+jQuery.Color( 0, 0, 0, 0 ) + ""; // "rgab(0, 0, 0, 0)"
+```
diff --git a/page/upgrade-guide/1.7.md b/page/upgrade-guide/1.7.md
new file mode 100644
index 0000000..64e19b8
--- /dev/null
+++ b/page/upgrade-guide/1.7.md
@@ -0,0 +1,218 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.5.x to jQuery UI 1.7.x.
+All changes are listed below, organized by plugin, along with how to upgrade
+your code to work with jQuery UI 1.7.
+
+## Accordion
+
+* Renamed `alwaysOpen` option to `collapsible` (`alwaysOpen` is deprecated, to
+be removed in next release).
+* Removed `selectedClass` for consistency reasons to the CSS Framework.
+* Added `resize()` method.
+* Added `changestart` callback that is triggered before the animation starts.
+* Removed deprecated separate jQuery method `.activate()` (use
+`accordion( "activate" )` instead).
+* Improved default for `header` option, removing the need to specify the option
+in 99% of all accordions.
+
+## Datepicker
+
+* Removed options:
+ * `clearStatus`
+ * `clearText`
+ * `closeAtTop`
+ * `closeStatus`
+ * `currentStatus`
+ * `dateStatus`
+ * `dayStatus`
+ * `highlightWeek`
+ * `initStatus`
+ * `mandatory`
+ * `monthStatus`
+ * `nextBigStatus`
+ * `nextBigText`
+ * `nextStatus`
+ * `prevBigStatus`
+ * `prevBigText`
+ * `prevStatus`
+ * `rangeSelect`
+ * `rangeSeparator`
+ * `showBigPrevNext`
+ * `showStatus`
+ * `showWeeks`
+ * `statusForDate`
+ * `weekHeader`
+ * `weekStatus`
+ * `yearStatus`
+* Modified options:
+ * `changeMonth to default `false` - was `true`
+ * `changeYear to default `false` - was `true`
+* Added options:
+ * `showButtonPanel` (default `false`)
+* Added localizations:
+ * Serbian
+ * Greek
+ * Malaysian
+ * Albanian
+ * Persian
+ * Esperanto
+ * Croatian
+
+## Dialog
+
+* Related events are now passed to all triggered events/callbacks (so for
+example `keyCode` information is now available).
+* Removed `options` and `element` from `ui` hash.
+* Removed `overlay` option (workaround: use the CSS Framework to style the
+overlay).
+* The default `height` is now set to `"auto"` so it stretches the dialog by
+default to the content height.
+* Removed `autoResize` option (now always auto resizes).
+* Added `closeText` option (default `"close"`).
+* Added `beforeclose` callback for dialogs (can prevent closing the dialog by
+returning `false`).
+* Added `ui-dialog-dragging` and `ui-dialog-resizing` during drag and resize.
+* Removed (undocumented) options: `dragHelper`, `resizeHelper`. If you need to
+hide a dialog's contents during drag (for performance reasons), here are
+two work-arounds:
+
+CSS:
+```css
+.ui-dialog-dragging .ui-dialog-content {
+ display: none;
+}
+```
+
+JS:
+```js
+$( "#dialog" ).dialog({
+ dragStart: function() {
+ $( this ).hide();
+ },
+ dragStop: function() {
+ $( this ).show();
+ }
+});
+```
+
+## Draggable
+
+* Removed `options` from `ui` hash.
+* Deprecated `absolutePosition` in `ui` hash, use `offset` instead.
+* Added `addClasses` option.
+* `connectToSortable` option now accepts selectors.
+* Padding is now taken account in `containment` (previously, you could drag
+"beyond" the padding).
+* Added a `revertDuration` option since `revert` no longer checks for numbers.
+* Implemented more advanced features to the `snap` option - you can now pass in
+an object instead of a boolean into `snap`, possible keys are the callbacks
+`snap`/`release` (which both receive `ui.snapItem`) and `items` (jQuery
+selector, defaults to `:data(draggable)`).
+
+## Droppable
+
+* Added `addClasses` option.
+* Deprecated `absolutePosition` in `ui` hash, use `offset` instead.
+* In the `accept` function the context (`this`) is now the DOMElement, not a
+wrapped jQuery object.
+
+## Sortable
+
+* Added support for `helper: "original"`. This way, the original element is
+dragged while the placeholder gets reordered in the DOM, and on `mouseup`, the
+DOM positions of placeholder and original switch. This is the recommended mode
+from now on because it doesn't involve copying the element. For legacy reasons,
+if you want to have it behave exactly like the old sortables, set the helper
+option to `"clone"`.
+* `appendTo` option is ignored if the helper option is set to `"original"`
+(which is the default).
+* Added `forcePlaceholderSize` option to force setting the height and width of
+the placeholder to the height and width of the clicked element.
+* Implemented the option `connected` (boolean), for the `serialize()` method to
+also serialize connected lists.
+* Stop logic overhaul:
+ * `stop` (and all other events that are fired on end (`receive`, `update`,
+ `remove`, `deactivate`)) is triggered after everything else has been
+ normalized (placeholder and helper removed, position restored).
+ * For old behavior (for example to be able to check something on the
+ placeholder at end), introduced new `beforeStop` callback.
+* If a `key` option is specified to `sortable( "serialize" )`, brackets are no
+longer automatically added to it.
+* New cancelling logic:
+ * If you want to completely cancel a sort (practically undo the ongoing sort),
+ return `false` in any of the callbacks.
+ * Or instead, call the `cancel()` method on the sortable.
+* Refactored intersection logic:
+ * Removed `"guess"` tolerance.
+ * Introduced intelligent `"intersect"` tolerance (default).
+* `connectWith` option now accepts selectors.
+* Deprecated `absolutePosition` in `ui` hash, use `offset` instead.
+* Padding is now taken account in `containment` (previously, you could drag
+"beyond" the padding).
+
+## Selectable
+
+* Removed `element` and `options` from `ui` hash.
+* Added missing `ui-selectable-helper` class to helper/lasso element.
+
+## Slider
+
+* `axis` option was changed to `orientation` for consistency with other plugins.
+* `handle` option removed.
+* `handles` option removed.
+ * You can create custom handles manually and then simply add the class
+`ui-slider-handle` and the slider will pick them up (not auto-gen).
+* `ui.handle` property (in callback function) was changed to a DOMElement,
+instead of a jQuery object.
+ * Change `ui.handle` to `$( ui.handle )`.
+* `steps`/`stepping` options removed in favor of `step` option.
+* `startValue` and `moveTo` removed in favor of `value` and `values` options and
+methods.
+* `round` option removed.
+* `distance` option removed.
+* `noKeyboard` option removed.
+* New range options: `min` and `max`.
+* Handles are now left-aligned at the value. To center-align them, give the
+handle a negative `margin-left` of `handlewidth / 2`. For example:
+
+```css
+.ui-slider-handle {
+ width: 12px;
+ margin-left: -6px;
+}
+```
+
+For vertical slider handles, do the same with `height` and `margin-bottom`.
+
+## Resizable
+
+* Changed options:
+ * `alsoResize` now accepts selector.
+* Removed options:
+ * `transparent` (workaround: use CSS).
+ * `preserveCursor` (there's no usecase for `preserveCursor` set to `false`).
+ * `proportionallyResize` (use `alsoResize` instead).
+ * `knobHandles`
+
+## Tabs
+
+* Markup requires a container for list and panels, thus can no longer tabify a
+`
` directly. Instead, must call `.tabs()` on the containing element. In
+other words, replace `$( "#tabs > ul" ).tabs();` with `$( "#tabs" ).tabs();`.
+* Removed `options` from `ui` event object.
+* Renamed `deselectable` option to `collapsible` (`deselectable` is deprecated,
+to be removed in next release).
+* Deprecated `null` as value for `selected` option in order to initialize tabs
+without active tab, instead use `-1`.
+* Removed ability to change class names via options.
+* Added `abort()` method to terminate running ajax tab requests and animations.
+* `cookie` option accepts additional `name` property.
+* States for hover and focus (`.ui-state-hover`, `.ui-state-focus`) added.
+* Default value for `spinner` option changed to `"Loading… "` (before
+`em` was added internally).
diff --git a/page/upgrade-guide/1.8.11.md b/page/upgrade-guide/1.8.11.md
new file mode 100644
index 0000000..3f300be
--- /dev/null
+++ b/page/upgrade-guide/1.8.11.md
@@ -0,0 +1,28 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.8.10 to jQuery UI 1.8.11.
+All changes are listed below, organized by plugin, along with how to upgrade
+your code to work with jQuery UI 1.8.11.
+
+## Autocomplete
+
+### Added `autoFocus` option
+
+([#7032](https://bugs.jqueryui.com/ticket/7032))
+A new option has been added to automatically focus the first item in the search
+results. This reduces the number of key presses needed to select an item from
+the list and makes selecting the first result as easy as tabbing away from the
+field once the menu is displayed. This option is off by default, to turn it on,
+simply set the `autoFocus` option to `true`.
+
+```js
+$( "#autocomplete" ).autocomplete({
+ source: [ "hello", "world" ],
+ autoFocus: true
+});
+```
diff --git a/page/upgrade-guide/1.8.4.md b/page/upgrade-guide/1.8.4.md
new file mode 100644
index 0000000..7f576c9
--- /dev/null
+++ b/page/upgrade-guide/1.8.4.md
@@ -0,0 +1,230 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.8.3 to jQuery UI 1.8.4.
+All changes are listed below, organized by plugin, along with how to upgrade
+your code to work with jQuery UI 1.8.4.
+
+## Core
+
+### Added dimension setters
+
+([#5850](https://bugs.jqueryui.com/ticket/5850))
+The following method signatures have been added for setting dimensions:
+
+* Added `.innerWidth( value )` to set the width, including padding.
+* Added `.innerHeight( value )` to set the height, including padding.
+* Added `.outerWidth( value, [includeMargin] )` to set the width, including
+padding and borders, and optionally margins.
+* Added `.outerHeight( value, [includeMargin] )` to set the height, including
+padding and borders, and optionally margins.
+
+## Accordion
+
+### Added ability to specify multiple events
+
+([#3614](https://bugs.jqueryui.com/ticket/3614))
+You can now pass multiple event types, space delimited, to the `event` option.
+Although there isn't really any combination of native events that make sense to
+use together, there are cases where using multiple custom events, or a
+combination of native and custom events is useful.
+
+For example, if you're using the hover intent plugin, you can set the accordion
+to react to both the `click` event and the `hoverintent` event:
+
+```js
+$( "#accordion" ).accordion({
+ event: "click hoverintent"
+});
+```
+
+## Autocomplete
+
+### Added `appendTo` option
+
+([#5836](https://bugs.jqueryui.com/ticket/5836))
+You can now define which element the menu is appended to. The default is to
+append to the body, which is the previous behavior. The `appendTo` option takes
+any valid selector. If the selector matches multiple elements, the menu will be
+appended to the first matched item.
+
+```js
+$( "#autocomplete" ).autocomplete({
+ appendTo: "#foo"
+});
+```
+
+### Added position option
+
+([#5153](https://bugs.jqueryui.com/ticket/5153))
+You can now define where the menu will be displayed. The default is to display
+the menu below the text field, with the left edges aligned. The full
+[position API](https://api.jqueryui.com/position/) is available for use.
+
+To have the menu display above the text field, you can do:
+
+```js
+$( "#autocomplete" ).autocomplete({
+ position: {
+ my: "left bottom",
+ at: "left top"
+ }
+});
+```
+
+### Removed styling for `ui-autocomplete-loading` class
+
+([#5385](https://bugs.jqueryui.com/ticket/5385))
+Previously the loading class would add an animated loading gif to the background
+of the text field. This has been removed until ThemeRoller can support
+generating animated images.
+
+You can recreate the previous styling by defining a rule for the
+`ui-autocomplete-loading` class in your stylesheet:
+
+```css
+.ui-autocomplete-loading {
+ background: #f00 url("images/loading.gif") right center no-repeat;
+}
+```
+
+### Labels are now treated as text, not HTML
+
+([#5275](https://bugs.jqueryui.com/ticket/5275))
+If you want the old functionality back, you can use
+[Scott González' html extension](https://github.com/scottgonzalez/jquery-ui-extensions/blob/master/src/autocomplete/jquery.ui.autocomplete.html.js)
+which adds a boolean `html` option.
+
+## Dialog
+
+### Added ability to use the [position API](https://api.jqueryui.com/position/) for the `position` option
+
+([#5459](https://bugs.jqueryui.com/ticket/5459))
+Passing a string or array to the `position` option still works, but will be
+removed in a future version.
+
+If you're currently using strings for the `position` option, you will now need
+to pass an object containing two properties: `my` and `at`, each with the same
+string you're passing now. For example, if you're currently doing:
+
+```js
+$( "#dialog" ).dialog({
+ position: "left"
+});
+```
+
+You should switch to:
+
+```js
+$( "#dialog" ).dialog({
+ position: {
+ my: "left",
+ at: "left"
+ }
+});
+```
+
+If you're currently using arrays for the `position` option, you will now need
+to pass an object telling the dialog to position itself in the top left corner,
+with an offset equal to what you're currently passing. For example, if you're
+currently doing:
+
+```js
+$( "#dialog" ).dialog({
+ position: [ 20, 100 ]
+});
+```
+
+You should switch to:
+
+```js
+$( "#dialog" ).dialog({
+ position: {
+ my: "left top",
+ at: "left top",
+ offset: "20 100"
+ }
+});
+```
+
+Note that `offset` is a string containing both the horizontal and vertical
+offset delimited by a space.
+
+### Buttons are now accessed in the proper order
+
+([#4529](https://bugs.jqueryui.com/ticket/4529))
+Previously the default styling for buttons was to have them float right, causing
+them to be ordered and tabbed to in reverse order. A wrapper div has been added
+around the buttons, and the wrapper is now floated right. This means that if you
+have dialogs with multiple buttons, the order will be different.
+
+Let's assume you've created a dialog with the following options:
+
+```js
+$( "#dialog" ).dialog({
+ buttons: {
+ OK: function() {},
+ Cancel: function() {}
+ }
+});
+```
+
+In previous versions, this would results in the OK button being displayed on the
+right and the Cancel button being displayed on the left, which is the opposite
+from how they're ordered in the object. However, when tabbing through the dialog,
+the OK button would gain focus before the Cancel button.
+
+In 1.8.4, this will result in the OK button being displayed on the left and the
+Cancel button being displayed on the right. The buttons will still be tabbed
+through in the same order, following the tab order users would expect based on
+the visual layout.
+
+If you want your buttons to continue displaying in the same visual order as they
+have been, you will need to define your buttons in the reverse order from what
+you're currently using. So the above code would become:
+
+```js
+$( "#dialog" ).dialog({
+ buttons: {
+ Cancel: function() {},
+ OK: function() {}
+ }
+});
+```
+
+## Tabs
+
+### Added ability to reference tabs by href
+
+([#3171](https://bugs.jqueryui.com/ticket/3171))
+Let's assume you have a set of tabs created from the following list:
+
+```html
+
+```
+
+You can activate the bar tab by calling the `select()` method with an index
+of `1`:
+
+```js
+$( "#tabs" ).tabs( "select", 1 );
+```
+
+However, keeping track of the index for each tab can be difficult, especially
+if you've customized your tabs by making them closable or sortable. To make this
+easier, we've added the ability to pass the `href` instead of the index:
+
+```js
+$( "#tabs" ).tabs( "select", "#bar" );
+```
+
+The same syntax can be used for the `enable()`, `disable()`, `load()` and
+`remove()` methods.
diff --git a/page/upgrade-guide/1.8.5.md b/page/upgrade-guide/1.8.5.md
new file mode 100644
index 0000000..71aebfa
--- /dev/null
+++ b/page/upgrade-guide/1.8.5.md
@@ -0,0 +1,96 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.8.4 to jQuery UI 1.8.5.
+All changes are listed below, organized by plugin, along with how to upgrade
+your code to work with jQuery UI 1.8.5.
+
+## Button
+
+### `disabled` attribute is read on initialization
+
+([#5252](https://bugs.jqueryui.com/ticket/5252))
+By default the Button widget now determines whether the button should be enabled
+or disabled on initialization by reading the `disabled` attribute from the
+original element. You can still pass `true` or `false` on initialization to
+explicitly set a specific state.
+
+## Datepicker
+
+### Date parsing is now case-insensitive
+
+([#6036](https://bugs.jqueryui.com/ticket/6036))
+Previously, the Datepicker widget required dates to be formatting with specific
+capitalization, e.g., `"01 Mar 2010"`. Now you can enter dates with any
+capitalization you want, e.g., `"01 mar 2010"`, and it will be interpreted
+properly.
+
+## Dialog
+
+## Improved `button` option
+
+Until now it has only been possible to set the text and callback for buttons in
+the Dialog widget. Now you have complete control over the attributes of the
+button by providing an object of attributes to set.
+
+```js
+$( "#dialog" ).dialog({
+ buttons: [
+ {
+ text: "OK",
+ click: function() {
+ alert( "You clicked OK!" );
+ }
+ },
+ {
+ html: "I'm a styled button",
+ "class": "ui-priority-secondary",
+ disabled: "disabled",
+ click: function() {
+ alert( "How did you click a disabled button?!?" );
+ }
+ }
+ ]
+});
+```
+
+The older, simpler syntax will continue to be supported as well.
+
+## Position
+
+### The `of` option now accepts jQuery objects containing a document or window
+
+([#5963](https://bugs.jqueryui.com/ticket/5963))
+The Position utility is extremely flexible, allowing you to position an element
+relative to any other element by specifying a selector, a jQuery object, the
+document or the window. Now you can also pass a jQuery object containing a
+document or window, e.g., `$( document )` and `$( window )`.
+
+### Collision now takes margin into account
+
+([#5766](https://bugs.jqueryui.com/ticket/5766))
+When performing collision detection, the margin around the element being
+positioned is now taken into account. This means that if you have ten pixels of
+margin on the right of the element, the right side of the element won't be able
+to get closer than ten pixels from the right side of the window when collision
+is turned on (assuming you're positioning to the right).
+
+## Tabs
+
+### Ability to contain lists inside a tab
+
+Tabs can now contain lists. This is useful for creating menus inside a tab.
+
+## Widget
+
+### Widgets now throw errors for invalid method calls
+
+([#5972](https://bugs.jqueryui.com/ticket/5972))
+When calling a method that doesn't exist, or calling a method before a widget
+has been initialized, the widget will now throw an exception. Previously the
+method calls were simply ignored, which could mask errant code, since such calls
+are likely logic errors.
diff --git a/page/upgrade-guide/1.8.6.md b/page/upgrade-guide/1.8.6.md
new file mode 100644
index 0000000..8a12b5a
--- /dev/null
+++ b/page/upgrade-guide/1.8.6.md
@@ -0,0 +1,115 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.8.5 to jQuery UI 1.8.6.
+All changes are listed below, organized by plugin, along with how to upgrade
+your code to work with jQuery UI 1.8.6.
+
+## Widget
+
+### Added ability to define new methods for gathering options on initialization
+
+([#6158](https://bugs.jqueryui.com/ticket/6158))
+Sometimes you want to allow users to specify options through a method other
+than passing an object during initialization. For example, you may want to allow
+users to specify options through data attributes, but still have any options
+passed during initialization take precedence. This is now possibly by defining a
+`_getCreateOptions()` method.
+
+Here's an example from jQuery Mobile which will check for data attributes based
+on which options are defined in the widget's prototype:
+
+```js
+_getCreateOptions: function() {
+ var elem = this.element,
+ options = {};
+ $.each( this.options, function( option ) {
+ var value = elem.data( option.replace( /[A-Z]/g, function( c ) {
+ return "-" + c.toLowerCase();
+ } ) );
+ if ( value !== undefined ) {
+ options[ option ] = value;
+ }
+ });
+ return options;
+}
+```
+
+### Widgets no longer throw errors for invalid method calls
+
+([#5972](https://bugs.jqueryui.com/ticket/5972))
+In 1.8.5, widgets started throwing errors when calling a method that doesn't
+exist, or calling a method before a widget has been initialized. We have
+reverted back to the previous behavior of simply ignoring these calls because
+this was a breaking change that should not have been introduced in a minor
+release. However, we will go back to throwing errors in the next major release.
+
+## Autocomplete
+
+### Allow default behavior on enter when menu is open but inactive
+
+([#6038](https://bugs.jqueryui.com/ticket/6038))
+([#6055](https://bugs.jqueryui.com/ticket/6055))
+Previously when pressing enter while the menu was open, we would prevent the
+default action only if a menu item was active (highlighted). We now prevent the
+default action solely based on the visibility of the menu, so even if no menu
+item is active, we still prevent the default action. This prevents forms from
+submitting when the user is just trying to enter a value in the text field.
+Additionally, there was a bug in Opera where the form would be submitted even
+when we prevented the default action; this has been fixed.
+
+### Split menu resizing logic into its own method
+
+The code for resizing the menu after each search has been moved out of the
+`_suggest()` method and into a new `_resizeMenu()` method. This provides a more
+logical method to override if you are trying to implement custom menu sizing.
+
+## Dialog
+
+### Don't change DOM position on open
+
+([#6137](https://bugs.jqueryui.com/ticket/6137))
+([#4589](https://bugs.jqueryui.com/ticket/4589))
+([#4534](https://bugs.jqueryui.com/ticket/4534))
+Dialogs no longer get moved around in the DOM when they are opened. The only
+time the dialog is moved now is during initialization when it is appended to the
+body. This fixes a slew of problems, such as form elements being reset, iframes
+reloading, etc.
+
+## Progressbar
+
+### Added `complete` event
+
+([#3500](https://bugs.jqueryui.com/ticket/3500))
+Progressbar now has a `complete` event that is triggered when the `value` option
+reaches the same value as the `max` option.
+
+```js
+$( "#progressbar" ).progressbar({
+ complete: function() {
+ alert( "The action is complete!" );
+ }
+});
+
+$( ":ui-progressbar" ).live( "progressbarcomplete", function() {
+ alert( "Some action has completed." );
+});
+```
+
+## Effects
+
+### Allow `borderColor` to be animated
+
+([#6164](https://bugs.jqueryui.com/ticket/6164))
+You can now pass the `borderColor` shorthand property to `.animate()` in order
+to animate all borders with a single property.
+
+```js
+$( "#elem" ).animate({
+ borderColor: "red"
+});
+```
diff --git a/page/upgrade-guide/1.8.7.md b/page/upgrade-guide/1.8.7.md
new file mode 100644
index 0000000..0f9a3e6
--- /dev/null
+++ b/page/upgrade-guide/1.8.7.md
@@ -0,0 +1,58 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.8.6 to jQuery UI 1.8.7.
+All changes are listed below, organized by plugin, along with how to upgrade
+your code to work with jQuery UI 1.8.7.
+
+## Autocomplete
+
+### `close` event occurs after menu is hidden
+
+([#6227](https://bugs.jqueryui.com/ticket/6227))
+Previously the suggestions menu was hidden after the close event was triggered.
+The close event is now triggered after the menu is hidden.
+
+## Button
+
+### Added `items` option to Buttonset widget
+
+([#6262](https://bugs.jqueryui.com/ticket/6262))
+Previously all buttons, submits, resets, checkboxes, radio buttons, and anchors
+contained in a buttonset were converted to buttons. Now you can control which
+elements are converted by specifying an `items` option. For example, if you only
+want anchors with the class `button` to be converted, you can use:
+
+```js
+$( "#buttonset" ).buttonset({
+ item: "a.button"
+});
+```
+
+## Datepicker
+
+### Improved `setDate()` parameter handling
+
+([#6684](https://bugs.jqueryui.com/ticket/6684))
+([#6671](https://bugs.jqueryui.com/ticket/6671))
+Previously if you passed a date object to the `setDate()` method, the date
+object would be modified; this is no longer the case. In addition, `setDate()`
+properly handles `null` and empty strings properly for clearing the date.
+
+## Progressbar
+
+### Added `max` option
+
+([#6681](https://bugs.jqueryui.com/ticket/6681))
+You can now specify the max value for a progress bar. To do so, just set the
+`max` option on init:
+
+```js
+$( "#progressbar" ).progressbar({
+ max: 500
+});
+```
diff --git a/page/upgrade-guide/1.8.md b/page/upgrade-guide/1.8.md
new file mode 100644
index 0000000..b1b716f
--- /dev/null
+++ b/page/upgrade-guide/1.8.md
@@ -0,0 +1,101 @@
+
+
+## Overview
+
+This guide will assist in upgrading from jQuery UI 1.7.x to jQuery UI 1.8.x.
+All changes are listed below, organized by plugin, along with how to upgrade
+your code to work with jQuery UI 1.8.
+
+## Accordion
+
+* Removed `alwaysOpen` option in favor of `collapsible` option ([#4030](https://bugs.jqueryui.com/ticket/4030))
+
+## Datepicker
+
+* The yearRange option now allows different formats for each half of the range,
+e.g. `"1950:-18"`. This means that relative years must always use a `"+"` or
+`"-"` to indicate their status. In particular, to reference the current year you
+must use `"+0"`, e.g., `"-10:+0"`.
+* To suppress show/hide animations set `showAnim` to blank or `false` instead of setting `duration` to `0`.
+* Manually entered dates now update the alternate field.
+* Default tab processing is no longer suppressed.
+
+## Dialog
+
+* `beforeclose` option changed to `beforeClose` - `beforeclose` is now
+deprecated and will be removed in the next release.
+* Dialog buttons now use the new Button widget, it has to be included to get
+properly themed dialog buttons. If it is missing, plain unthemed buttons will be
+used, which will still work, just not look as nice.
+
+## Draggable
+
+* Removed `ui.absolutePosition` in callbacks ([#3990](https://bugs.jqueryui.com/ticket/3990))
+* Changed `stack` option to accept a selector instead of a hash ([#4365](https://bugs.jqueryui.com/ticket/4365))
+
+## Droppable
+
+* Removed `ui.absolutePosition` in callbacks ([#3989](https://bugs.jqueryui.com/ticket/3989))
+
+## Widget
+
+### Widget prototype changes
+
+* `$.widget.prototype` to `$.Widget.prototype` so it can fully use prototypal
+inheritance (`$.Widget` is a constructor).
+* Renamed `_init()` to `_create()`.
+* A new `_init()` method was added to perform "default functionality".
+* `_init()` is called every time the plugin is called without passing the name
+of a method to invoke.
+* Renamed `_setData()` to `_setOption()`.
+* Removed `_getData()` since it should never be overridden.
+* Removed bindings for data events, must always use the `option()` method now.
+* Added `widget()` to return the main/outermost element of the widget.
+* Getter methods no longer need to be explicitly defined. Any method that
+returns a value other than `undefined` or the plugin instance is automatically
+treated as a getter. This also adds the ability to define a method that can act
+as a chainable setter and a getter.
+* `destroy()` now removes all widget-namespaced events bound to `this.element`
+and `this.widget()`.
+* `option()` with no parameters now returns the full options hash.
+* Instantiating a widget directly via the `new` keyword now fully initializes
+the widget (no need to call the initialization method after the constructor).
+
+### Properties moved from `$.ui.foo` to `$.ui.foo.prototype`
+
+* `$.ui.foo.defaults` -> `$.ui.foo.prototype.options`
+* `$.ui.foo.eventPrefix` -> `$.ui.foo.prototype.widgetEventPrefix`
+
+### Other changes
+
+* `$.widget()` now accepts a base widget to extend as the second parameter;
+defaults to `$.Widget`.
+* Added `$.widget.bridge()` to allow creation of stateful plugins using a custom
+constructor.
+* Calling the constructor method multiple times now performs an action. If a
+hash is passed to the constructor, that hash is passed to the `option() method
+and the `_init()` method is called.
+
+### New Widget Method
+
+A new common method has been added, called `widget()`. This method will return
+the `.ui-{pluginname}` element. Depending on the plugin, in many cases this is
+different than the original element, otherwise it will return the original
+element.
+
+For example, when you call `$( "#myDiv" ).dialog()` the `#myDiv` element gets
+the `.ui-dialog-content` class while a generated wrapper element gets the
+`.ui-dialog` class. Before the widget method existed it was a bit of a pain to
+call `$( "#myDiv" ).closest( ".ui-dialog" ) and though that worked in this case,
+for many plugins that doesn't work, for example, Datepicker, or Autocomplete,
+where the widget element is not a wrapper.
+
+Now with the `widget()` method, you can simply call
+`$( "#myDiv" ).dialog( "widget" )` to get the widget element.
+
+### Example code
+
+[An example for migrating a custom widget from 1.7 to 1.8.](https://github.com/scottgonzalez/jquery-ui-1.8-widget-factory)
diff --git a/page/upgrade-guide/1.9.md b/page/upgrade-guide/1.9.md
index 35c42fd..86499ab 100644
--- a/page/upgrade-guide/1.9.md
+++ b/page/upgrade-guide/1.9.md
@@ -13,7 +13,7 @@ your code to work with jQuery UI 1.9.
jQuery UI 1.9 introduces API redesigns for Accordion, Position, Tabs, and Effects.
You can read about the API redesign process on the
-[jQuery UI Blog](http://blog.jqueryui.com/2011/03/api-redesigns-the-past-present-and-future/).
+[jQuery UI Blog](https://blog.jqueryui.com/2011/03/api-redesigns-the-past-present-and-future/).
Although the redesigns introduce breaking changes,
**1.9 maintains full compatibility with the 1.8 API by default.**
This is accomplished by rebuilding the 1.8 API on top of the 1.9 API. The
@@ -39,7 +39,7 @@ will work when the 1.8 APIs are removed. You can use the `$.uiBackCompat` flag
to test this with any 1.9 release.
**If you find a regression from the 1.8 API, please report it in the
-[bug tracker](http://bugs.jqueryui.com/newticket). Even though the 1.8 API is
+[bug tracker](https://bugs.jqueryui.com/newticket). Even though the 1.8 API is
deprecated, it's important for 1.9 releases not to regress so that users are
encouraged to upgrade even if they're not ready to use the new APIs.**
@@ -49,7 +49,7 @@ encouraged to upgrade even if they're not ready to use the new APIs.**
### Added `.uniqueId()` and `.removeUniqueId()` methods
-([#8361](http://bugs.jqueryui.com/ticket/8361))
+([#8361](https://bugs.jqueryui.com/ticket/8361))
Many widgets need to generate unique ids for elements. `.uniqueId()` will check
if the element has an id, and if not, it will generate one and set it on the
element. It is safe to call `.uniqueId()` on an element without checking if it
@@ -82,7 +82,7 @@ element.removeUniqueId();
### Deprecated `.disableSelection()` and `.enableSelection()`
-([#7755](http://bugs.jqueryui.com/ticket/7755))
+([#7755](https://bugs.jqueryui.com/ticket/7755))
To [quote Mats Palmgren](https://bugzilla.mozilla.org/show_bug.cgi?id=688599#c5)
"Preventing the user from selecting stuff is evil." Following that logic, we
have deprecated `.disableSelection()` and `.enableSelection()`.
@@ -93,8 +93,8 @@ have deprecated `.disableSelection()` and `.enableSelection()`.
### Deprecated `$.ui.contains`
-([#5000](http://bugs.jqueryui.com/ticket/5000))
-jQuery 1.4 added [`$.contains`](http://api.jquery.com/jQuery.contains/), with
+([#5000](https://bugs.jqueryui.com/ticket/5000))
+jQuery 1.4 added [`$.contains`](https://api.jquery.com/jQuery.contains/), with
the same API as `$.ui.contains`. You should replace all uses of `$.ui.contains`
with `$.contains`; since the APIs are identical, this is a simple search and replace.
@@ -104,7 +104,7 @@ with `$.contains`; since the APIs are identical, this is a simple search and rep
### Removed modifier keys from `$.ui.keyCode`
-([#7613](http://bugs.jqueryui.com/ticket/7613))
+([#7613](https://bugs.jqueryui.com/ticket/7613))
The key codes for modifier keys are not consistent across browsers, so the values
provided in `$.ui.keyCode` were not reliable. In addition, you generally don't
want to listen for key presses on meta keys. In almost every situation, you would
@@ -119,7 +119,7 @@ The following keys were removed from `$.ui.keyCode`: `ALT`, `CAPS_LOCK`, `COMMAN
### Changed naming convention for `.data()` keys
-([#7810](http://bugs.jqueryui.com/ticket/7810))
+([#7810](https://bugs.jqueryui.com/ticket/7810))
The naming convention for data stored using `.data()` was somewhat inconsistent
before, with various plugins using various formats. We've now standardized on
dashed names, prefixed with the full plugin name. Widget instances now use the
@@ -143,7 +143,7 @@ The Accordion API has been redesigned. You may want to read the
### Added data to the `create` event
-([#7869](http://bugs.jqueryui.com/ticket/7869))
+([#7869](https://bugs.jqueryui.com/ticket/7869))
The `create` event now provides `header` and `content` data. This makes it
easier to write consistent code for initialization and activation.
@@ -193,7 +193,7 @@ New API:
### Deprecated `changestart` event; renamed to `beforeActivate`
-([#6840](http://bugs.jqueryui.com/ticket/6840))
+([#6840](https://bugs.jqueryui.com/ticket/6840))
The `changestart` event has been renamed to `beforeActivate` for consistency
with other plugins in jQuery UI. The data provided in the event is the same,
but some of the names have changed: `newContent` is now `newPanel` and
@@ -246,7 +246,7 @@ therefore the associated event name is `accordionbeforeactivate`.*
### Allow Canceling the `beforeActivate` event
-([#6896](http://bugs.jqueryui.com/ticket/6896))
+([#6896](https://bugs.jqueryui.com/ticket/6896))
The `beforeActivate` event (previously `changestart`) is now cancelable. If
you prevent the default action inside the `beforeActivate` event, the panel will
not be activated.
@@ -265,7 +265,7 @@ $( "#accordion" ).accordion({
### Deprecated `change` event; renamed to `activate`
-([#6842](http://bugs.jqueryui.com/ticket/6842))
+([#6842](https://bugs.jqueryui.com/ticket/6842))
The `change` event has been renamed to `activate` for consistency
with other plugins in jQuery UI. Just like the `beforeActivate` event,
the data provided in the event is the same, but some of the names have changed:
@@ -278,7 +278,7 @@ You should replace all uses of the `change` event with the `activate` event.
### Deprecated `resize` method; renamed to `refresh`
-([#6838](http://bugs.jqueryui.com/ticket/6838))
+([#6838](https://bugs.jqueryui.com/ticket/6838))
The `resize` method has been renamed to `refresh` for consistency with other
plugins in jQuery UI. The method currently has the exact same behavior as the
old `resize` method, though it may support adding/removing panels in the future.
@@ -290,7 +290,7 @@ You should replace all uses of the `resize` method with the `refresh` method.
### Deprecated `animated` option; renamed to `animate`
-([#8600](http://bugs.jqueryui.com/ticket/8600))
+([#8600](https://bugs.jqueryui.com/ticket/8600))
The animation options for accordion were heavily customized to the implementation
details of the accordion plugin. Customizing the animation was difficult and
inconsistent with anything else in jQuery UI. The new `animate` option looks like
@@ -327,7 +327,7 @@ $( "#accordion" ).accordion({
### Deprecated `icons.headerSelected` option; renamed to `icons.activeHeader`
-([#6834](http://bugs.jqueryui.com/ticket/6834))
+([#6834](https://bugs.jqueryui.com/ticket/6834))
The icon for the active header has been renamed from `headerSelected` to
`activeHeader` to accompany the other changes for consistency with the term
"active". You should replace all uses of `icons.headerSelected` with
@@ -366,8 +366,8 @@ $( "#accordion" ).accordion({
### Deprecated `autoHeight`, `clearStyle`, and `fillSpace` options; merged into `heightStyle`
-([#5871](http://bugs.jqueryui.com/ticket/5871))
-([#5867](http://bugs.jqueryui.com/ticket/5867))
+([#5871](https://bugs.jqueryui.com/ticket/5871))
+([#5867](https://bugs.jqueryui.com/ticket/5867))
The `autoHeight`, `clearStyle`, and `fillSpace` options were all booleans which
controlled how the height of each panel was determined. Since these options
couldn't all be used together, the API was confusing and there were combinations
@@ -404,7 +404,7 @@ $( "#accordion" ).accordion({
### Deprecated `activate` method
-([#6836](http://bugs.jqueryui.com/ticket/6836))
+([#6836](https://bugs.jqueryui.com/ticket/6836))
The `activate` method has been deprecated in favor of simply updating the `active`
option. You should replace all calls to the `activate` method with calls to
the `option` method to change the `active` option.
@@ -429,7 +429,7 @@ $( "#accordion" ).accordion( "option", "active", 2 );
### Deprecated `navigation` and `navigationFilter` options
-([#5869](http://bugs.jqueryui.com/ticket/5869))
+([#5869](https://bugs.jqueryui.com/ticket/5869))
The `navigation` and `navigationFilter` options provided a way to automatically
select which panel should be active on initialization based on the URL. This
functionality was disabled by default and is only one of many ways that you might
@@ -444,7 +444,7 @@ setting the `active` option appropriately. You should remove all uses of the
### Deprecated support for activating panels with selectors or collapsing with `-1`
-([#6852](http://bugs.jqueryui.com/ticket/6852))
+([#6852](https://bugs.jqueryui.com/ticket/6852))
It was previously possible to activate panels using a selector which was used to
find a header. It was also possible to use `-1` or any falsey value to indicate
that no panel should be active and the accordion should be collapsed. Support for
@@ -460,7 +460,7 @@ similar to `.eq()`.*
### Removed `ui-accordion-disabled` class
-([#8193](http://bugs.jqueryui.com/ticket/8193))
+([#8193](https://bugs.jqueryui.com/ticket/8193))
Accordion was adding the `ui-accordion-disabled` class to disabled headers and
panels, which was a remnant of earlier designs. This class has been removed in
favor of the generic `ui-state-disabled` class, which was also being applied.
@@ -473,7 +473,7 @@ to styling `ui-state-disabled`.
### Added `response` event
-([#6777](http://bugs.jqueryui.com/ticket/6777))
+([#6777](https://bugs.jqueryui.com/ticket/6777))
There is now a `response` event that is triggered whenever a response is received,
even if the menu will not be shown because there are no results or the autocomplete
has become disabled. The array of items is passed as the content property in the
@@ -497,7 +497,7 @@ properties.*
### Added support for `contentEditable`
-([#6914](http://bugs.jqueryui.com/ticket/6914))
+([#6914](https://bugs.jqueryui.com/ticket/6914))
Autocomplete started with support for `input` elements, then expanded to support
`textarea` elements, and now even supports editable elements via the
`contentEditable` attribute. Just like `textarea`s, when using autocomplete on
@@ -508,7 +508,7 @@ user to freely move through the content.
### Synchronous `change` event
-([#7550](http://bugs.jqueryui.com/ticket/7550))
+([#7550](https://bugs.jqueryui.com/ticket/7550))
Previously, interactions with the menu could shift focus from the text field to
the menu itself. This meant that we had to delay the handling of `blur` events,
which caused the `change` event to be asynchronous. This caused problems in
@@ -523,10 +523,10 @@ worth mentioning.
### Blurring a suggestion no longer changes the value of the input
-([#7742](http://bugs.jqueryui.com/ticket/7742))
+([#7742](https://bugs.jqueryui.com/ticket/7742))
Blurring a suggestion in the menu had different behavior based on keyboard
navigation or mouse navigation. When using the mouse, the value in the text field
-would be reset back to the serach term. We have removed this behavior, resulting
+would be reset back to the search term. We have removed this behavior, resulting
in consistent behavior between mouse and key navigation. This also brings us
in line with Firefox's Awesome Bar, which we have been using as a model.
@@ -551,7 +551,7 @@ very bottom of the autocomplete plugin and is only a few lines.
### Added `ui-dialog-buttons` class
-([#7057](http://bugs.jqueryui.com/ticket/7057))
+([#7057](https://bugs.jqueryui.com/ticket/7057))
Dialogs now have a `ui-dialog-buttons` class added to the outermost element when
the button pane is present. This allows different styling based on whether or
not there are buttons in the bottom of the dialog.
@@ -560,7 +560,7 @@ not there are buttons in the bottom of the dialog.
### Properly account for padding when calculating height
-([#7692](http://bugs.jqueryui.com/ticket/7692))
+([#7692](https://bugs.jqueryui.com/ticket/7692))
The height of the dialog was previously calculated incorrectly if there was
padding on the dialog element. Dialogs now properly account for padding when
setting the height of the dialog. While this is just a bug fix, the height of
@@ -571,7 +571,7 @@ to the dialog and setting an explicit height via the `height` option.
### Dialogs return to their previous DOM position on destroy
-([#4980](http://bugs.jqueryui.com/ticket/4980))
+([#4980](https://bugs.jqueryui.com/ticket/4980))
When a dialog is initialized, it is moved to the end of the DOM as a direct
child of the body. This ensures that the z-index can be properly applied to
bring the dialog in front of the rest of the page. Previously, upon destroy, the
@@ -587,7 +587,7 @@ only when destroyed.*
### Removed `beforeclose` option
-([#5100](http://bugs.jqueryui.com/ticket/5100))
+([#5100](https://bugs.jqueryui.com/ticket/5100))
The `beforeclose` option was deprecated in 1.8 in favor of `beforeClose` and has
now been removed. You must replace all uses of the `beforeclose` option with
`beforeClose`.
@@ -618,7 +618,7 @@ The Position API has been redesigned. You may want to read the
### Improved collision detection
-([#5284](http://bugs.jqueryui.com/ticket/5284))
+([#5284](https://bugs.jqueryui.com/ticket/5284))
Previously, the position utility was only smart enough to detect if there was a
collision, but not whether applying the collision logic would improve the
situation. This resulted in a few cases where applying the collision logic would
@@ -631,7 +631,7 @@ positioning improve (for fit that means limiting how far the element can shift).
### Added new collision mode: flipfit
-([#7492](http://bugs.jqueryui.com/ticket/7492))
+([#7492](https://bugs.jqueryui.com/ticket/7492))
Position now supports `"flipfit"` as a collision mode. When there is a collision,
this mode will first run the flip collision logic followed by the fit collision
logic. This allows the element to be adjusted by the best mode possible.
@@ -649,7 +649,7 @@ element.position({
### Added `within` option for improved collision handling
-([#5645](http://bugs.jqueryui.com/ticket/5645))
+([#5645](https://bugs.jqueryui.com/ticket/5645))
Collision detection was previously only supported for collisions with the window.
The new `within` option allows you to specify an element to use to calculate the
collision boundaries. The value can be an element, document, window, jQuery object,
@@ -668,9 +668,9 @@ element.position({
### Added support for percent-based offsets
-([#7028](http://bugs.jqueryui.com/ticket/7028))
+([#7028](https://bugs.jqueryui.com/ticket/7028))
Offsets can now be specified as a percentage of the element's size or as a
-percentage of the target's size. Perctanges placed inside the `my` option will
+percentage of the target's size. Percentages placed inside the `my` option will
be based on the element's size and percentages placed inside the `at` option will
be based on the target's size.
@@ -688,7 +688,7 @@ element.position({
### Deprecated `offset` option; merged into `my` and `at`
-([#6981](http://bugs.jqueryui.com/ticket/6981))
+([#6981](https://bugs.jqueryui.com/ticket/6981))
The `offset` option has been deprecated and offsets have been merged into the
`my` and `at` options. The form for a position is now the named position,
optionally followed by a plus or minus and then an offset. In addition, offsets
@@ -723,7 +723,7 @@ element.position({
### Added positioning feedback to the `using` callback
-([#5937](http://bugs.jqueryui.com/ticket/5937))
+([#5937](https://bugs.jqueryui.com/ticket/5937))
There are quite a few use cases in which it's important to know where the element
being positioned ended up relative to the target element. For example, if you're
creating a tooltip or providing additional information about an item and you want
@@ -778,7 +778,7 @@ The Tabs API has been redesigned. You may want to read the
### Added `refresh` method
-([#7140](http://bugs.jqueryui.com/ticket/7140))
+([#7140](https://bugs.jqueryui.com/ticket/7140))
Tabs now has a `refresh` method which will detect tabs that have been added or
removed. Simply modify the underlying markup the same way you would prior to
initialization and then call the `refresh` method and the widget will take care
@@ -789,7 +789,7 @@ methods for examples of how to use the `refresh` method.
### Added `heightStyle` option
-([#8345](http://bugs.jqueryui.com/ticket/8345))
+([#8345](https://bugs.jqueryui.com/ticket/8345))
Tabs now has a `heightStyle` option which controls how the height of the panels
are determined. This matches the functionality of accordion's new `heightStyle`
option. The possible values are:
@@ -802,7 +802,7 @@ option. The possible values are:
### Added data to the `create` event
-([#7868](http://bugs.jqueryui.com/ticket/7868))
+([#7868](https://bugs.jqueryui.com/ticket/7868))
The `create` event now provides `tab` and `content` data. This makes it
easier to write consistent code for initialization and activation.
@@ -821,8 +821,8 @@ $( "#tabs" ).tabs({
### New keyboard handling and improved accessibility
-([#3079](http://bugs.jqueryui.com/ticket/3079))
-([#7845](http://bugs.jqueryui.com/ticket/7845))
+([#3079](https://bugs.jqueryui.com/ticket/3079))
+([#7845](https://bugs.jqueryui.com/ticket/7845))
Tabs now has full ARIA support and proper keyboard navigation. The UP, DOWN,
LEFT, RIGHT, HOME, and END keys navigate through the tabs. SPACE and ENTER both
activate panels, but ENTER can also collapse panels (if the `collapsible` option
@@ -840,7 +840,7 @@ focus is in a tab panel, CTRL+UP will move focus to the associated tab.
### Deprecated `fx` option; use `show` and `hide` options
-([#8319](http://bugs.jqueryui.com/ticket/8319))
+([#8319](https://bugs.jqueryui.com/ticket/8319))
The `fx` option has been deprecated in favor of new `show` and `hide` options.
The `show` and `hide` options provide more customization over animations. See
below, in the Widget section, for more details about the `show` and `hide`
@@ -852,7 +852,7 @@ options. You should replace all uses of the `fx` option with `show` and `hide`.
### Deprecated `ajaxOptions` and `cache` options; added `beforeLoad` event
-([#7131](http://bugs.jqueryui.com/ticket/7131))
+([#7131](https://bugs.jqueryui.com/ticket/7131))
The `ajaxOptions` and `cache` options have been deprecated in favor of a new
`beforeLoad` event. The event receives a `jqXHR` object and the settings object
that will be passed to `jQuery.ajax()`. The settings passed to the `beforeLoad`
@@ -916,7 +916,7 @@ $( "#tabs" ).tabs({
### Deprecated `url` method and use of `title` attribute; use `aria-controls` attribute
-([#7132](http://bugs.jqueryui.com/ticket/7132))
+([#7132](https://bugs.jqueryui.com/ticket/7132))
The `url` method has been deprecated in favor of leaving the `href` attribute
unmodified even for remote tabs. The `href` attribute will point to the actual
resource and the `aria-controls` attribute will point to the associated panel.
@@ -929,19 +929,35 @@ panel id.
### Deprecated `abort` method
-([#7133](http://bugs.jqueryui.com/ticket/7133))
+([#7133](https://bugs.jqueryui.com/ticket/7133))
As mentioned above, the new `beforeLoad` event exposes the `jqXHR` object for
ajax requests. Having access to the `jqXHR` object gives you full control over
the requests. As a result, the `abort` method has been deprecated, since you
can now directly abort the request.
+Old API:
+
+```js
+$( "#tabs" ).tabs( "abort" );
+```
+
+New API:
+
+```js
+$( "#tabs" ).tabs({
+ beforeLoad: function( event, ui ) {
+ ui.jqXHR.abort();
+ }
+});
+```
+
**The `abort` method will be removed in 1.10.**
### Deprecated `spinner` option
-([#7134](http://bugs.jqueryui.com/ticket/7134))
+([#7134](https://bugs.jqueryui.com/ticket/7134))
The `spinner` option commonly caused confusion because it required the tab to
contain exactly one span in order to show the spinner. The functionality was
also fairly limited, allowing the injection of HTML, but no other customizations,
@@ -956,7 +972,7 @@ tabs are loading.
### Deprecated `selected` option; renamed to `active`
-([#7135](http://bugs.jqueryui.com/ticket/7135))
+([#7135](https://bugs.jqueryui.com/ticket/7135))
The `selected` option has been renamed to `active` for consistency with other
plugins in jQuery UI. You should replace all uses of the `selected` option with
the `active` option.
@@ -967,7 +983,7 @@ the `active` option.
### Deprecated `select` event; renamed to `beforeActivate`
-([#7136](http://bugs.jqueryui.com/ticket/7136))
+([#7136](https://bugs.jqueryui.com/ticket/7136))
The `select` event has been renamed to `beforeActivate` for consistency
with other plugins in jQuery UI. The data provided in the event has also been
changed. The `tab` property is now `newTab` and refers to the list item instead
@@ -1025,12 +1041,15 @@ therefore the associated event name is `tabsbeforeactivate`.*
### Deprecated `show` event; renamed to `activate`
-([#7137](http://bugs.jqueryui.com/ticket/7137))
+([#7137](https://bugs.jqueryui.com/ticket/7137))
The `show` event has been renamed to `activate` for consistency
with other plugins in jQuery UI. Just like the `beforeActivate` event,
the data provided has changed: `tab` is now `newTab`, `panel` is now `newPanel`,
`index` has been removed, and `oldTab` and `oldPanel` have been added.
-You should replace all uses of the `show` event with the `activate` event.
+Unlike the `show` event, the `activate` event is not triggered on initialization.
+If you need to perform some action in response to the initial tab being shown,
+you should listen to the `create` event. You should replace all uses of the
+`show` event with the `activate` event.
**The `show` event will be removed in 1.10.**
@@ -1038,7 +1057,7 @@ You should replace all uses of the `show` event with the `activate` event.
### Deprecated `select` method
-([#7138](http://bugs.jqueryui.com/ticket/7138))
+([#7138](https://bugs.jqueryui.com/ticket/7138))
The `select` method has been deprecated in favor of just updating the `active`
option. You should replace all calls to the `select` method with calls to
the `option` method to change the `active` option.
@@ -1063,7 +1082,7 @@ $( "#tabs" ).tabs( "option", "active", 2 );
### Deprecated `add` and `remove` methods and events; use `refresh` method
-([#7141](http://bugs.jqueryui.com/ticket/7141))
+([#7141](https://bugs.jqueryui.com/ticket/7141))
The `add` and `remove` methods have been deprecated in favor of the `refresh`
method, which brings consistency with other plugins in jQuery UI. With the `add`
and `remove` methods being deprecated, the associated `add` and `remove` events
@@ -1109,7 +1128,7 @@ $( "#tabs" ).tabs( "refresh" );
### Deprecated `idPrefix`, `tabTemplate`, and `panelTemplate` options; use `refresh` method
-([#7139](http://bugs.jqueryui.com/ticket/7139))
+([#7139](https://bugs.jqueryui.com/ticket/7139))
As mentioned above, the `add` and `remove` methods have been deprecated. As a
result, the `idPrefix`, `tabTemplate`, and `panelTemplate` options have been
deprecated as well. You should replace all uses of the `idPrefix`, `tabTemplate`,
@@ -1121,7 +1140,7 @@ and `panelTemplate` options with the markup you would like to use.
### Deprecated `enable` and `disable` events
-([#7142](http://bugs.jqueryui.com/ticket/7142))
+([#7142](https://bugs.jqueryui.com/ticket/7142))
Tabs was the only plugin that triggered `enable` and `disable` events. These
events have been deprecated to create consistency between tabs and the other
plugins in jQuery UI.
@@ -1132,7 +1151,7 @@ plugins in jQuery UI.
### Deprecated `length` method
-([#7143](http://bugs.jqueryui.com/ticket/7143))
+([#7143](https://bugs.jqueryui.com/ticket/7143))
The `length` method wasn't very useful and the number of tabs can easily be
determined by checking the number of elements in the list. As a result, the
`length` method has been deprecated.
@@ -1143,7 +1162,7 @@ determined by checking the number of elements in the list. As a result, the
### Deprecated `cookie` option
-([#7144](http://bugs.jqueryui.com/ticket/7144))
+([#7144](https://bugs.jqueryui.com/ticket/7144))
Support for cookies is not part of the core functionality for tabs and there are
many ways to manage state across page loads. Therefore, the `cookie` option has
been deprecated in favor of setting the `active` option appropriately during
@@ -1155,7 +1174,7 @@ initialization.
### CSS class name changes for consistency
-([#7146](http://bugs.jqueryui.com/ticket/7146))
+([#7146](https://bugs.jqueryui.com/ticket/7146))
The `ui-tabs-selected` class has been renamed to `ui-tabs-active`.
The `ui-state-processing` class has been renamed to `ui-tabs-loading`.
The `ui-tabs-hide` class has been removed and tabs are now hidden using `.hide()`.
@@ -1166,7 +1185,7 @@ will need to switch to styling `ui-tabs-active` and `ui-tabs-loading`.
### Removed `rotate` method
-([#5939](http://bugs.jqueryui.com/ticket/5939))
+([#5939](https://bugs.jqueryui.com/ticket/5939))
The `rotate` method has been removed as it is fairly uncommon and unrelated to
the core functionality of tabs. Christopher McCulloh has implemented an
[extension](https://github.com/cmcculloh/jQuery-UI-Tabs-Rotate) based on the
@@ -1179,7 +1198,7 @@ rotation functionality.
### The `widget` method now maintains the stack
-([#5732](http://bugs.jqueryui.com/ticket/5732))
+([#5732](https://bugs.jqueryui.com/ticket/5732))
The `widget` method provides a way to access widget-generated content, such as
the wrapper of a dialog or the menu of an autocomplete widget. Previously the
return value was a new jQuery object which had no stack. Now the return value
@@ -1191,7 +1210,7 @@ get back to your previous selection.
### Added `document` and `window` properties
-([#7801](http://bugs.jqueryui.com/ticket/7801))
+([#7801](https://bugs.jqueryui.com/ticket/7801))
In some cases, widgets are used in different windows than the one in which the
code was loaded. It's easy to fall into a trap where this won't work if you
reference globals such as `window` or `document`. In order to avoid falling into
@@ -1203,7 +1222,7 @@ associated with the widget instance.
### Added `_delay` method
-([#8470](http://bugs.jqueryui.com/ticket/8470))
+([#8470](https://bugs.jqueryui.com/ticket/8470))
Widgets now have a `_delay` method which functions similar to `setTimeout` except
that it maintains the context so that `this` is the plugin instance. You can
pass either a function or the name of a method on the widget for the first
@@ -1214,7 +1233,7 @@ with a default value of `0`.
### Added `_getCreateEventData` method for providing data in the `create` event
-([#8045](http://bugs.jqueryui.com/ticket/8045))
+([#8045](https://bugs.jqueryui.com/ticket/8045))
All widgets trigger a `create` event upon instantiation, but there was previously
no way to provide data for this event. To remedy this, we've added a new,
`_getCreateEventData`, which should return the data to provide in the `create`
@@ -1227,8 +1246,8 @@ this method.
### Added `_destroy` method
-([#5056](http://bugs.jqueryui.com/ticket/5056))
-There are very few places in which common functionlity requires you to call into
+([#5056](https://bugs.jqueryui.com/ticket/5056))
+There are very few places in which common functionality requires you to call into
a parent method in order for a widget to be implemented properly. The `destroy`
method has traditionally been such a case, where all widgets need to implement
widget-specific destroy logic, but also call into the base `destroy` method for
@@ -1265,18 +1284,18 @@ $.widget( "demo.widget", {
### Added `$.widget.extend` to handle array references
-([#7718](http://bugs.jqueryui.com/ticket/7718))
+([#7718](https://bugs.jqueryui.com/ticket/7718))
Since widgets perform a deep extend on options, it was not previously possible
to pass an array and keep a reference to it from outside of the widget. In order
to deal with this, we've add `$.widget.extend` which performs a deep extend on
-objects, but copies arrays by refernce. `$.widget.extend` is now used for all
+objects, but copies arrays by reference. `$.widget.extend` is now used for all
option merging inside widgets.
### Added `_hoverable` and `_focusable` methods
-([#3673](http://bugs.jqueryui.com/ticket/3673))
+([#3673](https://bugs.jqueryui.com/ticket/3673))
Almost every widget applies styles on hover and focus, so we've added two new
methods to simplify the implementation across all of the plugins. The
`_hoverable` method adds the `ui-state-hover` class on hover and the `_focusable`
@@ -1294,11 +1313,11 @@ this._hoverable( this.element.find( ".hoverable-elements" ) );
### Added `_show` and `_hide` methods to support `show` and `hide` options
-([#3772](http://bugs.jqueryui.com/ticket/3772))
+([#3772](https://bugs.jqueryui.com/ticket/3772))
There has historically been quite a bit of inconsistency with respect to how
effects are applied to widgets. Each widget had its own API and differing levels
of support for various effect types and settings. We now have a standardized
-implementation which is implemented in the base wiget and exposed as the `_show`
+implementation which is implemented in the base widget and exposed as the `_show`
and `_hide` methods. These methods are designed to support new common options
named `show` and `hide`. These methods/options provide support for any combination
of settings and effects, from no animation to core animations such as fade and
@@ -1390,8 +1409,8 @@ this._show( someElement, this.options.show, function() {
### Added support for working with nested options via the `option` method
-([#7035](http://bugs.jqueryui.com/ticket/7035))
-([#7459](http://bugs.jqueryui.com/ticket/7459))
+([#7035](https://bugs.jqueryui.com/ticket/7035))
+([#7459](https://bugs.jqueryui.com/ticket/7459))
Some widgets have nested options, such as button's `icons.primary` option. The
`option` method now supports getting and setting nested options. It was
previously not possible to get or set `icons.primary` by itself, you could only
@@ -1411,7 +1430,7 @@ $( "#button" ).button( "option", "icons.primary", "ui-icon-wrench" );
### Added `_super` and `_superApply` methods
-([#6861](http://bugs.jqueryui.com/ticket/6861))
+([#6861](https://bugs.jqueryui.com/ticket/6861))
Widgets support inheritance and all widgets have at least one parent, with
`$.Widget` being the default parent. Up until now there hasn't been anything in
the widgets to make calling methods on the parent easy, resulting in code like
@@ -1454,9 +1473,9 @@ this._superApply( arguments );
### Added `_on` and `_off` methods for simplified event binding
-([#5207](http://bugs.jqueryui.com/ticket/5207))
-([#7795](http://bugs.jqueryui.com/ticket/7795))
-([#8385](http://bugs.jqueryui.com/ticket/8385))
+([#5207](https://bugs.jqueryui.com/ticket/5207))
+([#7795](https://bugs.jqueryui.com/ticket/7795))
+([#8385](https://bugs.jqueryui.com/ticket/8385))
Almost every widget needs to bind event handlers for part of its functionality.
The widget then needs to track the event handlers or bind them using a common
namespace so that they can be unbound when the widget instance is destroyed.
@@ -1491,7 +1510,7 @@ this._on( someElement, {
### Added `defaultElement` property for auto-generating elements
-([#8473](http://bugs.jqueryui.com/ticket/8473))
+([#8473](https://bugs.jqueryui.com/ticket/8473))
Widgets can now be instantiated without an element and an element will
automatically be generated during instantiation. By default the element will be
`` but the widget can define any string of HTML in the `defaultElement`
@@ -1507,7 +1526,7 @@ var dialog2 = $.ui.dialog({ title: "Hooray" });
### Improved API for direct instantiation
-([#6891](http://bugs.jqueryui.com/ticket/6891))
+([#6891](https://bugs.jqueryui.com/ticket/6891))
Direct instantiation of widgets used to require the `new` keyword or calling
the `_createWidget` method directly. Now calling the constructor without the
`new` keyword will always instantiate the widget, and calling with `new` will
@@ -1526,7 +1545,7 @@ var dialog5 = new $.ui.dialog( options, element );
### Allow non-DOM based widgets
-([#6895](http://bugs.jqueryui.com/ticket/6895))
+([#6895](https://bugs.jqueryui.com/ticket/6895))
Widgets can now be self-contained and not tied to DOM elements. In order to
create a widget that is not tied to the DOM, the `defaultElement` must be set to
`null` (see above for details about `defaultElement`). For widgets that are not
@@ -1545,7 +1564,7 @@ instance.someMethod();
### Allow redefining widgets to create extensions
-([#6937](http://bugs.jqueryui.com/ticket/6937))
+([#6937](https://bugs.jqueryui.com/ticket/6937))
Previously the only way to extend a widget was to modify the prototype directly.
Now, widgets can be redefined through `$.widget` just like any other widget that
inherits from another widget. The ability to redefine widgets combined with the
@@ -1583,7 +1602,7 @@ instantiating any instances anyway.
### Moved version numbers into prototypes
-([#7436](http://bugs.jqueryui.com/ticket/7436))
+([#7436](https://bugs.jqueryui.com/ticket/7436))
Version numbers have been moved into the widget prototypes so that they persist
on the instances. This allows you to tell which version was used for each widget
instance if multiple version of jQuery UI are loaded on a page. The version
@@ -1596,7 +1615,7 @@ prototypes; the version will automatically be copied to the constructor for you.
### Deprecated use of metadata plugin
-([#7191](http://bugs.jqueryui.com/ticket/7191))
+([#7191](https://bugs.jqueryui.com/ticket/7191))
All widgets currently support use of the metadata plugin to specify options that
should be used on instantiation. With the addition of `_getCreateOptions` in
1.8.6, there was no longer a need for this to be built-in. Use of the metadata
@@ -1609,7 +1628,7 @@ specifying options or implement `_getCreateOptions` to behave how you want.
### Deprecated `widgetBaseClass` property; renamed to `widgetFullName`
-([#8154](http://bugs.jqueryui.com/ticket/8154))
+([#8154](https://bugs.jqueryui.com/ticket/8154))
The `widgetBaseClass` property was originally added for prefixing class names,
but is useful for more than just class names. As such, we have renamed this
property to `widgetFullName`. You should replace all uses of `widgetBaseClass`
@@ -1621,7 +1640,7 @@ with `widgetFullName`.
### Widget pseudo selectors are now lowercase
-([#8433](http://bugs.jqueryui.com/ticket/8433))
+([#8433](https://bugs.jqueryui.com/ticket/8433))
Widgets auto-create selectors based on the widget name. For example, a widget
created with `$.widget( "foo.barBaz", {} )` would create a `:foo-barBaz`
selector. Sizzle treats this the same as the lowercase version `:foo-barbaz`.
@@ -1632,7 +1651,7 @@ the selectors to be generated as all lowercase.
### Calling an invalid method now throws an error
-([#5972](http://bugs.jqueryui.com/ticket/5972))
+([#5972](https://bugs.jqueryui.com/ticket/5972))
Previously, calling a non-existent or non-public method would result in a no-op.
This will now result in an error being thrown. Technically, `$.error` will be
called, which defaults to throwing an `Error`.
@@ -1651,9 +1670,9 @@ All effects files have been renamed from `jquery.effects.*.js` to
### Rewrote all easing equations to only rely on state
-([#8115](http://bugs.jqueryui.com/ticket/8115))
+([#8115](https://bugs.jqueryui.com/ticket/8115))
Easing questions are provided with a lot of information: the starting and ending
-values, the current state (in percentage), how long (in millisends) the animation
+values, the current state (in percentage), how long (in milliseconds) the animation
has been running, and how long the animation will run in total. In reality, only
the current state is necessary. All of the easing equations have therefore been
simplified to only rely on state and the implementations have been changed for a
@@ -1666,7 +1685,7 @@ the old and new equations on top of each other.
### Added `children` option to class animations
-([#3939](http://bugs.jqueryui.com/ticket/3939))
+([#3939](https://bugs.jqueryui.com/ticket/3939))
The class animation methods (`addClass`, `removeClass`, and `toggleClass`) now
support a `children` option, which will also animate descendant elements. This
option defaults to `false` due to the overhead of calculating which styles to
@@ -1683,7 +1702,7 @@ element.addClass( "foo", {
### Blind effect's `direction` option now supports `up`, `down`, `left`, and `right`
-([#4880](http://bugs.jqueryui.com/ticket/4880))
+([#4880](https://bugs.jqueryui.com/ticket/4880))
The blind effect already supported `vertical` and `horizontal` for the `direction`
option. It now accepts `up`, `down`, `left`, and `right`, creating consistency
with other effects such as drop and slide. `vertical` is the same as `up` and
@@ -1693,9 +1712,9 @@ with other effects such as drop and slide. `vertical` is the same as `up` and
### Upgraded to jQuery Color 2.0.0
-([#3806](http://bugs.jqueryui.com/ticket/3806))
-([#4372](http://bugs.jqueryui.com/ticket/4372))
-([#5215](http://bugs.jqueryui.com/ticket/5215))
+([#3806](https://bugs.jqueryui.com/ticket/3806))
+([#4372](https://bugs.jqueryui.com/ticket/4372))
+([#5215](https://bugs.jqueryui.com/ticket/5215))
jQuery UI's core effects file contains a copy of
[jQuery Color](https://github.com/jquery/jquery-color), which has recently
received a major upgrade. jQuery UI now includes jQuery Color 2.0.0, which
@@ -1706,9 +1725,9 @@ Color documentation for full details.
### Redesigned effects API
-([#7060](http://bugs.jqueryui.com/ticket/7060))
-([#7103](http://bugs.jqueryui.com/ticket/7103))
-([#7318](http://bugs.jqueryui.com/ticket/7318))
+([#7060](https://bugs.jqueryui.com/ticket/7060))
+([#7103](https://bugs.jqueryui.com/ticket/7103))
+([#7318](https://bugs.jqueryui.com/ticket/7318))
Effects have undergone a minor redesign to clean up the API. Individual effects
are now defined on `$.effects.effect` rather than directly on `$.effects`. This
makes it possible to distinguish between actual effects and helper methods.
@@ -1783,7 +1802,7 @@ $.effects.effect.rgb = function( options, done ) {
### Reversed `ui-icon-radio-on` and `ui-icon-radio-off`.
-([#7475](http://bugs.jqueryui.com/ticket/7475))
+([#7475](https://bugs.jqueryui.com/ticket/7475))
The icons for the on and off states were reversed, causing `ui-icon-radio-on`
to show an empty radio and `ui-icon-radio-off` to show a more solid radio.
If you are using these classes, you will need to reverse the classes that you're
@@ -1805,7 +1824,7 @@ team is familiar with, and we have as much flexibility as we want. We're also
able to easily share portions of our build processes across our various projects.
In addition, our build process now works on all major operating systems.
-To setup the build system you'll first need to install [node](http://nodejs.org/)
+To setup the build system you'll first need to install [node](https://nodejs.org/)
and then install jQuery UI's dependencies. Once you have node installed, run
the following commands from the root of your jQuery UI checkout:
diff --git a/page/widget.html b/page/widget.html
index de3b51f..b48d4bf 100644
--- a/page/widget.html
+++ b/page/widget.html
@@ -5,7 +5,9 @@
}
}
+
Create stateful jQuery plugins using the same abstraction as all jQuery UI widgets.
+
Want to learn more about the widget factory? Check out
-the API documentation .
+the
API documentation .
diff --git a/resources/demos/style.css b/resources/demos/style.css
index f2450eb..76a2fd7 100644
--- a/resources/demos/style.css
+++ b/resources/demos/style.css
@@ -1,4 +1,11 @@
body {
- font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
- font-size: 62.5%;
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+table {
+ font-size: 1em;
+}
+
+.ui-draggable, .ui-droppable {
+ background-position: top;
}
diff --git a/resources/download/jquery-ui-1.0.zip b/resources/download/jquery-ui-1.0.zip
new file mode 100644
index 0000000..c705c6b
Binary files /dev/null and b/resources/download/jquery-ui-1.0.zip differ
diff --git a/resources/download/jquery-ui-1.10.0-beta.1.zip b/resources/download/jquery-ui-1.10.0-beta.1.zip
new file mode 100644
index 0000000..b96eef3
Binary files /dev/null and b/resources/download/jquery-ui-1.10.0-beta.1.zip differ
diff --git a/resources/download/jquery-ui-1.10.0-rc.1.zip b/resources/download/jquery-ui-1.10.0-rc.1.zip
new file mode 100644
index 0000000..9c4796e
Binary files /dev/null and b/resources/download/jquery-ui-1.10.0-rc.1.zip differ
diff --git a/resources/download/jquery-ui-1.10.0.custom.zip b/resources/download/jquery-ui-1.10.0.custom.zip
new file mode 100644
index 0000000..a453145
Binary files /dev/null and b/resources/download/jquery-ui-1.10.0.custom.zip differ
diff --git a/resources/download/jquery-ui-1.10.0.zip b/resources/download/jquery-ui-1.10.0.zip
new file mode 100644
index 0000000..7850a48
Binary files /dev/null and b/resources/download/jquery-ui-1.10.0.zip differ
diff --git a/resources/download/jquery-ui-1.10.1.custom.zip b/resources/download/jquery-ui-1.10.1.custom.zip
new file mode 100644
index 0000000..5a5b01d
Binary files /dev/null and b/resources/download/jquery-ui-1.10.1.custom.zip differ
diff --git a/resources/download/jquery-ui-1.10.1.zip b/resources/download/jquery-ui-1.10.1.zip
new file mode 100644
index 0000000..b85aafa
Binary files /dev/null and b/resources/download/jquery-ui-1.10.1.zip differ
diff --git a/resources/download/jquery-ui-1.10.2.custom.zip b/resources/download/jquery-ui-1.10.2.custom.zip
new file mode 100644
index 0000000..17b1722
Binary files /dev/null and b/resources/download/jquery-ui-1.10.2.custom.zip differ
diff --git a/resources/download/jquery-ui-1.10.2.zip b/resources/download/jquery-ui-1.10.2.zip
new file mode 100644
index 0000000..cfd1442
Binary files /dev/null and b/resources/download/jquery-ui-1.10.2.zip differ
diff --git a/resources/download/jquery-ui-1.10.3.custom.zip b/resources/download/jquery-ui-1.10.3.custom.zip
new file mode 100644
index 0000000..170ef3d
Binary files /dev/null and b/resources/download/jquery-ui-1.10.3.custom.zip differ
diff --git a/resources/download/jquery-ui-1.10.3.zip b/resources/download/jquery-ui-1.10.3.zip
new file mode 100644
index 0000000..2382ad1
Binary files /dev/null and b/resources/download/jquery-ui-1.10.3.zip differ
diff --git a/resources/download/jquery-ui-1.10.4.custom.zip b/resources/download/jquery-ui-1.10.4.custom.zip
new file mode 100644
index 0000000..d7b9032
Binary files /dev/null and b/resources/download/jquery-ui-1.10.4.custom.zip differ
diff --git a/resources/download/jquery-ui-1.10.4.zip b/resources/download/jquery-ui-1.10.4.zip
new file mode 100644
index 0000000..0e2d371
Binary files /dev/null and b/resources/download/jquery-ui-1.10.4.zip differ
diff --git a/resources/download/jquery-ui-1.11.0-beta.1.zip b/resources/download/jquery-ui-1.11.0-beta.1.zip
new file mode 100644
index 0000000..8caf59a
Binary files /dev/null and b/resources/download/jquery-ui-1.11.0-beta.1.zip differ
diff --git a/resources/download/jquery-ui-1.11.0-beta.2.zip b/resources/download/jquery-ui-1.11.0-beta.2.zip
new file mode 100644
index 0000000..b2ea5c4
Binary files /dev/null and b/resources/download/jquery-ui-1.11.0-beta.2.zip differ
diff --git a/resources/download/jquery-ui-1.11.0.zip b/resources/download/jquery-ui-1.11.0.zip
new file mode 100644
index 0000000..3402d11
Binary files /dev/null and b/resources/download/jquery-ui-1.11.0.zip differ
diff --git a/resources/download/jquery-ui-1.11.1.zip b/resources/download/jquery-ui-1.11.1.zip
new file mode 100644
index 0000000..299ecb1
Binary files /dev/null and b/resources/download/jquery-ui-1.11.1.zip differ
diff --git a/resources/download/jquery-ui-1.11.2.zip b/resources/download/jquery-ui-1.11.2.zip
new file mode 100644
index 0000000..29a45e0
Binary files /dev/null and b/resources/download/jquery-ui-1.11.2.zip differ
diff --git a/resources/download/jquery-ui-1.11.3.zip b/resources/download/jquery-ui-1.11.3.zip
new file mode 100644
index 0000000..a5612f9
Binary files /dev/null and b/resources/download/jquery-ui-1.11.3.zip differ
diff --git a/resources/download/jquery-ui-1.11.4.zip b/resources/download/jquery-ui-1.11.4.zip
new file mode 100644
index 0000000..0ce11b4
Binary files /dev/null and b/resources/download/jquery-ui-1.11.4.zip differ
diff --git a/resources/download/jquery-ui-1.12.0-beta.1.zip b/resources/download/jquery-ui-1.12.0-beta.1.zip
new file mode 100644
index 0000000..f227263
Binary files /dev/null and b/resources/download/jquery-ui-1.12.0-beta.1.zip differ
diff --git a/resources/download/jquery-ui-1.12.0-rc.1.zip b/resources/download/jquery-ui-1.12.0-rc.1.zip
new file mode 100644
index 0000000..a94de18
Binary files /dev/null and b/resources/download/jquery-ui-1.12.0-rc.1.zip differ
diff --git a/resources/download/jquery-ui-1.12.0-rc.2.zip b/resources/download/jquery-ui-1.12.0-rc.2.zip
new file mode 100644
index 0000000..edbde68
Binary files /dev/null and b/resources/download/jquery-ui-1.12.0-rc.2.zip differ
diff --git a/resources/download/jquery-ui-1.12.0.zip b/resources/download/jquery-ui-1.12.0.zip
new file mode 100644
index 0000000..b15001d
Binary files /dev/null and b/resources/download/jquery-ui-1.12.0.zip differ
diff --git a/resources/download/jquery-ui-1.12.1.zip b/resources/download/jquery-ui-1.12.1.zip
new file mode 100644
index 0000000..445d2e5
Binary files /dev/null and b/resources/download/jquery-ui-1.12.1.zip differ
diff --git a/resources/download/jquery-ui-1.13.0-rc.2.zip b/resources/download/jquery-ui-1.13.0-rc.2.zip
new file mode 100644
index 0000000..39d1d30
Binary files /dev/null and b/resources/download/jquery-ui-1.13.0-rc.2.zip differ
diff --git a/resources/download/jquery-ui-1.13.0-rc.3.zip b/resources/download/jquery-ui-1.13.0-rc.3.zip
new file mode 100644
index 0000000..60c4a76
Binary files /dev/null and b/resources/download/jquery-ui-1.13.0-rc.3.zip differ
diff --git a/resources/download/jquery-ui-1.13.0.zip b/resources/download/jquery-ui-1.13.0.zip
new file mode 100644
index 0000000..4ae2d8c
Binary files /dev/null and b/resources/download/jquery-ui-1.13.0.zip differ
diff --git a/resources/download/jquery-ui-1.13.1.zip b/resources/download/jquery-ui-1.13.1.zip
new file mode 100644
index 0000000..9eeb77d
Binary files /dev/null and b/resources/download/jquery-ui-1.13.1.zip differ
diff --git a/resources/download/jquery-ui-1.13.2.zip b/resources/download/jquery-ui-1.13.2.zip
new file mode 100644
index 0000000..98c173f
Binary files /dev/null and b/resources/download/jquery-ui-1.13.2.zip differ
diff --git a/resources/download/jquery-ui-1.13.3.zip b/resources/download/jquery-ui-1.13.3.zip
new file mode 100644
index 0000000..f7312ab
Binary files /dev/null and b/resources/download/jquery-ui-1.13.3.zip differ
diff --git a/resources/download/jquery-ui-1.14.0-beta.1.zip b/resources/download/jquery-ui-1.14.0-beta.1.zip
new file mode 100644
index 0000000..cf76731
Binary files /dev/null and b/resources/download/jquery-ui-1.14.0-beta.1.zip differ
diff --git a/resources/download/jquery-ui-1.14.0-beta.2.zip b/resources/download/jquery-ui-1.14.0-beta.2.zip
new file mode 100644
index 0000000..a8a78b5
Binary files /dev/null and b/resources/download/jquery-ui-1.14.0-beta.2.zip differ
diff --git a/resources/download/jquery-ui-1.14.0.zip b/resources/download/jquery-ui-1.14.0.zip
new file mode 100644
index 0000000..d42251d
Binary files /dev/null and b/resources/download/jquery-ui-1.14.0.zip differ
diff --git a/resources/download/jquery-ui-1.14.1.zip b/resources/download/jquery-ui-1.14.1.zip
new file mode 100644
index 0000000..4f89561
Binary files /dev/null and b/resources/download/jquery-ui-1.14.1.zip differ
diff --git a/resources/download/jquery-ui-1.14.2.zip b/resources/download/jquery-ui-1.14.2.zip
new file mode 100644
index 0000000..dfe5047
Binary files /dev/null and b/resources/download/jquery-ui-1.14.2.zip differ
diff --git a/resources/download/jquery-ui-1.5.1.zip b/resources/download/jquery-ui-1.5.1.zip
new file mode 100644
index 0000000..fa46986
Binary files /dev/null and b/resources/download/jquery-ui-1.5.1.zip differ
diff --git a/resources/download/jquery-ui-1.5.2.zip b/resources/download/jquery-ui-1.5.2.zip
new file mode 100644
index 0000000..7becaba
Binary files /dev/null and b/resources/download/jquery-ui-1.5.2.zip differ
diff --git a/resources/download/jquery-ui-1.5.3.zip b/resources/download/jquery-ui-1.5.3.zip
new file mode 100644
index 0000000..65a6d3a
Binary files /dev/null and b/resources/download/jquery-ui-1.5.3.zip differ
diff --git a/resources/download/jquery-ui-1.5.zip b/resources/download/jquery-ui-1.5.zip
new file mode 100644
index 0000000..61944e1
Binary files /dev/null and b/resources/download/jquery-ui-1.5.zip differ
diff --git a/resources/download/jquery-ui-1.5a.zip b/resources/download/jquery-ui-1.5a.zip
new file mode 100644
index 0000000..8403747
Binary files /dev/null and b/resources/download/jquery-ui-1.5a.zip differ
diff --git a/resources/download/jquery-ui-1.5b.zip b/resources/download/jquery-ui-1.5b.zip
new file mode 100644
index 0000000..52c2e8d
Binary files /dev/null and b/resources/download/jquery-ui-1.5b.zip differ
diff --git a/resources/download/jquery-ui-1.5b2.zip b/resources/download/jquery-ui-1.5b2.zip
new file mode 100644
index 0000000..96f7cfd
Binary files /dev/null and b/resources/download/jquery-ui-1.5b2.zip differ
diff --git a/resources/download/jquery-ui-1.5b3.zip b/resources/download/jquery-ui-1.5b3.zip
new file mode 100644
index 0000000..e7c2691
Binary files /dev/null and b/resources/download/jquery-ui-1.5b3.zip differ
diff --git a/resources/download/jquery-ui-1.5b4.zip b/resources/download/jquery-ui-1.5b4.zip
new file mode 100644
index 0000000..c1ab6bb
Binary files /dev/null and b/resources/download/jquery-ui-1.5b4.zip differ
diff --git a/resources/download/jquery-ui-1.5rc1.zip b/resources/download/jquery-ui-1.5rc1.zip
new file mode 100644
index 0000000..ef702eb
Binary files /dev/null and b/resources/download/jquery-ui-1.5rc1.zip differ
diff --git a/resources/download/jquery-ui-1.6.zip b/resources/download/jquery-ui-1.6.zip
new file mode 100644
index 0000000..f8d119c
Binary files /dev/null and b/resources/download/jquery-ui-1.6.zip differ
diff --git a/resources/download/jquery-ui-1.6b.zip b/resources/download/jquery-ui-1.6b.zip
new file mode 100644
index 0000000..07ce49d
Binary files /dev/null and b/resources/download/jquery-ui-1.6b.zip differ
diff --git a/resources/download/jquery-ui-1.6rc1.zip b/resources/download/jquery-ui-1.6rc1.zip
new file mode 100644
index 0000000..7cf803c
Binary files /dev/null and b/resources/download/jquery-ui-1.6rc1.zip differ
diff --git a/resources/download/jquery-ui-1.6rc2.5.zip b/resources/download/jquery-ui-1.6rc2.5.zip
new file mode 100644
index 0000000..86ff396
Binary files /dev/null and b/resources/download/jquery-ui-1.6rc2.5.zip differ
diff --git a/resources/download/jquery-ui-1.6rc2.6.zip b/resources/download/jquery-ui-1.6rc2.6.zip
new file mode 100644
index 0000000..a531fa4
Binary files /dev/null and b/resources/download/jquery-ui-1.6rc2.6.zip differ
diff --git a/resources/download/jquery-ui-1.6rc2.zip b/resources/download/jquery-ui-1.6rc2.zip
new file mode 100644
index 0000000..065b1c0
Binary files /dev/null and b/resources/download/jquery-ui-1.6rc2.zip differ
diff --git a/resources/download/jquery-ui-1.6rc3.zip b/resources/download/jquery-ui-1.6rc3.zip
new file mode 100644
index 0000000..420578f
Binary files /dev/null and b/resources/download/jquery-ui-1.6rc3.zip differ
diff --git a/resources/download/jquery-ui-1.6rc4.zip b/resources/download/jquery-ui-1.6rc4.zip
new file mode 100644
index 0000000..998eb17
Binary files /dev/null and b/resources/download/jquery-ui-1.6rc4.zip differ
diff --git a/resources/download/jquery-ui-1.6rc5.zip b/resources/download/jquery-ui-1.6rc5.zip
new file mode 100644
index 0000000..8c6101e
Binary files /dev/null and b/resources/download/jquery-ui-1.6rc5.zip differ
diff --git a/resources/download/jquery-ui-1.6rc6.zip b/resources/download/jquery-ui-1.6rc6.zip
new file mode 100644
index 0000000..2cc67b7
Binary files /dev/null and b/resources/download/jquery-ui-1.6rc6.zip differ
diff --git a/resources/download/jquery-ui-1.7.1.zip b/resources/download/jquery-ui-1.7.1.zip
new file mode 100644
index 0000000..9302a22
Binary files /dev/null and b/resources/download/jquery-ui-1.7.1.zip differ
diff --git a/resources/download/jquery-ui-1.7.2.zip b/resources/download/jquery-ui-1.7.2.zip
new file mode 100644
index 0000000..9b3648c
Binary files /dev/null and b/resources/download/jquery-ui-1.7.2.zip differ
diff --git a/resources/download/jquery-ui-1.7.zip b/resources/download/jquery-ui-1.7.zip
new file mode 100644
index 0000000..ca289ef
Binary files /dev/null and b/resources/download/jquery-ui-1.7.zip differ
diff --git a/resources/download/jquery-ui-1.8.1.zip b/resources/download/jquery-ui-1.8.1.zip
new file mode 100644
index 0000000..ca0c61c
Binary files /dev/null and b/resources/download/jquery-ui-1.8.1.zip differ
diff --git a/resources/download/jquery-ui-1.8.10.zip b/resources/download/jquery-ui-1.8.10.zip
new file mode 100644
index 0000000..21a14ab
Binary files /dev/null and b/resources/download/jquery-ui-1.8.10.zip differ
diff --git a/resources/download/jquery-ui-1.8.11.zip b/resources/download/jquery-ui-1.8.11.zip
new file mode 100644
index 0000000..bd55181
Binary files /dev/null and b/resources/download/jquery-ui-1.8.11.zip differ
diff --git a/resources/download/jquery-ui-1.8.12.zip b/resources/download/jquery-ui-1.8.12.zip
new file mode 100644
index 0000000..01bf499
Binary files /dev/null and b/resources/download/jquery-ui-1.8.12.zip differ
diff --git a/resources/download/jquery-ui-1.8.13.zip b/resources/download/jquery-ui-1.8.13.zip
new file mode 100644
index 0000000..b4a9c89
Binary files /dev/null and b/resources/download/jquery-ui-1.8.13.zip differ
diff --git a/resources/download/jquery-ui-1.8.14.zip b/resources/download/jquery-ui-1.8.14.zip
new file mode 100644
index 0000000..5657ae2
Binary files /dev/null and b/resources/download/jquery-ui-1.8.14.zip differ
diff --git a/resources/download/jquery-ui-1.8.15.zip b/resources/download/jquery-ui-1.8.15.zip
new file mode 100644
index 0000000..08e80a1
Binary files /dev/null and b/resources/download/jquery-ui-1.8.15.zip differ
diff --git a/resources/download/jquery-ui-1.8.16.zip b/resources/download/jquery-ui-1.8.16.zip
new file mode 100644
index 0000000..7ea7073
Binary files /dev/null and b/resources/download/jquery-ui-1.8.16.zip differ
diff --git a/resources/download/jquery-ui-1.8.17.zip b/resources/download/jquery-ui-1.8.17.zip
new file mode 100644
index 0000000..113c8b3
Binary files /dev/null and b/resources/download/jquery-ui-1.8.17.zip differ
diff --git a/resources/download/jquery-ui-1.8.18.zip b/resources/download/jquery-ui-1.8.18.zip
new file mode 100644
index 0000000..704f240
Binary files /dev/null and b/resources/download/jquery-ui-1.8.18.zip differ
diff --git a/resources/download/jquery-ui-1.8.19.zip b/resources/download/jquery-ui-1.8.19.zip
new file mode 100644
index 0000000..9bb9772
Binary files /dev/null and b/resources/download/jquery-ui-1.8.19.zip differ
diff --git a/resources/download/jquery-ui-1.8.2.zip b/resources/download/jquery-ui-1.8.2.zip
new file mode 100644
index 0000000..e1eec54
Binary files /dev/null and b/resources/download/jquery-ui-1.8.2.zip differ
diff --git a/resources/download/jquery-ui-1.8.20.zip b/resources/download/jquery-ui-1.8.20.zip
new file mode 100644
index 0000000..2d7a87a
Binary files /dev/null and b/resources/download/jquery-ui-1.8.20.zip differ
diff --git a/resources/download/jquery-ui-1.8.21.zip b/resources/download/jquery-ui-1.8.21.zip
new file mode 100644
index 0000000..fb5eaa4
Binary files /dev/null and b/resources/download/jquery-ui-1.8.21.zip differ
diff --git a/resources/download/jquery-ui-1.8.22.zip b/resources/download/jquery-ui-1.8.22.zip
new file mode 100644
index 0000000..8b8d262
Binary files /dev/null and b/resources/download/jquery-ui-1.8.22.zip differ
diff --git a/resources/download/jquery-ui-1.8.23.zip b/resources/download/jquery-ui-1.8.23.zip
new file mode 100644
index 0000000..b35823b
Binary files /dev/null and b/resources/download/jquery-ui-1.8.23.zip differ
diff --git a/resources/download/jquery-ui-1.8.24.zip b/resources/download/jquery-ui-1.8.24.zip
new file mode 100644
index 0000000..0b3b0b8
Binary files /dev/null and b/resources/download/jquery-ui-1.8.24.zip differ
diff --git a/resources/download/jquery-ui-1.8.4.zip b/resources/download/jquery-ui-1.8.4.zip
new file mode 100644
index 0000000..a50b112
Binary files /dev/null and b/resources/download/jquery-ui-1.8.4.zip differ
diff --git a/resources/download/jquery-ui-1.8.5.zip b/resources/download/jquery-ui-1.8.5.zip
new file mode 100644
index 0000000..30f1e00
Binary files /dev/null and b/resources/download/jquery-ui-1.8.5.zip differ
diff --git a/resources/download/jquery-ui-1.8.6.zip b/resources/download/jquery-ui-1.8.6.zip
new file mode 100644
index 0000000..7dcea89
Binary files /dev/null and b/resources/download/jquery-ui-1.8.6.zip differ
diff --git a/resources/download/jquery-ui-1.8.7.zip b/resources/download/jquery-ui-1.8.7.zip
new file mode 100644
index 0000000..f9ec314
Binary files /dev/null and b/resources/download/jquery-ui-1.8.7.zip differ
diff --git a/resources/download/jquery-ui-1.8.8.zip b/resources/download/jquery-ui-1.8.8.zip
new file mode 100644
index 0000000..2fa85a8
Binary files /dev/null and b/resources/download/jquery-ui-1.8.8.zip differ
diff --git a/resources/download/jquery-ui-1.8.9.zip b/resources/download/jquery-ui-1.8.9.zip
new file mode 100644
index 0000000..64b10f3
Binary files /dev/null and b/resources/download/jquery-ui-1.8.9.zip differ
diff --git a/resources/download/jquery-ui-1.8.zip b/resources/download/jquery-ui-1.8.zip
new file mode 100644
index 0000000..7def250
Binary files /dev/null and b/resources/download/jquery-ui-1.8.zip differ
diff --git a/resources/download/jquery-ui-1.8a1.zip b/resources/download/jquery-ui-1.8a1.zip
new file mode 100644
index 0000000..52d63fc
Binary files /dev/null and b/resources/download/jquery-ui-1.8a1.zip differ
diff --git a/resources/download/jquery-ui-1.8a2.zip b/resources/download/jquery-ui-1.8a2.zip
new file mode 100644
index 0000000..2db7a4a
Binary files /dev/null and b/resources/download/jquery-ui-1.8a2.zip differ
diff --git a/resources/download/jquery-ui-1.8b1.zip b/resources/download/jquery-ui-1.8b1.zip
new file mode 100644
index 0000000..e3370e1
Binary files /dev/null and b/resources/download/jquery-ui-1.8b1.zip differ
diff --git a/resources/download/jquery-ui-1.8rc1.zip b/resources/download/jquery-ui-1.8rc1.zip
new file mode 100644
index 0000000..853c6d4
Binary files /dev/null and b/resources/download/jquery-ui-1.8rc1.zip differ
diff --git a/resources/download/jquery-ui-1.8rc2.zip b/resources/download/jquery-ui-1.8rc2.zip
new file mode 100644
index 0000000..608fca8
Binary files /dev/null and b/resources/download/jquery-ui-1.8rc2.zip differ
diff --git a/resources/download/jquery-ui-1.8rc3.zip b/resources/download/jquery-ui-1.8rc3.zip
new file mode 100644
index 0000000..194de84
Binary files /dev/null and b/resources/download/jquery-ui-1.8rc3.zip differ
diff --git a/resources/download/jquery-ui-1.9.0-beta.1.zip b/resources/download/jquery-ui-1.9.0-beta.1.zip
new file mode 100644
index 0000000..c15d00d
Binary files /dev/null and b/resources/download/jquery-ui-1.9.0-beta.1.zip differ
diff --git a/resources/download/jquery-ui-1.9.0-rc.1.zip b/resources/download/jquery-ui-1.9.0-rc.1.zip
new file mode 100644
index 0000000..5aa5da8
Binary files /dev/null and b/resources/download/jquery-ui-1.9.0-rc.1.zip differ
diff --git a/resources/download/jquery-ui-1.9.0.zip b/resources/download/jquery-ui-1.9.0.zip
new file mode 100644
index 0000000..66c0af2
Binary files /dev/null and b/resources/download/jquery-ui-1.9.0.zip differ
diff --git a/resources/download/jquery-ui-1.9.0m8.zip b/resources/download/jquery-ui-1.9.0m8.zip
new file mode 100644
index 0000000..521a8d8
Binary files /dev/null and b/resources/download/jquery-ui-1.9.0m8.zip differ
diff --git a/resources/download/jquery-ui-1.9.1.custom.zip b/resources/download/jquery-ui-1.9.1.custom.zip
new file mode 100644
index 0000000..16fa419
Binary files /dev/null and b/resources/download/jquery-ui-1.9.1.custom.zip differ
diff --git a/resources/download/jquery-ui-1.9.1.zip b/resources/download/jquery-ui-1.9.1.zip
new file mode 100644
index 0000000..70c7e59
Binary files /dev/null and b/resources/download/jquery-ui-1.9.1.zip differ
diff --git a/resources/download/jquery-ui-1.9.2.custom.zip b/resources/download/jquery-ui-1.9.2.custom.zip
new file mode 100644
index 0000000..61c3b92
Binary files /dev/null and b/resources/download/jquery-ui-1.9.2.custom.zip differ
diff --git a/resources/download/jquery-ui-1.9.2.zip b/resources/download/jquery-ui-1.9.2.zip
new file mode 100644
index 0000000..908ee3e
Binary files /dev/null and b/resources/download/jquery-ui-1.9.2.zip differ
diff --git a/resources/download/jquery-ui-1.9m1.zip b/resources/download/jquery-ui-1.9m1.zip
new file mode 100644
index 0000000..5f6222c
Binary files /dev/null and b/resources/download/jquery-ui-1.9m1.zip differ
diff --git a/resources/download/jquery-ui-1.9m2.zip b/resources/download/jquery-ui-1.9m2.zip
new file mode 100644
index 0000000..4da813f
Binary files /dev/null and b/resources/download/jquery-ui-1.9m2.zip differ
diff --git a/resources/download/jquery-ui-1.9m3.zip b/resources/download/jquery-ui-1.9m3.zip
new file mode 100644
index 0000000..9844e06
Binary files /dev/null and b/resources/download/jquery-ui-1.9m3.zip differ
diff --git a/resources/download/jquery-ui-1.9m4.zip b/resources/download/jquery-ui-1.9m4.zip
new file mode 100644
index 0000000..ff699ce
Binary files /dev/null and b/resources/download/jquery-ui-1.9m4.zip differ
diff --git a/resources/download/jquery-ui-1.9m5.zip b/resources/download/jquery-ui-1.9m5.zip
new file mode 100644
index 0000000..6e2e179
Binary files /dev/null and b/resources/download/jquery-ui-1.9m5.zip differ
diff --git a/resources/download/jquery-ui-1.9m6.zip b/resources/download/jquery-ui-1.9m6.zip
new file mode 100644
index 0000000..1f361fd
Binary files /dev/null and b/resources/download/jquery-ui-1.9m6.zip differ
diff --git a/resources/download/jquery-ui-1.9m7.zip b/resources/download/jquery-ui-1.9m7.zip
new file mode 100644
index 0000000..b7458bf
Binary files /dev/null and b/resources/download/jquery-ui-1.9m7.zip differ
diff --git a/resources/download/jquery-ui-themes-1.10.0.zip b/resources/download/jquery-ui-themes-1.10.0.zip
new file mode 100644
index 0000000..d0668b8
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.10.0.zip differ
diff --git a/resources/download/jquery-ui-themes-1.10.1.zip b/resources/download/jquery-ui-themes-1.10.1.zip
new file mode 100644
index 0000000..164bcdc
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.10.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.10.2.zip b/resources/download/jquery-ui-themes-1.10.2.zip
new file mode 100644
index 0000000..42ff912
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.10.2.zip differ
diff --git a/resources/download/jquery-ui-themes-1.10.3.zip b/resources/download/jquery-ui-themes-1.10.3.zip
new file mode 100644
index 0000000..a575223
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.10.3.zip differ
diff --git a/resources/download/jquery-ui-themes-1.10.4.zip b/resources/download/jquery-ui-themes-1.10.4.zip
new file mode 100644
index 0000000..1a0b3d2
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.10.4.zip differ
diff --git a/resources/download/jquery-ui-themes-1.11.0-beta.2.zip b/resources/download/jquery-ui-themes-1.11.0-beta.2.zip
new file mode 100644
index 0000000..028241f
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.11.0-beta.2.zip differ
diff --git a/resources/download/jquery-ui-themes-1.11.0.zip b/resources/download/jquery-ui-themes-1.11.0.zip
new file mode 100644
index 0000000..2a5b625
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.11.0.zip differ
diff --git a/resources/download/jquery-ui-themes-1.11.1.zip b/resources/download/jquery-ui-themes-1.11.1.zip
new file mode 100644
index 0000000..ce5bed7
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.11.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.11.2.zip b/resources/download/jquery-ui-themes-1.11.2.zip
new file mode 100644
index 0000000..08cd85b
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.11.2.zip differ
diff --git a/resources/download/jquery-ui-themes-1.11.3.zip b/resources/download/jquery-ui-themes-1.11.3.zip
new file mode 100644
index 0000000..faf90c5
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.11.3.zip differ
diff --git a/resources/download/jquery-ui-themes-1.11.4.zip b/resources/download/jquery-ui-themes-1.11.4.zip
new file mode 100644
index 0000000..c62a099
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.11.4.zip differ
diff --git a/resources/download/jquery-ui-themes-1.12.0-beta.1.zip b/resources/download/jquery-ui-themes-1.12.0-beta.1.zip
new file mode 100644
index 0000000..72b9f96
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.12.0-beta.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.12.0-rc.1.zip b/resources/download/jquery-ui-themes-1.12.0-rc.1.zip
new file mode 100644
index 0000000..3e1d904
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.12.0-rc.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.12.0-rc.2.zip b/resources/download/jquery-ui-themes-1.12.0-rc.2.zip
new file mode 100644
index 0000000..a0e9786
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.12.0-rc.2.zip differ
diff --git a/resources/download/jquery-ui-themes-1.12.0.zip b/resources/download/jquery-ui-themes-1.12.0.zip
new file mode 100644
index 0000000..cb7f326
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.12.0.zip differ
diff --git a/resources/download/jquery-ui-themes-1.12.1.zip b/resources/download/jquery-ui-themes-1.12.1.zip
new file mode 100644
index 0000000..d28d2b3
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.12.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.13.0-rc.2.zip b/resources/download/jquery-ui-themes-1.13.0-rc.2.zip
new file mode 100644
index 0000000..fdddaec
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.13.0-rc.2.zip differ
diff --git a/resources/download/jquery-ui-themes-1.13.0-rc.3.zip b/resources/download/jquery-ui-themes-1.13.0-rc.3.zip
new file mode 100644
index 0000000..e882fd9
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.13.0-rc.3.zip differ
diff --git a/resources/download/jquery-ui-themes-1.13.0.zip b/resources/download/jquery-ui-themes-1.13.0.zip
new file mode 100644
index 0000000..592e5ce
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.13.0.zip differ
diff --git a/resources/download/jquery-ui-themes-1.13.1.zip b/resources/download/jquery-ui-themes-1.13.1.zip
new file mode 100644
index 0000000..67b45e1
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.13.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.13.2.zip b/resources/download/jquery-ui-themes-1.13.2.zip
new file mode 100644
index 0000000..8f134b9
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.13.2.zip differ
diff --git a/resources/download/jquery-ui-themes-1.13.3.zip b/resources/download/jquery-ui-themes-1.13.3.zip
new file mode 100644
index 0000000..ce980dd
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.13.3.zip differ
diff --git a/resources/download/jquery-ui-themes-1.14.0-beta.1.zip b/resources/download/jquery-ui-themes-1.14.0-beta.1.zip
new file mode 100644
index 0000000..40f562c
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.14.0-beta.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.14.0-beta.2.zip b/resources/download/jquery-ui-themes-1.14.0-beta.2.zip
new file mode 100644
index 0000000..75790b7
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.14.0-beta.2.zip differ
diff --git a/resources/download/jquery-ui-themes-1.14.0.zip b/resources/download/jquery-ui-themes-1.14.0.zip
new file mode 100644
index 0000000..93a5bfd
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.14.0.zip differ
diff --git a/resources/download/jquery-ui-themes-1.14.1.zip b/resources/download/jquery-ui-themes-1.14.1.zip
new file mode 100644
index 0000000..020a97a
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.14.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.14.2.zip b/resources/download/jquery-ui-themes-1.14.2.zip
new file mode 100644
index 0000000..05190ea
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.14.2.zip differ
diff --git a/resources/download/jquery-ui-themes-1.7.1.zip b/resources/download/jquery-ui-themes-1.7.1.zip
new file mode 100644
index 0000000..540930c
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.7.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.7.2.zip b/resources/download/jquery-ui-themes-1.7.2.zip
new file mode 100644
index 0000000..a5714c0
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.7.2.zip differ
diff --git a/resources/download/jquery-ui-themes-1.7.zip b/resources/download/jquery-ui-themes-1.7.zip
new file mode 100644
index 0000000..fbc82ed
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.7.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.1.zip b/resources/download/jquery-ui-themes-1.8.1.zip
new file mode 100644
index 0000000..07f3843
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.10.zip b/resources/download/jquery-ui-themes-1.8.10.zip
new file mode 100644
index 0000000..8b04cc7
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.10.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.11.zip b/resources/download/jquery-ui-themes-1.8.11.zip
new file mode 100644
index 0000000..3a5a6a3
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.11.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.12.zip b/resources/download/jquery-ui-themes-1.8.12.zip
new file mode 100644
index 0000000..1bf3e31
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.12.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.13.zip b/resources/download/jquery-ui-themes-1.8.13.zip
new file mode 100644
index 0000000..e751771
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.13.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.14.zip b/resources/download/jquery-ui-themes-1.8.14.zip
new file mode 100644
index 0000000..e3af4c1
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.14.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.15.zip b/resources/download/jquery-ui-themes-1.8.15.zip
new file mode 100644
index 0000000..27416d0
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.15.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.16.zip b/resources/download/jquery-ui-themes-1.8.16.zip
new file mode 100644
index 0000000..f1a89bf
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.16.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.17.zip b/resources/download/jquery-ui-themes-1.8.17.zip
new file mode 100644
index 0000000..18831c3
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.17.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.18.zip b/resources/download/jquery-ui-themes-1.8.18.zip
new file mode 100644
index 0000000..a531ed6
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.18.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.19.zip b/resources/download/jquery-ui-themes-1.8.19.zip
new file mode 100644
index 0000000..1535bee
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.19.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.2.zip b/resources/download/jquery-ui-themes-1.8.2.zip
new file mode 100644
index 0000000..c68a0e0
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.2.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.20.zip b/resources/download/jquery-ui-themes-1.8.20.zip
new file mode 100644
index 0000000..845d9ee
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.20.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.21.zip b/resources/download/jquery-ui-themes-1.8.21.zip
new file mode 100644
index 0000000..5acf91b
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.21.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.22.zip b/resources/download/jquery-ui-themes-1.8.22.zip
new file mode 100644
index 0000000..c3e697f
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.22.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.23.zip b/resources/download/jquery-ui-themes-1.8.23.zip
new file mode 100644
index 0000000..65ccf45
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.23.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.24.zip b/resources/download/jquery-ui-themes-1.8.24.zip
new file mode 100644
index 0000000..782689a
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.24.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.4.zip b/resources/download/jquery-ui-themes-1.8.4.zip
new file mode 100644
index 0000000..d59bc4b
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.4.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.5.zip b/resources/download/jquery-ui-themes-1.8.5.zip
new file mode 100644
index 0000000..2ec4652
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.5.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.6.zip b/resources/download/jquery-ui-themes-1.8.6.zip
new file mode 100644
index 0000000..06fbe75
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.6.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.7.zip b/resources/download/jquery-ui-themes-1.8.7.zip
new file mode 100644
index 0000000..d2853b8
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.7.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.8.zip b/resources/download/jquery-ui-themes-1.8.8.zip
new file mode 100644
index 0000000..6acbf87
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.8.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.9.zip b/resources/download/jquery-ui-themes-1.8.9.zip
new file mode 100644
index 0000000..17e6481
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.9.zip differ
diff --git a/resources/download/jquery-ui-themes-1.8.zip b/resources/download/jquery-ui-themes-1.8.zip
new file mode 100644
index 0000000..bef8fc8
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.8.zip differ
diff --git a/resources/download/jquery-ui-themes-1.9.0.zip b/resources/download/jquery-ui-themes-1.9.0.zip
new file mode 100644
index 0000000..de6a7db
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.9.0.zip differ
diff --git a/resources/download/jquery-ui-themes-1.9.1.zip b/resources/download/jquery-ui-themes-1.9.1.zip
new file mode 100644
index 0000000..42207c5
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.9.1.zip differ
diff --git a/resources/download/jquery-ui-themes-1.9.2.zip b/resources/download/jquery-ui-themes-1.9.2.zip
new file mode 100644
index 0000000..aaec9e5
Binary files /dev/null and b/resources/download/jquery-ui-themes-1.9.2.zip differ
diff --git a/taxonomies.json b/taxonomies.json
index 8975dab..e2401fa 100644
--- a/taxonomies.json
+++ b/taxonomies.json
@@ -19,6 +19,10 @@
{
"slug": "utilities",
"name": "Utilities"
+ },
+ {
+ "slug": "meta",
+ "name": "Project"
}
]
}