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 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 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. Scott González is a web developer living in York, PA. 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 ever-changing 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. 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. Felix is a Senior Web Developer at move:elevator working with TYPO3 CMS and Symfony2. He is currently living in Dresden, Germany. Felix has built the Selectmenu widget. Corey is a freelance web developer, speaker and system administrator, living in Rockford, IL. He is an active contributor to most of the jQuery teams and is active in the jQuery community on IRC, and Stack Overflow. Corey has restructured the effects modules in both UI and Core, maintains the jQuery Color Animations plugin and leads the jQuery infrastructure team. Mike is lead developer at SNAP Interactive, Inc., 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. Xavier 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. Now, he devotes his energies to his startup. TJ VanToll is a web developer, speaker, and writer living in Lansing, MI and working as a developer advocate for Telerik. He works on all facets of jQuery UI including triage, documentation, bug fixes, and is currently working on the rewrite of the datepicker widget. Want to learn more about the accordion widget? Check out the
-API documentation.
" );
+ $( "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 7bdb394..90d1df0 100644
--- a/LICENSE-MIT.txt
+++ b/LICENSE.txt
@@ -1,8 +1,13 @@
-Copyright (c) 2013 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 4708bdf..bccafbe 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,12 @@
-jqueryui.com
-============
+# jqueryui.com
## Building and Deploying
-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](http://contribute.jquery.org/web-sites/#workflow) from our documentation on [contributing to jQuery Foundation web sites](http://contribute.jquery.org/web-sites/).
+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/).
+
+Prerequisites:
+* `apt-get install -y libxml2-utils xsltproc imagemagick`
+* Create `config.json`
+
+Build the dist directory locally:
+* `npx grunt build`
diff --git a/config-sample.json b/config-sample.json
index b8da7a2..8392266 100644
--- a/config-sample.json
+++ b/config-sample.json
@@ -1,5 +1,5 @@
{
- "url": "local.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 8ed0170..0000000
--- a/grunt.js
+++ /dev/null
@@ -1,258 +0,0 @@
-module.exports = function( grunt ) {
-"use strict";
-grunt.loadNpmTasks( "grunt-clean" );
-grunt.loadNpmTasks( "grunt-html" );
-grunt.loadNpmTasks( "grunt-wordpress" );
-grunt.loadNpmTasks( "grunt-jquery-content" );
-grunt.loadNpmTasks( "grunt-check-modules" );
-
-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 = require( "download.jqueryui.com" ).frontend({
- host: "http://download.jqueryui.com",
- env: "production"
- }),
- 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() {
- function sortByTitle( a, b ) {
- if ( a.filename === "default" ) {
- return -1;
- }
- if ( b.filename === "default" ) {
- return 1;
- }
- return a.title > b.title ? 1 : -1;
- }
-
- // 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" ) ),
- versions = grunt.file.readJSON( downloadModulePath + "/config.json" ),
- repoDir = downloadModulePath + "/jquery-ui/" + versions.jqueryUi.stable.version,
- demosDir = repoDir + "/demos",
- targetDir = grunt.config( "wordpress.dir" ) + "/resources/demos",
- highlightDir = targetDir + "-highlight",
- demoList = {},
- subdir;
-
- // 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 ].push({
- filename: 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 );
- }
- // TODO: Remove subdir parameter when upgrading to grunt 0.4.1+
- // https://github.com/gruntjs/grunt/pull/722
- }, "" );
-
- 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" ) );
-
- // 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 Team
-
-Scott González — Project Lead
-Jörn Zaefferer — Development Lead
-Kris Borchers
-Felix Nagel
-Corey Frang
-Mike Sherov
-Rafael Xavier de Souza
-TJ VanToll
-Contributors (Past & Present)
-
-Paul Bakaus
-David Bolter
-Rich Caloggero
-Chi Cheng
-Colin Clark
-Michelle D'Souza
-Alex Dovenmuehle
-Aaron Eisenberger
-Marc Grabanski
-Klaus Hartl
-Dan Heberden
-Hans Hillen
-Paul Irish
-Scott Jehl
-Thomas Klose
-Cody Lindley
-Eduardo Lundgren
-Todd Parker
-David Petersen
-Adam J. Sontag
-Patty Toland
-Ca-Phun Ung
-Maggie Costello Wachs
-Ralph Whitbeck
-Keith Wood
-Richard D. Worth
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 2ded876..a60bfac 100644
--- a/page/accordion.html
+++ b/page/accordion.html
@@ -10,4 +10,4 @@
Adds class(es) to elements while animating all style changes.
- +Want to learn more about the .addClass() method? Check out
-the API documentation.
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.
diff --git a/page/autocomplete.html b/page/autocomplete.html index e90dfa3..330a7bf 100644 --- a/page/autocomplete.html +++ b/page/autocomplete.html @@ -10,4 +10,4 @@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 aff8d94..904b268 100644 --- a/page/button.html +++ b/page/button.html @@ -10,4 +10,4 @@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 d077c12..54188e3 100644 --- a/page/changelog.md +++ b/page/changelog.md @@ -1,7 +1,77 @@ +## [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 diff --git a/page/changelog/1.10.0.md b/page/changelog/1.10.0.md index 74fc76c..cfbf5f7 100644 --- a/page/changelog/1.10.0.md +++ b/page/changelog/1.10.0.md @@ -2,231 +2,233 @@ "title": "jQuery UI 1.10.0 Changelog" } +Released on January 17, 2013 + ## Build -* Added: Support for pre-releases in release script. ([1f5dd8d](http://github.com/jquery/jquery-ui/commit/1f5dd8d68ef568ea4ec28c3881ba438e4f946f3f)) +* Added: Support for pre-releases in release script. ([1f5dd8d](https://github.com/jquery/jquery-ui/commit/1f5dd8d68ef568ea4ec28c3881ba438e4f946f3f)) ## Core & Utilities -* Removed: Use of bgiframe. ([68cab60](http://github.com/jquery/jquery-ui/commit/68cab60fa758b34c024742daa9dbc3e6bf6a0521)) +* Removed: Use of bgiframe. ([68cab60](https://github.com/jquery/jquery-ui/commit/68cab60fa758b34c024742daa9dbc3e6bf6a0521)) ### UI Core -* Removed: $.support.minHeight. ([0c67254](http://github.com/jquery/jquery-ui/commit/0c672543bf897c0d8c162a2daedbf3a85206f227)) -* Removed: $.ui.contains. ([#8902](http://bugs.jqueryui.com/ticket/8902), [747d853](http://github.com/jquery/jquery-ui/commit/747d8534520fc3abad81b3c171fa931149398d99)) -* Removed: $.ui.ie6. ([995eb12](http://github.com/jquery/jquery-ui/commit/995eb1261e5e6bb57cad292a56911893d539472e)) -* Removed: $.ui.isOver() and $.ui.isOverAxis(). ([#8891](http://bugs.jqueryui.com/ticket/8891), [3ec0c2e](http://github.com/jquery/jquery-ui/commit/3ec0c2e5728da9b9b9955dfe18073d3985e61a52)) -* Fixed: Patch over broken .removeData() in jQuery 1.6.1 + 1.6.2. ([886d6fe](http://github.com/jquery/jquery-ui/commit/886d6fe9fb8bcbf5e4e968bdd535a0fbcf2b88f7)) +* 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](http://bugs.jqueryui.com/ticket/8801), [d44557f](http://github.com/jquery/jquery-ui/commit/d44557f50ad7b3c512bdd8bc2ba3eed5672b3b12)) -* Removed: Use of metadata plugin. ([#7192](http://bugs.jqueryui.com/ticket/7192), [7678b90](http://github.com/jquery/jquery-ui/commit/7678b90ae843c2db48b29ed0e933764ef1d4214e)) -* Removed: widgetBaseClass property. ([#8155](http://bugs.jqueryui.com/ticket/8155), [cb030cb](http://github.com/jquery/jquery-ui/commit/cb030cbc1b9098a5eee0776328bea95d964b17ac)) -* Added: Ability to use _on() even when disabled. ([#8800](http://bugs.jqueryui.com/ticket/8800), [84cd214](http://github.com/jquery/jquery-ui/commit/84cd214486769a3527b3ab420219c8f9c78f9879)) -* Fixed: Bridge fails if widgetFullName is not supplied. ([#8775](http://bugs.jqueryui.com/ticket/8775), [75bd22e](http://github.com/jquery/jquery-ui/commit/75bd22eb731f5a81099ad97c88eede3862195fec)) -* Fixed: Calling _super() calls wrong inherited widget. ([#8876](http://bugs.jqueryui.com/ticket/8876), [8b15aaf](http://github.com/jquery/jquery-ui/commit/8b15aaf4964490a2a84e8f9d32d86ac750e0d4a2)) -* Fixed: widgetEventPrefix is incorrect when inheriting with jQuery UI 1.9.1. ([#8805](http://bugs.jqueryui.com/ticket/8805), [9e858ba](http://github.com/jquery/jquery-ui/commit/9e858ba14ac0ae26780581a34565e84e0ae108ef)) -* Fixed: ui-state-disabled blocks destroy to be triggered on remove. ([#8769](http://bugs.jqueryui.com/ticket/8769), [1cdeecc](http://github.com/jquery/jquery-ui/commit/1cdeeccab0e76495842cad9d04e686aee802777d)) +* 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](http://bugs.jqueryui.com/ticket/6982), [2582bfa](http://github.com/jquery/jquery-ui/commit/2582bfab46613da613f1a3354bc733b68a110b95)) +* 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](http://bugs.jqueryui.com/ticket/8757), [cf9fbce](http://github.com/jquery/jquery-ui/commit/cf9fbce13931732dc4b06d491ef2a01c4921faf1)) +* 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](http://github.com/jquery/jquery-ui/commit/d73edfff769603681a0889585b45062cdf98743e)) -* Added: Support for complex markup in handles. ([#8756](http://bugs.jqueryui.com/ticket/8756), [0bff32a](http://github.com/jquery/jquery-ui/commit/0bff32a2b1c2273e46dc0f70bc1058ad304ebcc5)) -* Fixed: Grid does not respect min/max dimensions. ([#8435](http://bugs.jqueryui.com/ticket/8435), [6e0a055](http://github.com/jquery/jquery-ui/commit/6e0a0553ce85997e4f37597800b440b1e4371b5b)) -* Fixed: Modal dialogs do not disable resizables on the page. ([#7960](http://bugs.jqueryui.com/ticket/7960), [0cd470b](http://github.com/jquery/jquery-ui/commit/0cd470b0d5f8c617e761c4a6c90aeea4e3f54128)) -* Fixed: alsoResize option doesn't work with containment. ([#4603](http://bugs.jqueryui.com/ticket/4603), [#5559](http://bugs.jqueryui.com/ticket/5559), [5ba267e](http://github.com/jquery/jquery-ui/commit/5ba267e7c78f0bc257383c822d241c5369e8e49d)) -* Fixed: Setting width and height when only one is changing. ([#7605](http://bugs.jqueryui.com/ticket/7605), [3974b55](http://github.com/jquery/jquery-ui/commit/3974b55ba5078799df818c78d9273e11d9796ff3)) -* Fixed: Callbacks ignore the grid. ([#5545](http://bugs.jqueryui.com/ticket/5545), [3974b55](http://github.com/jquery/jquery-ui/commit/3974b55ba5078799df818c78d9273e11d9796ff3)) -* Fixed: resize event reports unconstrained ui.size. ([#5817](http://bugs.jqueryui.com/ticket/5817), [3974b55](http://github.com/jquery/jquery-ui/commit/3974b55ba5078799df818c78d9273e11d9796ff3)) -* Fixed: Absolutely positioned element inside scrollable element is repositioned when resized. ([#3815](http://bugs.jqueryui.com/ticket/3815), [a1b32b5](http://github.com/jquery/jquery-ui/commit/a1b32b59d57c2171af9ba0ed6b35ccde28794e3b)) +* 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](http://bugs.jqueryui.com/ticket/8915), [6953589](http://github.com/jquery/jquery-ui/commit/695358983e58c9f3d0c6b755ce89fa92adbea0ea)) +* 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](http://bugs.jqueryui.com/ticket/5868), [#5872](http://bugs.jqueryui.com/ticket/5872), [0cdd559](http://github.com/jquery/jquery-ui/commit/0cdd5591be15b2d605191656f3468f36f7d5a94d)) -* Removed: animated option. ([#8601](http://bugs.jqueryui.com/ticket/8601), [8d35c03](http://github.com/jquery/jquery-ui/commit/8d35c03dfdb3d4368bf38b113e25c06a82129cd5)) -* Removed: change and changestart events. ([#6841](http://bugs.jqueryui.com/ticket/6841), [#6843](http://bugs.jqueryui.com/ticket/6843), [bc44e61](http://github.com/jquery/jquery-ui/commit/bc44e61dd9e6797bb23bc3038d43436a8ba052c3)) -* Removed: activate method and support for non-number/falsey values for active option. ([#6837](http://bugs.jqueryui.com/ticket/6837), [#6853](http://bugs.jqueryui.com/ticket/6853), [d67bc41](http://github.com/jquery/jquery-ui/commit/d67bc412a869938cb85ff02e10a78befd7409a1a)) -* Removed: icons.headerSelected option. ([#6835](http://bugs.jqueryui.com/ticket/6835), [fd952c5](http://github.com/jquery/jquery-ui/commit/fd952c5a7956ac583a44475f481bdec9efa7857b)) -* Removed: navigation and navigatinFilter options. ([#5870](http://bugs.jqueryui.com/ticket/5870), [09eed56](http://github.com/jquery/jquery-ui/commit/09eed560f87a122258818292ba3743f9382753c3)) -* Removed: resize method. ([#6839](http://bugs.jqueryui.com/ticket/6839), [974e5f8](http://github.com/jquery/jquery-ui/commit/974e5f81964bb2449a5554d1bac1c82beeee9067)) -* Added: Ability to add/remove panels. ([#4672](http://bugs.jqueryui.com/ticket/4672), [d657538](http://github.com/jquery/jquery-ui/commit/d657538ed57a96b610853d69e9fbf559c5ae230f)) +* 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](http://github.com/jquery/jquery-ui/commit/703d62f2982fb6ec2e85e5bf5e96be44b0544a34)) -* Removed: Data fallback for item.autocomplete. ([#8156](http://bugs.jqueryui.com/ticket/8156), [9202bb7](http://github.com/jquery/jquery-ui/commit/9202bb7df57b159003f6a0659cbe9359fdeb8196)) -* Fixed: XSS in combobox demo. ([#8859](http://bugs.jqueryui.com/ticket/8859), [5fee6fd](http://github.com/jquery/jquery-ui/commit/5fee6fd5000072ff32f2d65b6451f39af9e0e39e)) -* Fixed: Handle detached elements for appendTo after create. ([da17a23](http://github.com/jquery/jquery-ui/commit/da17a232ca554254eabd3583805b381f6b525ec5)) -* Fixed: Autocomplete dropdown positioned incorrectly in IE. ([#8749](http://bugs.jqueryui.com/ticket/8749), [d693ce5](http://github.com/jquery/jquery-ui/commit/d693ce5324f6f3be8479ef083e4eaf3c705ef043)) -* Fixed: Autocomplete fails when appendTo is detached from the DOM. ([#8858](http://bugs.jqueryui.com/ticket/8858), [dec8445](http://github.com/jquery/jquery-ui/commit/dec844570fae5edf56876b760b9358fde2ecb5e7)) +* 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](http://bugs.jqueryui.com/ticket/8828), [93abe02](http://github.com/jquery/jquery-ui/commit/93abe02b6052143fac30393291da3fc254bde996)) -* Fixed: Incorrect state after double click in Firefox. ([#5518](http://bugs.jqueryui.com/ticket/5518), [caacf8f](http://github.com/jquery/jquery-ui/commit/caacf8f5041ad434b8e0dd1069936eb91e4c3394)) -* Fixed: Toolbar demo ugly in IE. ([#5253](http://bugs.jqueryui.com/ticket/5253), [e77edc6](http://github.com/jquery/jquery-ui/commit/e77edc60991dc0d9908e056aa05adc49b9daa7cd)) -* Fixed: Button doesn't remove active state when using keyboard. ([#8559](http://bugs.jqueryui.com/ticket/8559), [f13b5df](http://github.com/jquery/jquery-ui/commit/f13b5dfa7fdb480b818cfbf07e35088460e7b5c9)) -* Fixed: Inconsistent styling based on markup. ([#7996](http://bugs.jqueryui.com/ticket/7996), [83e2a59](http://github.com/jquery/jquery-ui/commit/83e2a59ace6f00b785dd6f46fd63b416d86e0cc2)) -* Fixed: Buttonset not applied to radio group with quotation/apostrophe in name. ([#7505](http://bugs.jqueryui.com/ticket/7505), [cc7df71](http://github.com/jquery/jquery-ui/commit/cc7df712cc4ca90f6d6db599c5ff91b690921581)) -* Fixed: Button doesn't remove hover state if they are disabled. ([#5295](http://bugs.jqueryui.com/ticket/5295), [8e1ceba](http://github.com/jquery/jquery-ui/commit/8e1ceba717b85e42a13cc1660e7c8e9e9c26c384)) +* 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](http://github.com/jquery/jquery-ui/commit/e21fc296102c2b8b159404c378cf39470da9a13e)) -* Removed: Support for setting options via custom attributes. ([7c53af0](http://github.com/jquery/jquery-ui/commit/7c53af0abc9d0c5b2ae1bcad30d01b7e2e441b75)) -* Removed: iframe cover for IE6. ([5bd1965](http://github.com/jquery/jquery-ui/commit/5bd19650a30cbfc2e7f75135e0ebf1788c4b9767)) -* Added: Belarusian locale. ([#8885](http://bugs.jqueryui.com/ticket/8885), [cff4c3c](http://github.com/jquery/jquery-ui/commit/cff4c3c4f3395d3f9837bd1affb8107d7ae65841)) -* Added: Canadian French locale. ([#8917](http://bugs.jqueryui.com/ticket/8917), [9f841df](http://github.com/jquery/jquery-ui/commit/9f841dffcc83105cc2517c7e31640848fbfff0af)) -* Added: Kyrgyz localization. ([#8787](http://bugs.jqueryui.com/ticket/8787), [1e19e5e](http://github.com/jquery/jquery-ui/commit/1e19e5e90bd801540e98c67f583a2f5aa30ffb53)) -* Added: Norwegian Bokmål and Norwegian Nynorsk locales. ([#8886](http://bugs.jqueryui.com/ticket/8886), [70f5d18](http://github.com/jquery/jquery-ui/commit/70f5d18c715ba1c759393856f0f70acfddbee07a)) -* Added: Run JSHint test in unit tests. ([20a29df](http://github.com/jquery/jquery-ui/commit/20a29dfd61f0f632c0d08aa0d1db3057668f3f7c)) -* Fixed: Datepicker allows changing year to something outside yearRange. ([#7362](http://bugs.jqueryui.com/ticket/7362), [eca5abd](http://github.com/jquery/jquery-ui/commit/eca5abd873675f5cc7b96641c723b7e35a4260bc)) -* Fixed: Datepicker should reinitialize if dpDiv is removed. ([#5679](http://bugs.jqueryui.com/ticket/5679), [7ffcaa2](http://github.com/jquery/jquery-ui/commit/7ffcaa2e3b673e7e4178293224d5a15f65cbbcf9)) -* Fixed: Faroese locale has incorrect firstDay. ([#8815](http://bugs.jqueryui.com/ticket/8815), [3d96f20](http://github.com/jquery/jquery-ui/commit/3d96f20506bd20f4cdbf5c1dc33149ad6ea5f62c)) -* Fixed: Changing disabled option doesn't work. ([#8883](http://bugs.jqueryui.com/ticket/8883), [598cdae](http://github.com/jquery/jquery-ui/commit/598cdae199fed9b3aa1700142e8e00a61fc6e61a)) +* 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](http://github.com/jquery/jquery-ui/commit/0be97bf8c01394cd68134b104bcbf30b27859531)) -* Removed: minHeight workaround for IE6. ([5bd4b11](http://github.com/jquery/jquery-ui/commit/5bd4b11d9ba8c8cfd51f2d31ca56357191631d24)) -* Removed: Unnecessary style properties. ([2c16435](http://github.com/jquery/jquery-ui/commit/2c1643509aee3cdeb0b5b7cc86a3cfa5ceb9fb60)) -* Removed: stack option. ([#8722](http://bugs.jqueryui.com/ticket/8722), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Removed: zIndex option. ([#8729](http://bugs.jqueryui.com/ticket/8729), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Deprecated: Array and string notations for position option. ([#8824](http://bugs.jqueryui.com/ticket/8824), [a0310eb](http://github.com/jquery/jquery-ui/commit/a0310eb091f679c8ba002d57a30b53f8e7ea8ef3)) -* Added: Allow dialog to be attached to a element other than body. ([#7948](http://bugs.jqueryui.com/ticket/7948), [70b16ef](http://github.com/jquery/jquery-ui/commit/70b16ef445d8f9947fd414894d97673706ee8c6f)) -* Added: Improve accessibilty - add an aria-describedby attribute on the dialog if there is nothing yet in the dialog content.([2a887e4](http://github.com/jquery/jquery-ui/commit/2a887e43213c4dbb21509b670cf5dc8ac2c67573)) -* Added: Allow Icons to be specified for Dialog buttons. ([#6830](http://bugs.jqueryui.com/ticket/6830), [9996173](http://github.com/jquery/jquery-ui/commit/999617343f7b813dc1c8d9c9048489e4d99d0470)) -* Added: Restore focus to opener. ([#8730](http://bugs.jqueryui.com/ticket/8730), [14691ae](http://github.com/jquery/jquery-ui/commit/14691ae6feea2732ec5aeae57b4275aa0e4d1beb)) -* Added: Use button widget for close button. ([83a9f21](http://github.com/jquery/jquery-ui/commit/83a9f219bf40ff834d660020bbfa7de550e48a0c)) -* Fixed: Scrollbar is difficult to use with overflow content and resize handle. ([#4575](http://bugs.jqueryui.com/ticket/4575), [1ed853f](http://github.com/jquery/jquery-ui/commit/1ed853f7bb9f58af09e55e207534ecb10bcbe286)) -* Fixed: Destroying a dialog leaves style, scrollleft, and scrolltop leftovers. ([#8119](http://bugs.jqueryui.com/ticket/8119), [d687a1b](http://github.com/jquery/jquery-ui/commit/d687a1b10d1e176a6a8dd4420f1ea3a890640da0), [3c2acc3](http://github.com/jquery/jquery-ui/commit/3c2acc322782cc08e575405f8123029342e33542), [f59f5a8](http://github.com/jquery/jquery-ui/commit/f59f5a8b12d50c87ba6e2fe47a1804a23535b3cf)) -* Fixed: Close icon does not work in dialog larger than the window in IE. ([#8838](http://bugs.jqueryui.com/ticket/8838), [60486ac](http://github.com/jquery/jquery-ui/commit/60486ac632a0a1bbbb0c7449fe17bccfae11af80)) -* Fixed: Don't use .attr( props, true ). ([a8de99c](http://github.com/jquery/jquery-ui/commit/a8de99c791ae24e558920e1756fb7d0bf9dfc166)) -* Fixed: Destroying a dialog during animated close leaves .ui-effects-wrapper in DOM. ([#5860](http://bugs.jqueryui.com/ticket/5860), [13505e5](http://github.com/jquery/jquery-ui/commit/13505e5945e5532c3d56424d50ad109c665d205f)) -* Fixed: Add option to set which element gains focus on open. ([#4731](http://bugs.jqueryui.com/ticket/4731), [b27db7e](http://github.com/jquery/jquery-ui/commit/b27db7e3b9a857b8f0890e91ae9c8a2d33bf9919)) -* Fixed: Title XSS Vulnerability. ([#6016](http://bugs.jqueryui.com/ticket/6016), [7e9060c](http://github.com/jquery/jquery-ui/commit/7e9060c109b928769a664dbcc2c17bd21231b6f3)) -* Fixed: Content grows bigger than widget on resize at document edge. ([#5559](http://bugs.jqueryui.com/ticket/5559), [5ba267e](http://github.com/jquery/jquery-ui/commit/5ba267e7c78f0bc257383c822d241c5369e8e49d)) -* Fixed: Contain focus within dialog. ([#3768](http://bugs.jqueryui.com/ticket/3768), [3a09a4a](http://github.com/jquery/jquery-ui/commit/3a09a4a0de1f485a63091ffe8188b080a561b592)) -* Fixed: Remove deprecated disableSelection() usage. ([b6cefc7](http://github.com/jquery/jquery-ui/commit/b6cefc797e1f4cbede6c0d69b0abf993244ea66c)) -* Fixed: Dialog overlays are not properly reused when multiple instances of a Dialog exist. ([#6058](http://bugs.jqueryui.com/ticket/6058), [1e8baf5](http://github.com/jquery/jquery-ui/commit/1e8baf568365f8edc833439315f76e5efe1ba9b6)) -* Fixed: Auto height does not respect the maxHeight option. ([#4820](http://bugs.jqueryui.com/ticket/4820), [d4551bc](http://github.com/jquery/jquery-ui/commit/d4551bc3b8dfbfd925700dcb9f71e7729b125889)) -* Fixed: If titlebar changes height during resize, button pane positioning changes. ([#7773](http://bugs.jqueryui.com/ticket/7773), [bdb0fbe](http://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](http://bugs.jqueryui.com/ticket/8741), [5986571](http://github.com/jquery/jquery-ui/commit/59865715fbec0462a0cc872195b44d3e3704a24b)) -* Fixed: Dialog does not close for first click on chrome. ([#8789](http://bugs.jqueryui.com/ticket/8789), [d179cba](http://github.com/jquery/jquery-ui/commit/d179cbaf3233ace0bc542e836c5c46e4129a9e0a)) -* Fixed: zIndex error with animated modal dialog. ([#4892](http://bugs.jqueryui.com/ticket/4892), [d07074d](http://github.com/jquery/jquery-ui/commit/d07074dc3c3b2c73ccf1ed1cb2876df31154e039)) -* Fixed: show: true and buttons break the layout. ([#6899](http://bugs.jqueryui.com/ticket/6899), [d07074d](http://github.com/jquery/jquery-ui/commit/d07074dc3c3b2c73ccf1ed1cb2876df31154e039)) -* Fixed: Modal dialog disables all input elements on page. ([#3534](http://bugs.jqueryui.com/ticket/3534), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Modal Dialog disables vertical scroll bar in Chrome & Safari. ([#4671](http://bugs.jqueryui.com/ticket/4671), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Modal Dialog's overlay dissapears in IE when content is tall. ([#4995](http://bugs.jqueryui.com/ticket/4995), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Don't change z-index when already at the top. ([#5388](http://bugs.jqueryui.com/ticket/5388), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Modal dialog incorrectly cancels input events. ([#5466](http://bugs.jqueryui.com/ticket/5466), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Get rid of z-index workaround, document it instead. ([#5762](http://bugs.jqueryui.com/ticket/5762), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Checkboxes that inherit a z-index < dialog z-index don't work. ([#6267](http://bugs.jqueryui.com/ticket/6267), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Modal prevents tab key from moving focus off slider handle. ([#7051](http://bugs.jqueryui.com/ticket/7051), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Modal dialog event loss with high zindex child elements. ([#7107](http://bugs.jqueryui.com/ticket/7107), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Modal operation interrupts drag drop marker functionality on gmaps. ([#7120](http://bugs.jqueryui.com/ticket/7120), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Change event cancelled when opening modal dialog from another modal dialog. ([#8172](http://bugs.jqueryui.com/ticket/8172), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Mouse event wrongly stopped. ([#8583](http://bugs.jqueryui.com/ticket/8583), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: CKEditor in Modal Dialog is not editable. ([#4727](http://bugs.jqueryui.com/ticket/4727), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Buttons in background still working even when an active modal dialog is in open state. ([#7063](http://bugs.jqueryui.com/ticket/7063), [3829a37](http://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Accessibility issues. ([#7861](http://bugs.jqueryui.com/ticket/7861), [#7862](http://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](http://bugs.jqueryui.com/ticket/8351)) -* Fixed: Position changes on first resize. ([#8508](http://bugs.jqueryui.com/ticket/8508)) -* Fixed: Focus close button and closing dialog with Jaws 13. ([#8963](http://bugs.jqueryui.com/ticket/8963)) +* 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](http://bugs.jqueryui.com/ticket/8866), [5143b7f](http://github.com/jquery/jquery-ui/commit/5143b7f672bc668963cce7dcf5dd4e2970aad8e5)) -* Fixed: Can't change icons option after init. ([#8927](http://bugs.jqueryui.com/ticket/8927), [2c3d311](http://github.com/jquery/jquery-ui/commit/2c3d311f90281e95827708e2e8d0e52832a437de)) -* Fixed: refresh() doesn't refresh existing submenus. ([#8773](http://bugs.jqueryui.com/ticket/8773), [8b3e570](http://github.com/jquery/jquery-ui/commit/8b3e57024138f1a40be762fd5d29cc390129a8ad)) +* 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](http://bugs.jqueryui.com/ticket/7624), [d3bc471](http://github.com/jquery/jquery-ui/commit/d3bc471688047d3c2dda3335dd642b724794070b)) +* 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](http://github.com/jquery/jquery-ui/commit/176e0ed0e67f5a0f7a334d5d7b65638017a65349)) -* Fixed: Multiple Sliders have conflict with options.values. ([#8892](http://bugs.jqueryui.com/ticket/8892), [209443d](http://github.com/jquery/jquery-ui/commit/209443d716587d896ffcdf26c0fd8c8a23437b3c)) -* Fixed: Visual issues with disabled slider in IE8. ([#6727](http://bugs.jqueryui.com/ticket/6727), [421aeaa](http://github.com/jquery/jquery-ui/commit/421aeaa08135e747ff9f2a59974c26b350cdcda7)) -* Fixed: Wrong slider UI state when disabled at init. ([#8772](http://bugs.jqueryui.com/ticket/8772), [cb748b4](http://github.com/jquery/jquery-ui/commit/cb748b4a6f32aa5748d6777e7871c96f70ad2207)) -* Fixed: Handles can overlap, only small sliver of slider is selectable. ([#3467](http://bugs.jqueryui.com/ticket/3467), [a188632](http://github.com/jquery/jquery-ui/commit/a18863205e060bf9a145bb5ed90e36d8feb3c8f7)) +* 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](http://bugs.jqueryui.com/ticket/8901), [0d53fbf](http://github.com/jquery/jquery-ui/commit/0d53fbfd0b7651652601b3b8577225ab753aab44)) -* Fixed: Value can't be seen in dark themes. ([#8950](http://bugs.jqueryui.com/ticket/8950), [d3d1e31](http://github.com/jquery/jquery-ui/commit/d3d1e31e9fb8b264818bb711c35bdcb973687179)) -* Fixed: Can't change icons option after init. ([#8926](http://bugs.jqueryui.com/ticket/8926), [04d668b](http://github.com/jquery/jquery-ui/commit/04d668b7171e14292af9f4de1b6bfbbe1a6e990c)) +* 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](http://bugs.jqueryui.com/ticket/7150), [828b3c4](http://github.com/jquery/jquery-ui/commit/828b3c420cb42f02544b46bfa9208499a4947651)) -* Removed: ajaxOptions and cache options. ([#7147](http://bugs.jqueryui.com/ticket/7147), [52a184e](http://github.com/jquery/jquery-ui/commit/52a184e31c0ca5618e6d4873625bf3b7716944b3)) -* Removed: All templating features: add and remove methods; idPrefix, tabTemplate, panelTemplate options; use of title attribute. ([#7158](http://bugs.jqueryui.com/ticket/7158), [#7157](http://bugs.jqueryui.com/ticket/7157), [#7149](http://bugs.jqueryui.com/ticket/7149), [054b208](http://github.com/jquery/jquery-ui/commit/054b208a9990fd71d30285e707ad53dae5a48247)) -* Removed: Back-compat for load event. ([#8731](http://bugs.jqueryui.com/ticket/8731), [3d6c2a6](http://github.com/jquery/jquery-ui/commit/3d6c2a66d44a9283ad18e8c7c5ea701ddca82e59)) -* Removed: cookie option. ([#7162](http://bugs.jqueryui.com/ticket/7162), [0429532](http://github.com/jquery/jquery-ui/commit/0429532ad10b0708e085c4830bb930d8457d62f4)) -* Removed: enable and disable events. ([#7160](http://bugs.jqueryui.com/ticket/7160), [0fc682a](http://github.com/jquery/jquery-ui/commit/0fc682a8dadc894caefe27c5a0fccf1eca30780d)) -* Removed: fx option. ([#8320](http://bugs.jqueryui.com/ticket/8320), [723d3e0](http://github.com/jquery/jquery-ui/commit/723d3e0040c46079cedf3998f4e28edfceed7c74)) -* Removed: length method. ([#7161](http://bugs.jqueryui.com/ticket/7161), [1a7958a](http://github.com/jquery/jquery-ui/commit/1a7958a43096ced70043514055e8f62422d860fd)) -* Removed: overflow workaround for IE6. ([da1255a](http://github.com/jquery/jquery-ui/commit/da1255a392a0132711dacce7283df221621f098b)) -* Removed: select event. ([#7154](http://bugs.jqueryui.com/ticket/7154), [fb525e1](http://github.com/jquery/jquery-ui/commit/fb525e1cb10ce5959df28b0cbd29ebdc96c266f4)) -* Removed: select method. ([#7156](http://bugs.jqueryui.com/ticket/7156), [7cf2719](http://github.com/jquery/jquery-ui/commit/7cf2719d0c406c7ff17c7e784c0e1e6eb23b562a)) -* Removed: selected option. ([#7152](http://bugs.jqueryui.com/ticket/7152), [a9053d9](http://github.com/jquery/jquery-ui/commit/a9053d93008e203391206cb743e873064fc8198b)) -* Removed: show event. ([#7155](http://bugs.jqueryui.com/ticket/7155), [a1fd49f](http://github.com/jquery/jquery-ui/commit/a1fd49fb2944a7dbe76e81ba648c2b56e7c6651d)) -* Removed: spinner option. ([#7151](http://bugs.jqueryui.com/ticket/7151), [6a00d41](http://github.com/jquery/jquery-ui/commit/6a00d418bc8346df7124708125056ad4717ce89c)) -* Removed: url method. ([#7148](http://bugs.jqueryui.com/ticket/7148), [acdd191](http://github.com/jquery/jquery-ui/commit/acdd1917b2ab5a3b5469678d835107152ed5aaef)) -* Fixed: Height overflows parent with heightStyle: 'fill'. ([#8836](http://bugs.jqueryui.com/ticket/8836), [6121683](http://github.com/jquery/jquery-ui/commit/6121683d807b2da56cf6cde3240d5926421b280b)) -* Fixed: isLocal function issue in Safari 5.1.7. ([#8877](http://bugs.jqueryui.com/ticket/8877), [1e5662e](http://github.com/jquery/jquery-ui/commit/1e5662ebe5a27d5ef0b8d60730b21771a2526547)) -* Fixed: Tabs fail in Safari 5.1 when window.location contains a space. ([#8777](http://bugs.jqueryui.com/ticket/8777), [c6b52db](http://github.com/jquery/jquery-ui/commit/c6b52db892703ba14153800dbf620db509acb9e6)) -* Fixed: Remove ui-tabs-aria-controls data on destroy. ([23f7e30](http://github.com/jquery/jquery-ui/commit/23f7e30c77820904cc1813fc8b54b809b352a551)) -* Fixed: 'display: none;' attribute is not removed from tabs when destroy is called. ([#8795](http://bugs.jqueryui.com/ticket/8795), [fd48568](http://github.com/jquery/jquery-ui/commit/fd48568c402847df8af59166c33549f0d19feb4b), [b9068c1](http://github.com/jquery/jquery-ui/commit/b9068c1523f39da8a04c799eebc9adc8b83c7279)) -* Fixed: Simple manipulation demo accessibility. ([#7847](http://bugs.jqueryui.com/ticket/7847), [e3ab5f8](http://github.com/jquery/jquery-ui/commit/e3ab5f811a97c9fd79038c550aa86dcff0465d40)) +* 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](http://github.com/jquery/jquery-ui/commit/f83f07dafd9c28f96a7cec49c00e4b24a4b493bf)) -* Fixed: error when parent element has no title attribute using jQuery 1.6. ([#8955](http://bugs.jqueryui.com/ticket/8955), [e4a786e](http://github.com/jquery/jquery-ui/commit/e4a786e1a4fdd85b391711688bcb9790f38b5352)) -* Fixed: Using the track option within dialogs creates JS errors. ([#8747](http://bugs.jqueryui.com/ticket/8747), [98173a3](http://github.com/jquery/jquery-ui/commit/98173a3d0ea8e2e6aeb19dda9b232cb65a0684e4)) -* Fixed: Tooltip potential setInterval() endless loop. ([#8920](http://bugs.jqueryui.com/ticket/8920), [9cbd4b4](http://github.com/jquery/jquery-ui/commit/9cbd4b42221389277cf90a6662f17c500d1a77df)) -* Fixed: XSS vulnerability in default content. ([#8861](http://bugs.jqueryui.com/ticket/8861), [f285440](http://github.com/jquery/jquery-ui/commit/f2854408cce7e4b7fc6bf8676761904af9c96bde)) -* Fixed: Does not hide consistently with dynamically loaded content. ([#8740](http://bugs.jqueryui.com/ticket/8740), [1b503a2](http://github.com/jquery/jquery-ui/commit/1b503a237e1dc47739a8a451debbc86e169851e3)) -* Fixed: Tooltip is shown, but not hidden if element has class=ui-state-disabled. ([#8758](http://bugs.jqueryui.com/ticket/8758), [498aadf](http://github.com/jquery/jquery-ui/commit/498aadf644ddca86de838dc2001267ded972df2c)) -* Fixed: Default positioning on large items off. ([#8739](http://bugs.jqueryui.com/ticket/8739), [1d9eab1](http://github.com/jquery/jquery-ui/commit/1d9eab1ead0d5a6f60e31437bb539eb3f804bacc)) -* Fixed: Tracking fails on nested elements. ([#8799](http://bugs.jqueryui.com/ticket/8799), [ca0df6b](http://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](http://bugs.jqueryui.com/ticket/8742), [d074efe](http://github.com/jquery/jquery-ui/commit/d074efe5289db4f5182a685046e9b9ad6186ac26)) -* Fixed: Use ui-tooltip-open instead of tooltip-open for data key. ([02694a9](http://github.com/jquery/jquery-ui/commit/02694a90f329e84ef7532d8b51e6c209207dc649)) +* 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](http://bugs.jqueryui.com/ticket/7115), [b8e0de2](http://github.com/jquery/jquery-ui/commit/b8e0de2444f38e69ad229f404651c9e331a9ac17)) -* Fixed: Odd behaviour of css hook when setting backgroundColor to transparent in IE7/8. ([#8914](http://bugs.jqueryui.com/ticket/8914), [da01fb6](http://github.com/jquery/jquery-ui/commit/da01fb6a346e1ece3fd6dde5556a98f099e0c0e0)) -* Fixed: Class animation has broken noConflict support. ([#8860](http://bugs.jqueryui.com/ticket/8860), [c5e0961](http://github.com/jquery/jquery-ui/commit/c5e0961268577ff72f98d2ad79d8b9b98e3f75b1)) +* 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](http://bugs.jqueryui.com/ticket/5659), [1fe06f0](http://github.com/jquery/jquery-ui/commit/1fe06f03fac30ce76b87eab8c5a9acc72becd587)) -* Fixed: Autocomplete inside dialog causes scrollbars. ([#8793](http://bugs.jqueryui.com/ticket/8793), [48e0aa0](http://github.com/jquery/jquery-ui/commit/48e0aa0fd2782380931af43abb5bb92b73ebe4ad)) -* Fixed: Reformatted CSS to use better coding standard. ([010e09f](http://github.com/jquery/jquery-ui/commit/010e09fa62b7e71fdfaaf6b0d4e974be0704a1c8)) -* Fixed: Remove unneeded vendor prefixing. ([#8834](http://bugs.jqueryui.com/ticket/8834), [c4b7c75](http://github.com/jquery/jquery-ui/commit/c4b7c754eedf10923f588cf6310f610fcd0c37a9)) -* Fixed: Remove invalid CSS for legacy browsers. ([#7975](http://bugs.jqueryui.com/ticket/7975), [d7bff01](http://github.com/jquery/jquery-ui/commit/d7bff010691b542d918245bac11beac2b93b3462)) +* 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](http://github.com/jquery/jquery-ui/commit/902df84fce790178da78c5830498911a487d50cf)) +* 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 index ac66595..b297bd8 100644 --- a/page/changelog/1.10.1.md +++ b/page/changelog/1.10.1.md @@ -2,65 +2,67 @@ "title": "jQuery UI 1.10.1 Changelog" } +Released on February 15, 2013 + ## Build -* Added: Minified CSS files on CDNs. ([#8614](http://bugs.jqueryui.com/ticket/8614), [822520e](https://github.com/jquery/jquery-ui/commit/822520ece7520457c045b1dae77b6ffc5b96654a)) +* 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](http://bugs.jqueryui.com/ticket/9076), [c958b21](http://github.com/jquery/jquery-ui/commit/c958b211db2632a02f26e14f57c0862c57870aee)) +* 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](http://bugs.jqueryui.com/ticket/9077), [c32bebd](http://github.com/jquery/jquery-ui/commit/c32bebd1bd28d158b017bb1dd7f95fb1d8a8d567)) -* Fixed: Reference to undefined `$.ui.contains()`. ([#9051](http://bugs.jqueryui.com/ticket/9051), [2df2abc](http://github.com/jquery/jquery-ui/commit/2df2abcbf139262e1ed3e1b9aa19d3ffc6b59cb9)) +* 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](http://bugs.jqueryui.com/ticket/8998), [10c873a](http://github.com/jquery/jquery-ui/commit/10c873ab6cf2333f7e51784e84c03a0fbb975e1f)) -* Fixed: Corner display issues. ([#8995](http://bugs.jqueryui.com/ticket/8995), [673c655](http://github.com/jquery/jquery-ui/commit/673c6558e01dd8a5423ec21bf40d6efe443580d2)) +* 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](http://github.com/jquery/jquery-ui/commit/7d5fe02dd9e3af3ebbb4fcc3092045139b166c48)) -* Fixed: Multiple demo has errors. ([#9029](http://bugs.jqueryui.com/ticket/9029), [ceebe07](http://github.com/jquery/jquery-ui/commit/ceebe07e2c99190030c16b031813ae660d9283d1)) +* 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](http://bugs.jqueryui.com/ticket/9078), [bce9da4](http://github.com/jquery/jquery-ui/commit/bce9da420646b6cee859475af6616aa9107f0158)) -* Fixed: `beforeShowDay` tooltip not displayed properly if single quote is used. ([#9049](http://bugs.jqueryui.com/ticket/9049), [df17954](http://github.com/jquery/jquery-ui/commit/df179542cc6593b1816d487c72c470a73940ff11), [7a49ee4](http://github.com/jquery/jquery-ui/commit/7a49ee4cd3a59a11e8c65cb1974481d86e2fd4d7)) -* Fixed: next and prev buttons are disabled when using `yearRange`. ([#8994](http://bugs.jqueryui.com/ticket/8994), [8f7c3e3](http://github.com/jquery/jquery-ui/commit/8f7c3e309cae07c75b930c55f14c05053d5028e9)) +* 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](http://bugs.jqueryui.com/ticket/7650), [a7353e7](http://github.com/jquery/jquery-ui/commit/a7353e7c9ba18e017813195c885115338800e13d)) -* Fixed: Cannot change month/year in datepicker within modal dialog. ([#8989](http://bugs.jqueryui.com/ticket/8989), [c53198c](http://github.com/jquery/jquery-ui/commit/c53198c2099d25e80887c86af6d0e624414cc2f7)) -* Fixed: Buttonpane shown with no buttons when modifying native prototypes. ([#9043](http://bugs.jqueryui.com/ticket/9043), [7bbda71](http://github.com/jquery/jquery-ui/commit/7bbda71a32cc4953715ed34eab2ab48c5e736154)) -* Fixed: Dialog leaves broken event handler after `close`/`destroy` in certain cases. ([#9004](http://bugs.jqueryui.com/ticket/9004), [#9000](http://bugs.jqueryui.com/ticket/9000), [649f105](http://github.com/jquery/jquery-ui/commit/649f105229b2a24adc21cba2d56cb05a59711ccb)) -* Fixed: Broken `focusin` event handler when `beforeclose` event of a modal opens another modal. ([#9048](http://bugs.jqueryui.com/ticket/9048), [8724092](http://github.com/jquery/jquery-ui/commit/8724092e5070125e2610e8b0e6ee9ada126cf504)) -* Fixed: Various issues with animated dialogs. ([#6756](http://bugs.jqueryui.com/ticket/6756), [#8051](http://bugs.jqueryui.com/ticket/8051), [#4421](http://bugs.jqueryui.com/ticket/4421), [d1505e3](http://github.com/jquery/jquery-ui/commit/d1505e3434ef99e0068347a5e8179a0ffd737676)) -* Fixed: Double overlay when opening modal dialog triggers an event opening same dialog. ([#8958](http://bugs.jqueryui.com/ticket/8958), [62cda1f](http://github.com/jquery/jquery-ui/commit/62cda1f95d0e7040153f0b5fe5745d199a0a094e)) -* Fixed: Modal dialogs display behind overlay when using `appendTo` option. ([#8984](http://bugs.jqueryui.com/ticket/8984), [55360ee](http://github.com/jquery/jquery-ui/commit/55360eeb7eae5c560d51b09178e64d83c59223a6)) +* 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](http://bugs.jqueryui.com/ticket/9016), [c193a0c](http://github.com/jquery/jquery-ui/commit/c193a0ce17b30188576fcdb9e4b2222ce7f02f47)) +* 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](http://bugs.jqueryui.com/ticket/9024), [3aa8ad0](http://github.com/jquery/jquery-ui/commit/3aa8ad0c4ad15ceac52c4f653b7d4e66995bb297)) -* Fixed: Slider does not exhibit proper behavior when switching `range` option. ([#5602](http://bugs.jqueryui.com/ticket/5602), [df077ab](http://github.com/jquery/jquery-ui/commit/df077abfc2a236a373d2080a9ceae97bb48c2620)) +* 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](http://bugs.jqueryui.com/ticket/9015), [2ca4d17](http://github.com/jquery/jquery-ui/commit/2ca4d17982bfedc723f499b41e0936ada9eaa852)) +* 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](http://bugs.jqueryui.com/ticket/8442), [cb42ee7](http://github.com/jquery/jquery-ui/commit/cb42ee7ccdf6e32be14341a34a037c7f4508c157)) +* 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 index dc2de97..f55dd96 100644 --- a/page/changelog/1.10.2.md +++ b/page/changelog/1.10.2.md @@ -2,68 +2,70 @@ "title": "jQuery UI 1.10.2 Changelog" } +Released on March 14, 2013 + ## Build -* Added: Migrate to grunt 0.4 and contrib plugins. ([f87b4e0](http://github.com/jquery/jquery-ui/commit/f87b4e0f4ac2342dff260c32aa8d08148e76f7a4), [bd211df](http://github.com/jquery/jquery-ui/commit/bd211df0d35d7f326c338ce3f3fc81e5d966d3d7), [e090a36](http://github.com/jquery/jquery-ui/commit/e090a3655550c9cd20067952809f44b052064f4e)) -* Removed: `base` theme from CDN build. ([38fce3f](http://github.com/jquery/jquery-ui/commit/38fce3f30478bcfce8ea837d850f63b5560d605a)) -* Fixed: Issues with theme images in 1.10.1 ([#9090](http://bugs.jqueryui.com/ticket/9090)) +* 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](http://bugs.jqueryui.com/ticket/8763), [e9c04bf](http://github.com/jquery/jquery-ui/commit/e9c04bfa430eb6b18e7fe1be2f8d162e01181a94)) +* 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](http://bugs.jqueryui.com/ticket/5569), [6358695](http://github.com/jquery/jquery-ui/commit/6358695df18722d8c7e99437365db42cf4957626)) -* Fixed: `revert` option reset after being added to a connected sortable. ([#9103](http://bugs.jqueryui.com/ticket/9103), [a924af1](http://github.com/jquery/jquery-ui/commit/a924af12b6743408903c642f84a00b0766cd17b7)) +* 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](http://bugs.jqueryui.com/ticket/9116), [1c80735](http://github.com/jquery/jquery-ui/commit/1c80735acb20a468300a53f85ef49b065d40af3e)) +* 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](http://bugs.jqueryui.com/ticket/4485), [8655d91](http://github.com/jquery/jquery-ui/commit/8655d91ac68538c37da4d94ecc287df8c90a96ae)) -* Fixed: Unable to use an image as a placeholder in Firefox. ([#5129](http://bugs.jqueryui.com/ticket/5129), [b9be6bb](http://github.com/jquery/jquery-ui/commit/b9be6bb7ad107fd48b28e31df972b2037c47c2cb)) -* Fixed: `cursor` option doesn't override CSS cursor settings. ([#7389](http://bugs.jqueryui.com/ticket/7389), [a692bf9](http://github.com/jquery/jquery-ui/commit/a692bf9b70305de5e9893e717fc71e1e74fb86ac)) -* Fixed: Incorrect revert animation with `axis: 'y'`. ([#7415](http://bugs.jqueryui.com/ticket/7415), [054449e](http://github.com/jquery/jquery-ui/commit/054449e214449ec5578fe71bb67b9a670adac828)) -* Fixed: Issue with floated items in connected lists. ([#8792](http://bugs.jqueryui.com/ticket/8792), [89473f6](http://github.com/jquery/jquery-ui/commit/89473f6557662d905a63faa3ae3520bf3715a7e8), [8b1b34c](http://github.com/jquery/jquery-ui/commit/8b1b34c5c3e8fae056f0880776156dc003b5e2c3)) -* Fixed: The `over` event fires on every pixel movement. ([#9041](http://bugs.jqueryui.com/ticket/9041), [07ce771](http://github.com/jquery/jquery-ui/commit/07ce771a13504b851bb9f74c8ce8e960d207384a), [8b1b34c](http://github.com/jquery/jquery-ui/commit/8b1b34c5c3e8fae056f0880776156dc003b5e2c3)) -* Fixed: Placeholder not displayed when sorting table rows. ([#4765](http://bugs.jqueryui.com/ticket/4765), [bd47bd4](http://github.com/jquery/jquery-ui/commit/bd47bd4ace3789d9eb302b0dce6f6e042d08a7f1)) +* 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](http://bugs.jqueryui.com/ticket/9086), [ba96cb4](http://github.com/jquery/jquery-ui/commit/ba96cb47725dc6639ae366bd381f089c1750c8f5)) -* Fixed: Mouse auto-highlights option in Firefox. ([#9118](http://bugs.jqueryui.com/ticket/9118), [d5d3a74](http://github.com/jquery/jquery-ui/commit/d5d3a745b00dd476195cf25b35cc02f3bc31f814)) +* 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](http://bugs.jqueryui.com/ticket/9098), [10ca483](http://github.com/jquery/jquery-ui/commit/10ca48308fea6a9b30d2457fbf5a1b6e0ed5966c)) +* 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](http://bugs.jqueryui.com/ticket/9087), [51eb28e](http://github.com/jquery/jquery-ui/commit/51eb28e76e372fe0af12724edff0b5780b5e5ed0)) -* Fixed: Dialog inheritance. ([#9097](http://bugs.jqueryui.com/ticket/9097), [5e1b8dc](http://github.com/jquery/jquery-ui/commit/5e1b8dc71a72d5753a95c49c844857b91fbdbade)) +* 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](http://bugs.jqueryui.com/ticket/9112), [2348fb8](http://github.com/jquery/jquery-ui/commit/2348fb8eb9ec1297a2588a23cf3447c5374bcb21)) +* 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](http://bugs.jqueryui.com/ticket/9111), [1c5171c](http://github.com/jquery/jquery-ui/commit/1c5171c2547130a76710dd20108b35774551e333)) +* 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](http://bugs.jqueryui.com/ticket/9120), [948563b](http://github.com/jquery/jquery-ui/commit/948563b8b55802c6d4c513065f1b78bbdcff104c)) -* Fixed: `.show()`/`.hide()` do not support all of core's options. ([#9126](http://bugs.jqueryui.com/ticket/9126), [6f29577](http://github.com/jquery/jquery-ui/commit/6f2957743659387f66c9b8953bba9fac5617a440)) +* 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](http://bugs.jqueryui.com/ticket/9150), [4f95a0f](http://github.com/jquery/jquery-ui/commit/4f95a0f396965e91982f1b5e67da814bb6640ce1)) +* 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 index d90d60c..40efd4d 100644 --- a/page/changelog/1.10.3.md +++ b/page/changelog/1.10.3.md @@ -2,54 +2,56 @@ "title": "jQuery UI 1.10.3 Changelog" } +Released on May 3, 2013 + ## Build -* Fixed: Incorrect links in effect manifests. ([#9247](http://bugs.jqueryui.com/ticket/9247), [91445c6](http://github.com/jquery/jquery-ui/commit/91445c69e884d69da4bf38c6302aa17d0ced09e0), [c64e1b8](http://github.com/jquery/jquery-ui/commit/c64e1b8416fd03fff050005c4573003c3b6b7049)) -* Added: `lint` and `test` aliases. ([0a06deb](http://github.com/jquery/jquery-ui/commit/0a06debc97a3bbfcf55b09e1090ac7f451fdbcb6)) +* 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](http://bugs.jqueryui.com/ticket/5009), [c1011b5](http://github.com/jquery/jquery-ui/commit/c1011b5b9dbdf59acff2fc26b832e0fba09346bd)) -* Fixed: Auto scroll goes double distance when dragging. ([#6817](http://bugs.jqueryui.com/ticket/6817), [943537c](http://github.com/jquery/jquery-ui/commit/943537cb785fb90adf9f0b515cbb084a1a2e3c04)) -* Fixed: Containment doesn't properly update. ([#8962](http://bugs.jqueryui.com/ticket/8962), [507043c](http://github.com/jquery/jquery-ui/commit/507043c3a2c05b0421531e188dd857bda6f3fde9)) -* Fixed: Not following mouse when scrolled and using `overflow-y: scroll`. ([#6258](http://bugs.jqueryui.com/ticket/6258), [48b48a8](http://github.com/jquery/jquery-ui/commit/48b48a886576c427140e2c5549cff942dc6c79fa)) -* Fixed: Element can snap to an element that was removed during drag. ([#8459](http://bugs.jqueryui.com/ticket/8459), [ecabe47](http://github.com/jquery/jquery-ui/commit/ecabe4754412b61059d429040e266ca921a754b2)) -* Fixed: Snapping doesn't take top/left into account properly. ([#8165](http://bugs.jqueryui.com/ticket/8165), [f74a908](http://github.com/jquery/jquery-ui/commit/f74a9080562b9cedcae7030f3e4681b3ee0bfb14)) +* 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](http://bugs.jqueryui.com/ticket/9185), [9711c54](http://github.com/jquery/jquery-ui/commit/9711c54c6d3d7ecffa9bfccc205522be1f4aa148)) -* Fixed: Placeholder doesn't move when using `connectWith` option. ([#8301](http://bugs.jqueryui.com/ticket/8301), [9ac505b](http://github.com/jquery/jquery-ui/commit/9ac505b9fa747a24e5c329cde0614ec0fe49d807)) +* 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](http://bugs.jqueryui.com/ticket/9189), [a93ad18](http://github.com/jquery/jquery-ui/commit/a93ad182c837ef6c46323092a5538355e7ee3a7c)) +* 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](http://bugs.jqueryui.com/ticket/8911), [c1f7f52](http://github.com/jquery/jquery-ui/commit/c1f7f527afeb1bba50a576924b327f812b48ad91)) -* Fixed: `.replaceWith()` fails to replace. ([#9172](http://bugs.jqueryui.com/ticket/9172), [2da014b](http://github.com/jquery/jquery-ui/commit/2da014b11d264a49c7ad7075d1fdb66a7d3f009c)) -* Fixed: Combobox demo does not show items. ([#9157](http://bugs.jqueryui.com/ticket/9157), [149e6eb](http://github.com/jquery/jquery-ui/commit/149e6eb0bce7e891d35b862be920d36d3535f62e)) -* Fixed: Autocomplete Combobox demo shows underlying select by default. ([#9158](http://bugs.jqueryui.com/ticket/9158), [fb6adc7](http://github.com/jquery/jquery-ui/commit/fb6adc765ffbe14c7adf6a717037d06e41f2ddd4)) +* 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](http://bugs.jqueryui.com/ticket/9213), [1152e65](http://github.com/jquery/jquery-ui/commit/1152e6591740765d2a1c261714ea9e409bf94cb5)) +* 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](http://github.com/jquery/jquery-ui/commit/e34c92bbbc0116f03680cc7377d1aaabe1a054fe)) -* Fixed: Corrected the Arabic word for Arabic in the localization demo. ([f8e76d0](http://github.com/jquery/jquery-ui/commit/f8e76d0bbdd9b4fd213a0e3f716906d9c287f612)) -* Fixed: Wrong date format for Serbian localization. ([#7347](http://bugs.jqueryui.com/ticket/7347), [f157310](http://github.com/jquery/jquery-ui/commit/f15731072bd76dd5d208ec71d2077c745f4180d2)) +* 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](http://bugs.jqueryui.com/ticket/8844), [329974b](http://github.com/jquery/jquery-ui/commit/329974b2c6313fdbdceec1820bf7e687c8ae47ef)) +* 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](http://bugs.jqueryui.com/ticket/9163), [d1605e6](http://github.com/jquery/jquery-ui/commit/d1605e679346af3a33db1b28a8f5d1369a68f634)) +* 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 `