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/.mailmap b/.mailmap new file mode 100644 index 0000000..b20d04d --- /dev/null +++ b/.mailmap @@ -0,0 +1,2 @@ +Michał Gołębiowski-Owczarek +Timo Tijhof diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..3c03207 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +18 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1dc8213..f9f6f08 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,5 @@ -Welcome! Thanks for your interest in contributing to jqueryui.com. You're **almost** in the right place. More information on how to contribute to this and all other jQuery Foundation projects is over at [contribute.jquery.org](http://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [to our websites](http://contribute.jquery.org/web-sites/). +Welcome! Thanks for your interest in contributing to jqueryui.com. You're **almost** in the right place. More information on how to contribute to this and all other jQuery Foundation projects is over at [contribute.jquery.org](https://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [to our websites](https://contribute.jquery.org/web-sites/). -You may also want to take a look at our [commit & pull request guide](http://contribute.jquery.org/commits-and-pull-requests/) and [style guides](http://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla). +You may also want to take a look at our [commit & pull request guide](https://contribute.jquery.org/commits-and-pull-requests/) and [style guides](https://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](https://contribute.jquery.org/cla). -You can find us on [IRC](http://irc.jquery.org), specifically in #jqueryui-dev and #jquery-content should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/). +You can find us on [IRC](https://irc.jquery.org), specifically in #jqueryui-dev and #jquery-content should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](https://contribute.jquery.org/open-source/). diff --git a/Gruntfile.js b/Gruntfile.js index a10a39a..0b0b25a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -23,7 +23,7 @@ grunt.initConfig({ grunt.registerTask( "build-download", function() { function writeFiles() { var frontend = require( "download.jqueryui.com" ).frontend({ - host: "http://download.jqueryui.com", + host: "https://download.jqueryui.com", env: "production" }), download = frontend.download, @@ -64,19 +64,38 @@ grunt.registerTask( "build-download", function() { // At this point, the download builder repo is available, so let's initialize it grunt.log.writeln( "Initializing download module, might take a while..." ); - exec( "grunt prepare", { + // TODO: Prefer --omit=dev but can't because `grunt prepare` runs grunt-check-modules, + // which fails if a dev dependency is missing. + // Since the builder sets `NODE_ENV=production`, we need to set `--omit=''` explicitly + // or it'd skip installing dev dependencies. + exec( "npm install --omit=''", { cwd: "node_modules/download.jqueryui.com" }, function( error, stdout, stderr ) { if ( error ) { + grunt.log.error( stdout ); grunt.log.error( stderr ); return done( error ); } - writeFiles(); - done(); + exec( "node_modules/.bin/grunt prepare --stack", { + cwd: "node_modules/download.jqueryui.com" + }, function( error, stdout, stderr ) { + if ( error ) { + grunt.log.error( stdout ); + grunt.log.error( stderr ); + return done( error ); + } + + writeFiles(); + done(); + }); }); }); +// Build demos +// +// grunt build-demos[:optionalJqueryUiPath] +// grunt.registerTask( "build-demos", function() { function sortByTitle( a, b ) { if ( a.filename === "default" ) { @@ -88,38 +107,50 @@ grunt.registerTask( "build-demos", function() { return a.title.toLowerCase() > b.title.toLowerCase() ? 1 : -1; } - // We hijack the jquery-ui checkout from download.jqueryui.com - this.requires( "build-download" ); - - var jqueryCore, subdir, + var demosDir, jqueryCore, repoDir, pkg, subdir, path = require( "path" ), cheerio = require( "cheerio" ), - downloadBuilder = require( "download.jqueryui.com" ), - stable = downloadBuilder.JqueryUi.getStable(), - repoDir = path.normalize( stable.path ), - demosDir = repoDir + "demos", - externalDir = (repoDir + "external").replace( process.cwd() + "/", "" ), targetDir = grunt.config( "wordpress.dir" ) + "/resources/demos", highlightDir = targetDir + "-highlight", demoList = {}; - jqueryCore = stable.files().jqueryCore[ 0 ].data.match( /jQuery JavaScript Library v([0-9.]*)/ )[ 1 ]; + if ( this.args.length ) { + repoDir = this.args[ 0 ]; + } else { + + // We hijack the jquery-ui checkout from download.jqueryui.com + this.requires( "build-download" ); + repoDir = require( "download.jqueryui.com" ).JqueryUi.getStable().path; + } + repoDir = path.resolve( repoDir ); + + demosDir = path.join( repoDir, "demos" ); + pkg = require( path.join( repoDir, "package" ) ); + jqueryCore = fs.readFileSync( path.join( repoDir, "external/jquery/jquery.js" ) ) + .toString().match( /jQuery JavaScript Library v([0-9.]*)/ )[ 1 ]; // Copy all demos files to /resources/demos grunt.file.recurse( demosDir, function( abspath, rootdir, subdir, filename ) { + if ( filename.startsWith( "." ) ) { + return; + } + if ( filename === "index.html" ) { return; } var content, $, - dest = targetDir + "/" + subdir + "/" + filename, - highlightDest = highlightDir + "/" + subdir + "/" + filename; + destDir = `${ targetDir }${ subdir ? `/${ subdir }` : "" }/`, + dest = destDir + filename, + highlightDest = `${ highlightDir }${ subdir ? `/${ subdir }` : "" }/${ filename }`; if ( /html$/.test( filename ) ) { content = replaceResources( grunt.file.read( abspath ) ); + $ = cheerio.load( content ); + content = deAmd( $, destDir ); + if ( !( /(\/)/.test( subdir ) ) ) { - $ = cheerio.load( content ); if ( !demoList[ subdir ] ) { demoList[ subdir ] = []; } @@ -138,6 +169,7 @@ grunt.registerTask( "build-demos", function() { $( "code" ).text( content ); grunt.file.write( highlightDest, jqueryContent.syntaxHighlight( $.html() ) ); } else { + content = $.html(); grunt.file.write( dest, content ); } } else { @@ -152,36 +184,50 @@ grunt.registerTask( "build-demos", function() { // 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.expand( { filter: "isFile" }, externalDir + "/**" ).forEach(function( filename ) { - grunt.file.copy( filename, targetDir + "/external/" + filename.replace( externalDir, "" ) ); - }); - - function replaceResources( source ) { - // ../../jquery-x.y.z.js -> CDN - source = source.replace( - /" + + "\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" ); + } ); + } + } - // ../../ui/* -> CDN - // Only the first script is replaced, all subsequent scripts are dropped, - // including the full line - source = source.replace( - /" ); + } - // ../../external/* -> /resources/demos/external/* - source = source.replace( - / jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. Whether you're building highly interactive web applications or you just need to add a date picker to a form control, jQuery UI is the perfect choice. @@ -8,11 +11,11 @@ jQuery UI is a curated set of user interface interactions, effects, widgets, and ### 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, accessiblity experts, product managers, business people, end users and more. +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](http://jqueryui.com/themeroller/) or hand-written CSS via the [jQuery UI CSS Framework](http://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. +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 @@ -38,9 +41,9 @@ Given the global audience for jQuery UI, we should embrace the ability to make o 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). -### [Scott González](http://nemikor.com/) — Project Lead +### [Alex Schmitz](http://arschmitz.me/) — Project Lead -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. +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 @@ -48,7 +51,7 @@ Jörn is a freelance web developer, consultant and trainer, residing in Cologne, ### [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](http://jqueryui.com/selectmenu/) widget and is currently working on the [Datepicker](http://jqueryui.com/datepicker/) widget. +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) @@ -58,10 +61,6 @@ Mike is a Senior Software Engineer at [Behance](http://blog.behance.net/dev), fr 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. -### [TJ VanToll](http://tjvantoll.com) - -TJ VanToll is a web developer, speaker, and writer living in Lansing, MI and working as a developer advocate for [Telerik](http://www.telerik.com/). He works on all facets of jQuery UI including triage, documentation, bug fixes, and is currently working on the rewrite of [the datepicker widget](http://jqueryui.com/datepicker/). - ## Contributors (Past & Present) ### Aaron Eisenberger @@ -89,6 +88,8 @@ TJ VanToll is a web developer, speaker, and writer living in Lansing, MI and wor ### [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 @@

Want to learn more about the accordion widget? Check out the -API documentation.

+API documentation.

diff --git a/page/addClass.html b/page/addClass.html index ba89553..3a06cc6 100644 --- a/page/addClass.html +++ b/page/addClass.html @@ -10,4 +10,4 @@

Want to learn more about the .addClass() method? Check out -the API documentation.

+the API documentation.

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 index 01e5d4b..ce9d926 100644 --- a/page/browser-support.md +++ b/page/browser-support.md @@ -1,22 +1,24 @@ ## Current Active Support -jQuery UI 1.11.x supports the following browsers: +jQuery UI 1.14.x supports the following browsers: -* Chrome: (Current - 1) or Current -* Firefox: (Current - 1) or Current -* Safari: 5.1+ -* Opera: 12.1x, (Current - 1) or Current -* IE 8+ +* 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 - 1) or Current* denotes that we support the current stable version of the browser and the version that preceded it. For example, if the current version of a browser is 24.x, we support the 24.x and 23.x versions. +*Current* denotes that we support the current stable version of the browser. -*12.1x, (Current - 1) or Current* denotes that we support Opera 12.1x as well as the 2 latest versions of Opera. For example, if the current Opera version is 20.x, we support Opera 12.1x, 19.x and 20.x but not Opera 15.x through 18.x. +jQuery UI 1.13.x was the last version line to support IE 11 & Edge Legacy 18. ---- @@ -30,7 +32,7 @@ Similarly, jQuery UI does not fix bugs in pre-release versions of browsers, such ## 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](http://jquery.com/browser-support/) for a list of supported browsers by version. +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. ---- @@ -38,11 +40,13 @@ jQuery UI supports several versions of jQuery Core. The version of jQuery being 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 Firefox +* Current NVDA with current Chrome or Firefox * Current VoiceOver with current Safari -* Current JAWS with current IE +* Current JAWS with current Chrome or Edge -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 survey for usage statistics. +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 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 f854c7f..54188e3 100644 --- a/page/changelog.md +++ b/page/changelog.md @@ -1,8 +1,59 @@ +## [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 diff --git a/page/changelog/1.10.0.md b/page/changelog/1.10.0.md index edd4be6..cfbf5f7 100644 --- a/page/changelog/1.10.0.md +++ b/page/changelog/1.10.0.md @@ -15,219 +15,219 @@ Released on January 17, 2013 ### UI Core * Removed: $.support.minHeight. ([0c67254](https://github.com/jquery/jquery-ui/commit/0c672543bf897c0d8c162a2daedbf3a85206f227)) -* Removed: $.ui.contains. ([#8902](http://bugs.jqueryui.com/ticket/8902), [747d853](https://github.com/jquery/jquery-ui/commit/747d8534520fc3abad81b3c171fa931149398d99)) +* 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](http://bugs.jqueryui.com/ticket/8891), [3ec0c2e](https://github.com/jquery/jquery-ui/commit/3ec0c2e5728da9b9b9955dfe18073d3985e61a52)) +* 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](https://github.com/jquery/jquery-ui/commit/d44557f50ad7b3c512bdd8bc2ba3eed5672b3b12)) -* Removed: Use of metadata plugin. ([#7192](http://bugs.jqueryui.com/ticket/7192), [7678b90](https://github.com/jquery/jquery-ui/commit/7678b90ae843c2db48b29ed0e933764ef1d4214e)) -* Removed: widgetBaseClass property. ([#8155](http://bugs.jqueryui.com/ticket/8155), [cb030cb](https://github.com/jquery/jquery-ui/commit/cb030cbc1b9098a5eee0776328bea95d964b17ac)) -* Added: Ability to use _on() even when disabled. ([#8800](http://bugs.jqueryui.com/ticket/8800), [84cd214](https://github.com/jquery/jquery-ui/commit/84cd214486769a3527b3ab420219c8f9c78f9879)) -* Fixed: Bridge fails if widgetFullName is not supplied. ([#8775](http://bugs.jqueryui.com/ticket/8775), [75bd22e](https://github.com/jquery/jquery-ui/commit/75bd22eb731f5a81099ad97c88eede3862195fec)) -* Fixed: Calling _super() calls wrong inherited widget. ([#8876](http://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](http://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](http://bugs.jqueryui.com/ticket/8769), [1cdeecc](https://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](https://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](https://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](https://github.com/jquery/jquery-ui/commit/d73edfff769603681a0889585b45062cdf98743e)) -* Added: Support for complex markup in handles. ([#8756](http://bugs.jqueryui.com/ticket/8756), [0bff32a](https://github.com/jquery/jquery-ui/commit/0bff32a2b1c2273e46dc0f70bc1058ad304ebcc5)) -* Fixed: Grid does not respect min/max dimensions. ([#8435](http://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](http://bugs.jqueryui.com/ticket/7960), [0cd470b](https://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](https://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](https://github.com/jquery/jquery-ui/commit/3974b55ba5078799df818c78d9273e11d9796ff3)) -* Fixed: Callbacks ignore the grid. ([#5545](http://bugs.jqueryui.com/ticket/5545), [3974b55](https://github.com/jquery/jquery-ui/commit/3974b55ba5078799df818c78d9273e11d9796ff3)) -* Fixed: resize event reports unconstrained ui.size. ([#5817](http://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](http://bugs.jqueryui.com/ticket/3815), [a1b32b5](https://github.com/jquery/jquery-ui/commit/a1b32b59d57c2171af9ba0ed6b35ccde28794e3b)) +* 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](https://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](https://github.com/jquery/jquery-ui/commit/0cdd5591be15b2d605191656f3468f36f7d5a94d)) -* Removed: animated option. ([#8601](http://bugs.jqueryui.com/ticket/8601), [8d35c03](https://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](https://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](https://github.com/jquery/jquery-ui/commit/d67bc412a869938cb85ff02e10a78befd7409a1a)) -* Removed: icons.headerSelected option. ([#6835](http://bugs.jqueryui.com/ticket/6835), [fd952c5](https://github.com/jquery/jquery-ui/commit/fd952c5a7956ac583a44475f481bdec9efa7857b)) -* Removed: navigation and navigatinFilter options. ([#5870](http://bugs.jqueryui.com/ticket/5870), [09eed56](https://github.com/jquery/jquery-ui/commit/09eed560f87a122258818292ba3743f9382753c3)) -* Removed: resize method. ([#6839](http://bugs.jqueryui.com/ticket/6839), [974e5f8](https://github.com/jquery/jquery-ui/commit/974e5f81964bb2449a5554d1bac1c82beeee9067)) -* Added: Ability to add/remove panels. ([#4672](http://bugs.jqueryui.com/ticket/4672), [d657538](https://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](https://github.com/jquery/jquery-ui/commit/703d62f2982fb6ec2e85e5bf5e96be44b0544a34)) -* Removed: Data fallback for item.autocomplete. ([#8156](http://bugs.jqueryui.com/ticket/8156), [9202bb7](https://github.com/jquery/jquery-ui/commit/9202bb7df57b159003f6a0659cbe9359fdeb8196)) -* Fixed: XSS in combobox demo. ([#8859](http://bugs.jqueryui.com/ticket/8859), [5fee6fd](https://github.com/jquery/jquery-ui/commit/5fee6fd5000072ff32f2d65b6451f39af9e0e39e)) +* 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](http://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](http://bugs.jqueryui.com/ticket/8858), [dec8445](https://github.com/jquery/jquery-ui/commit/dec844570fae5edf56876b760b9358fde2ecb5e7)) +* 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](https://github.com/jquery/jquery-ui/commit/93abe02b6052143fac30393291da3fc254bde996)) -* Fixed: Incorrect state after double click in Firefox. ([#5518](http://bugs.jqueryui.com/ticket/5518), [caacf8f](https://github.com/jquery/jquery-ui/commit/caacf8f5041ad434b8e0dd1069936eb91e4c3394)) -* Fixed: Toolbar demo ugly in IE. ([#5253](http://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](http://bugs.jqueryui.com/ticket/8559), [f13b5df](https://github.com/jquery/jquery-ui/commit/f13b5dfa7fdb480b818cfbf07e35088460e7b5c9)) -* Fixed: Inconsistent styling based on markup. ([#7996](http://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](http://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](http://bugs.jqueryui.com/ticket/5295), [8e1ceba](https://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](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](http://bugs.jqueryui.com/ticket/8885), [cff4c3c](https://github.com/jquery/jquery-ui/commit/cff4c3c4f3395d3f9837bd1affb8107d7ae65841)) -* Added: Canadian French locale. ([#8917](http://bugs.jqueryui.com/ticket/8917), [9f841df](https://github.com/jquery/jquery-ui/commit/9f841dffcc83105cc2517c7e31640848fbfff0af)) -* Added: Kyrgyz localization. ([#8787](http://bugs.jqueryui.com/ticket/8787), [1e19e5e](https://github.com/jquery/jquery-ui/commit/1e19e5e90bd801540e98c67f583a2f5aa30ffb53)) -* Added: Norwegian Bokmål and Norwegian Nynorsk locales. ([#8886](http://bugs.jqueryui.com/ticket/8886), [70f5d18](https://github.com/jquery/jquery-ui/commit/70f5d18c715ba1c759393856f0f70acfddbee07a)) +* 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](http://bugs.jqueryui.com/ticket/7362), [eca5abd](https://github.com/jquery/jquery-ui/commit/eca5abd873675f5cc7b96641c723b7e35a4260bc)) -* Fixed: Datepicker should reinitialize if dpDiv is removed. ([#5679](http://bugs.jqueryui.com/ticket/5679), [7ffcaa2](https://github.com/jquery/jquery-ui/commit/7ffcaa2e3b673e7e4178293224d5a15f65cbbcf9)) -* Fixed: Faroese locale has incorrect firstDay. ([#8815](http://bugs.jqueryui.com/ticket/8815), [3d96f20](https://github.com/jquery/jquery-ui/commit/3d96f20506bd20f4cdbf5c1dc33149ad6ea5f62c)) -* Fixed: Changing disabled option doesn't work. ([#8883](http://bugs.jqueryui.com/ticket/8883), [598cdae](https://github.com/jquery/jquery-ui/commit/598cdae199fed9b3aa1700142e8e00a61fc6e61a)) +* Fixed: Datepicker allows changing year to something outside yearRange. ([#7362](https://bugs.jqueryui.com/ticket/7362), [eca5abd](https://github.com/jquery/jquery-ui/commit/eca5abd873675f5cc7b96641c723b7e35a4260bc)) +* Fixed: Datepicker should reinitialize if dpDiv is removed. ([#5679](https://bugs.jqueryui.com/ticket/5679), [7ffcaa2](https://github.com/jquery/jquery-ui/commit/7ffcaa2e3b673e7e4178293224d5a15f65cbbcf9)) +* Fixed: Faroese locale has incorrect firstDay. ([#8815](https://bugs.jqueryui.com/ticket/8815), [3d96f20](https://github.com/jquery/jquery-ui/commit/3d96f20506bd20f4cdbf5c1dc33149ad6ea5f62c)) +* Fixed: Changing disabled option doesn't work. ([#8883](https://bugs.jqueryui.com/ticket/8883), [598cdae](https://github.com/jquery/jquery-ui/commit/598cdae199fed9b3aa1700142e8e00a61fc6e61a)) ### Dialog * Removed: Disabling dialogs is not supported. ([0be97bf](https://github.com/jquery/jquery-ui/commit/0be97bf8c01394cd68134b104bcbf30b27859531)) * Removed: minHeight workaround for IE6. ([5bd4b11](https://github.com/jquery/jquery-ui/commit/5bd4b11d9ba8c8cfd51f2d31ca56357191631d24)) * Removed: Unnecessary style properties. ([2c16435](https://github.com/jquery/jquery-ui/commit/2c1643509aee3cdeb0b5b7cc86a3cfa5ceb9fb60)) -* Removed: stack option. ([#8722](http://bugs.jqueryui.com/ticket/8722), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Removed: zIndex option. ([#8729](http://bugs.jqueryui.com/ticket/8729), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Deprecated: Array and string notations for position option. ([#8824](http://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](http://bugs.jqueryui.com/ticket/7948), [70b16ef](https://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](https://github.com/jquery/jquery-ui/commit/2a887e43213c4dbb21509b670cf5dc8ac2c67573)) -* Added: Allow Icons to be specified for Dialog buttons. ([#6830](http://bugs.jqueryui.com/ticket/6830), [9996173](https://github.com/jquery/jquery-ui/commit/999617343f7b813dc1c8d9c9048489e4d99d0470)) -* Added: Restore focus to opener. ([#8730](http://bugs.jqueryui.com/ticket/8730), [14691ae](https://github.com/jquery/jquery-ui/commit/14691ae6feea2732ec5aeae57b4275aa0e4d1beb)) +* 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](http://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](http://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](http://bugs.jqueryui.com/ticket/8838), [60486ac](https://github.com/jquery/jquery-ui/commit/60486ac632a0a1bbbb0c7449fe17bccfae11af80)) +* 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](http://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](http://bugs.jqueryui.com/ticket/4731), [b27db7e](https://github.com/jquery/jquery-ui/commit/b27db7e3b9a857b8f0890e91ae9c8a2d33bf9919)) -* Fixed: Title XSS Vulnerability. ([#6016](http://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](http://bugs.jqueryui.com/ticket/5559), [5ba267e](https://github.com/jquery/jquery-ui/commit/5ba267e7c78f0bc257383c822d241c5369e8e49d)) -* Fixed: Contain focus within dialog. ([#3768](http://bugs.jqueryui.com/ticket/3768), [3a09a4a](https://github.com/jquery/jquery-ui/commit/3a09a4a0de1f485a63091ffe8188b080a561b592)) +* 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](http://bugs.jqueryui.com/ticket/6058), [1e8baf5](https://github.com/jquery/jquery-ui/commit/1e8baf568365f8edc833439315f76e5efe1ba9b6)) -* Fixed: Auto height does not respect the maxHeight option. ([#4820](http://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](http://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](http://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](http://bugs.jqueryui.com/ticket/8789), [d179cba](https://github.com/jquery/jquery-ui/commit/d179cbaf3233ace0bc542e836c5c46e4129a9e0a)) -* Fixed: zIndex error with animated modal dialog. ([#4892](http://bugs.jqueryui.com/ticket/4892), [d07074d](https://github.com/jquery/jquery-ui/commit/d07074dc3c3b2c73ccf1ed1cb2876df31154e039)) -* Fixed: show: true and buttons break the layout. ([#6899](http://bugs.jqueryui.com/ticket/6899), [d07074d](https://github.com/jquery/jquery-ui/commit/d07074dc3c3b2c73ccf1ed1cb2876df31154e039)) -* Fixed: Modal dialog disables all input elements on page. ([#3534](http://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](http://bugs.jqueryui.com/ticket/4671), [3829a37](https://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](https://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](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Modal dialog incorrectly cancels input events. ([#5466](http://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](http://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](http://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](http://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](http://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](http://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](http://bugs.jqueryui.com/ticket/8172), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: Mouse event wrongly stopped. ([#8583](http://bugs.jqueryui.com/ticket/8583), [3829a37](https://github.com/jquery/jquery-ui/commit/3829a37ca122e923c3a08b964c4b1a946a2a1456)) -* Fixed: CKEditor in Modal Dialog is not editable. ([#4727](http://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](http://bugs.jqueryui.com/ticket/7063), [3829a37](https://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)) +* 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](https://github.com/jquery/jquery-ui/commit/5143b7f672bc668963cce7dcf5dd4e2970aad8e5)) -* Fixed: Can't change icons option after init. ([#8927](http://bugs.jqueryui.com/ticket/8927), [2c3d311](https://github.com/jquery/jquery-ui/commit/2c3d311f90281e95827708e2e8d0e52832a437de)) -* Fixed: refresh() doesn't refresh existing submenus. ([#8773](http://bugs.jqueryui.com/ticket/8773), [8b3e570](https://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](https://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](https://github.com/jquery/jquery-ui/commit/176e0ed0e67f5a0f7a334d5d7b65638017a65349)) -* Fixed: Multiple Sliders have conflict with options.values. ([#8892](http://bugs.jqueryui.com/ticket/8892), [209443d](https://github.com/jquery/jquery-ui/commit/209443d716587d896ffcdf26c0fd8c8a23437b3c)) -* Fixed: Visual issues with disabled slider in IE8. ([#6727](http://bugs.jqueryui.com/ticket/6727), [421aeaa](https://github.com/jquery/jquery-ui/commit/421aeaa08135e747ff9f2a59974c26b350cdcda7)) -* Fixed: Wrong slider UI state when disabled at init. ([#8772](http://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](http://bugs.jqueryui.com/ticket/3467), [a188632](https://github.com/jquery/jquery-ui/commit/a18863205e060bf9a145bb5ed90e36d8feb3c8f7)) +* 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](https://github.com/jquery/jquery-ui/commit/0d53fbfd0b7651652601b3b8577225ab753aab44)) -* Fixed: Value can't be seen in dark themes. ([#8950](http://bugs.jqueryui.com/ticket/8950), [d3d1e31](https://github.com/jquery/jquery-ui/commit/d3d1e31e9fb8b264818bb711c35bdcb973687179)) -* Fixed: Can't change icons option after init. ([#8926](http://bugs.jqueryui.com/ticket/8926), [04d668b](https://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](https://github.com/jquery/jquery-ui/commit/828b3c420cb42f02544b46bfa9208499a4947651)) -* Removed: ajaxOptions and cache options. ([#7147](http://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](http://bugs.jqueryui.com/ticket/7158), [#7157](http://bugs.jqueryui.com/ticket/7157), [#7149](http://bugs.jqueryui.com/ticket/7149), [054b208](https://github.com/jquery/jquery-ui/commit/054b208a9990fd71d30285e707ad53dae5a48247)) -* Removed: Back-compat for load event. ([#8731](http://bugs.jqueryui.com/ticket/8731), [3d6c2a6](https://github.com/jquery/jquery-ui/commit/3d6c2a66d44a9283ad18e8c7c5ea701ddca82e59)) -* Removed: cookie option. ([#7162](http://bugs.jqueryui.com/ticket/7162), [0429532](https://github.com/jquery/jquery-ui/commit/0429532ad10b0708e085c4830bb930d8457d62f4)) -* Removed: enable and disable events. ([#7160](http://bugs.jqueryui.com/ticket/7160), [0fc682a](https://github.com/jquery/jquery-ui/commit/0fc682a8dadc894caefe27c5a0fccf1eca30780d)) -* Removed: fx option. ([#8320](http://bugs.jqueryui.com/ticket/8320), [723d3e0](https://github.com/jquery/jquery-ui/commit/723d3e0040c46079cedf3998f4e28edfceed7c74)) -* Removed: length method. ([#7161](http://bugs.jqueryui.com/ticket/7161), [1a7958a](https://github.com/jquery/jquery-ui/commit/1a7958a43096ced70043514055e8f62422d860fd)) +* 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](http://bugs.jqueryui.com/ticket/7154), [fb525e1](https://github.com/jquery/jquery-ui/commit/fb525e1cb10ce5959df28b0cbd29ebdc96c266f4)) -* Removed: select method. ([#7156](http://bugs.jqueryui.com/ticket/7156), [7cf2719](https://github.com/jquery/jquery-ui/commit/7cf2719d0c406c7ff17c7e784c0e1e6eb23b562a)) -* Removed: selected option. ([#7152](http://bugs.jqueryui.com/ticket/7152), [a9053d9](https://github.com/jquery/jquery-ui/commit/a9053d93008e203391206cb743e873064fc8198b)) -* Removed: show event. ([#7155](http://bugs.jqueryui.com/ticket/7155), [a1fd49f](https://github.com/jquery/jquery-ui/commit/a1fd49fb2944a7dbe76e81ba648c2b56e7c6651d)) -* Removed: spinner option. ([#7151](http://bugs.jqueryui.com/ticket/7151), [6a00d41](https://github.com/jquery/jquery-ui/commit/6a00d418bc8346df7124708125056ad4717ce89c)) -* Removed: url method. ([#7148](http://bugs.jqueryui.com/ticket/7148), [acdd191](https://github.com/jquery/jquery-ui/commit/acdd1917b2ab5a3b5469678d835107152ed5aaef)) -* Fixed: Height overflows parent with heightStyle: 'fill'. ([#8836](http://bugs.jqueryui.com/ticket/8836), [6121683](https://github.com/jquery/jquery-ui/commit/6121683d807b2da56cf6cde3240d5926421b280b)) -* Fixed: isLocal function issue in Safari 5.1.7. ([#8877](http://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](http://bugs.jqueryui.com/ticket/8777), [c6b52db](https://github.com/jquery/jquery-ui/commit/c6b52db892703ba14153800dbf620db509acb9e6)) +* 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](http://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](http://bugs.jqueryui.com/ticket/7847), [e3ab5f8](https://github.com/jquery/jquery-ui/commit/e3ab5f811a97c9fd79038c550aa86dcff0465d40)) +* Fixed: 'display: none;' attribute is not removed from tabs when destroy is called. ([#8795](https://bugs.jqueryui.com/ticket/8795), [fd48568](https://github.com/jquery/jquery-ui/commit/fd48568c402847df8af59166c33549f0d19feb4b), [b9068c1](https://github.com/jquery/jquery-ui/commit/b9068c1523f39da8a04c799eebc9adc8b83c7279)) +* Fixed: Simple manipulation demo accessibility. ([#7847](https://bugs.jqueryui.com/ticket/7847), [e3ab5f8](https://github.com/jquery/jquery-ui/commit/e3ab5f811a97c9fd79038c550aa86dcff0465d40)) ### Tooltip * Removed: IE6 CSS hack. ([f83f07d](https://github.com/jquery/jquery-ui/commit/f83f07dafd9c28f96a7cec49c00e4b24a4b493bf)) -* Fixed: error when parent element has no title attribute using jQuery 1.6. ([#8955](http://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](http://bugs.jqueryui.com/ticket/8747), [98173a3](https://github.com/jquery/jquery-ui/commit/98173a3d0ea8e2e6aeb19dda9b232cb65a0684e4)) -* Fixed: Tooltip potential setInterval() endless loop. ([#8920](http://bugs.jqueryui.com/ticket/8920), [9cbd4b4](https://github.com/jquery/jquery-ui/commit/9cbd4b42221389277cf90a6662f17c500d1a77df)) -* Fixed: XSS vulnerability in default content. ([#8861](http://bugs.jqueryui.com/ticket/8861), [f285440](https://github.com/jquery/jquery-ui/commit/f2854408cce7e4b7fc6bf8676761904af9c96bde)) -* Fixed: Does not hide consistently with dynamically loaded content. ([#8740](http://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](http://bugs.jqueryui.com/ticket/8758), [498aadf](https://github.com/jquery/jquery-ui/commit/498aadf644ddca86de838dc2001267ded972df2c)) -* Fixed: Default positioning on large items off. ([#8739](http://bugs.jqueryui.com/ticket/8739), [1d9eab1](https://github.com/jquery/jquery-ui/commit/1d9eab1ead0d5a6f60e31437bb539eb3f804bacc)) -* Fixed: Tracking fails on nested elements. ([#8799](http://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](http://bugs.jqueryui.com/ticket/8742), [d074efe](https://github.com/jquery/jquery-ui/commit/d074efe5289db4f5182a685046e9b9ad6186ac26)) +* 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](https://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](https://github.com/jquery/jquery-ui/commit/da01fb6a346e1ece3fd6dde5556a98f099e0c0e0)) -* Fixed: Class animation has broken noConflict support. ([#8860](http://bugs.jqueryui.com/ticket/8860), [c5e0961](https://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](https://github.com/jquery/jquery-ui/commit/1fe06f03fac30ce76b87eab8c5a9acc72becd587)) -* Fixed: Autocomplete inside dialog causes scrollbars. ([#8793](http://bugs.jqueryui.com/ticket/8793), [48e0aa0](https://github.com/jquery/jquery-ui/commit/48e0aa0fd2782380931af43abb5bb92b73ebe4ad)) +* 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](http://bugs.jqueryui.com/ticket/8834), [c4b7c75](https://github.com/jquery/jquery-ui/commit/c4b7c754eedf10923f588cf6310f610fcd0c37a9)) -* Fixed: Remove invalid CSS for legacy browsers. ([#7975](http://bugs.jqueryui.com/ticket/7975), [d7bff01](https://github.com/jquery/jquery-ui/commit/d7bff010691b542d918245bac11beac2b93b3462)) +* 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 diff --git a/page/changelog/1.10.1.md b/page/changelog/1.10.1.md index a3ca9eb..b297bd8 100644 --- a/page/changelog/1.10.1.md +++ b/page/changelog/1.10.1.md @@ -6,63 +6,63 @@ 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](https://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](https://github.com/jquery/jquery-ui/commit/c32bebd1bd28d158b017bb1dd7f95fb1d8a8d567)) -* Fixed: Reference to undefined `$.ui.contains()`. ([#9051](http://bugs.jqueryui.com/ticket/9051), [2df2abc](https://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](https://github.com/jquery/jquery-ui/commit/10c873ab6cf2333f7e51784e84c03a0fbb975e1f)) -* Fixed: Corner display issues. ([#8995](http://bugs.jqueryui.com/ticket/8995), [673c655](https://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](https://github.com/jquery/jquery-ui/commit/7d5fe02dd9e3af3ebbb4fcc3092045139b166c48)) -* Fixed: Multiple demo has errors. ([#9029](http://bugs.jqueryui.com/ticket/9029), [ceebe07](https://github.com/jquery/jquery-ui/commit/ceebe07e2c99190030c16b031813ae660d9283d1)) +* 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](https://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](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](http://bugs.jqueryui.com/ticket/8994), [8f7c3e3](https://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](https://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](https://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](https://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](https://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](https://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](https://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](https://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](https://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](https://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](https://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](https://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](https://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](https://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 e16ba36..f55dd96 100644 --- a/page/changelog/1.10.2.md +++ b/page/changelog/1.10.2.md @@ -8,64 +8,64 @@ Released on March 14, 2013 * 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](http://bugs.jqueryui.com/ticket/9090)) +* 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](https://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](https://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](https://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](https://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](https://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](https://github.com/jquery/jquery-ui/commit/b9be6bb7ad107fd48b28e31df972b2037c47c2cb)) -* Fixed: `cursor` option doesn't override CSS cursor settings. ([#7389](http://bugs.jqueryui.com/ticket/7389), [a692bf9](https://github.com/jquery/jquery-ui/commit/a692bf9b70305de5e9893e717fc71e1e74fb86ac)) -* Fixed: Incorrect revert animation with `axis: 'y'`. ([#7415](http://bugs.jqueryui.com/ticket/7415), [054449e](https://github.com/jquery/jquery-ui/commit/054449e214449ec5578fe71bb67b9a670adac828)) -* Fixed: Issue with floated items in connected lists. ([#8792](http://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](http://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](http://bugs.jqueryui.com/ticket/4765), [bd47bd4](https://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](https://github.com/jquery/jquery-ui/commit/ba96cb47725dc6639ae366bd381f089c1750c8f5)) -* Fixed: Mouse auto-highlights option in Firefox. ([#9118](http://bugs.jqueryui.com/ticket/9118), [d5d3a74](https://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](https://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](https://github.com/jquery/jquery-ui/commit/51eb28e76e372fe0af12724edff0b5780b5e5ed0)) -* Fixed: Dialog inheritance. ([#9097](http://bugs.jqueryui.com/ticket/9097), [5e1b8dc](https://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](https://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](https://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](https://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](https://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](https://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 4cf0909..40efd4d 100644 --- a/page/changelog/1.10.3.md +++ b/page/changelog/1.10.3.md @@ -6,52 +6,52 @@ Released on May 3, 2013 ## Build -* Fixed: Incorrect links in effect manifests. ([#9247](http://bugs.jqueryui.com/ticket/9247), [91445c6](https://github.com/jquery/jquery-ui/commit/91445c69e884d69da4bf38c6302aa17d0ced09e0), [c64e1b8](https://github.com/jquery/jquery-ui/commit/c64e1b8416fd03fff050005c4573003c3b6b7049)) +* 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](https://github.com/jquery/jquery-ui/commit/c1011b5b9dbdf59acff2fc26b832e0fba09346bd)) -* Fixed: Auto scroll goes double distance when dragging. ([#6817](http://bugs.jqueryui.com/ticket/6817), [943537c](https://github.com/jquery/jquery-ui/commit/943537cb785fb90adf9f0b515cbb084a1a2e3c04)) -* Fixed: Containment doesn't properly update. ([#8962](http://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](http://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](http://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](http://bugs.jqueryui.com/ticket/8165), [f74a908](https://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](https://github.com/jquery/jquery-ui/commit/9711c54c6d3d7ecffa9bfccc205522be1f4aa148)) -* Fixed: Placeholder doesn't move when using `connectWith` option. ([#8301](http://bugs.jqueryui.com/ticket/8301), [9ac505b](https://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](https://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](https://github.com/jquery/jquery-ui/commit/c1f7f527afeb1bba50a576924b327f812b48ad91)) -* Fixed: `.replaceWith()` fails to replace. ([#9172](http://bugs.jqueryui.com/ticket/9172), [2da014b](https://github.com/jquery/jquery-ui/commit/2da014b11d264a49c7ad7075d1fdb66a7d3f009c)) -* Fixed: Combobox demo does not show items. ([#9157](http://bugs.jqueryui.com/ticket/9157), [149e6eb](https://github.com/jquery/jquery-ui/commit/149e6eb0bce7e891d35b862be920d36d3535f62e)) -* Fixed: Autocomplete Combobox demo shows underlying select by default. ([#9158](http://bugs.jqueryui.com/ticket/9158), [fb6adc7](https://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](https://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](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](http://bugs.jqueryui.com/ticket/7347), [f157310](https://github.com/jquery/jquery-ui/commit/f15731072bd76dd5d208ec71d2077c745f4180d2)) +* 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](https://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](https://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 index a45ecb0..6689313 100644 --- a/page/changelog/1.10.4.md +++ b/page/changelog/1.10.4.md @@ -6,85 +6,85 @@ Released on January 17, 2014 ## Build -* Added: Spport for running on Travis. ([13c17eb](https://github.com/jquery/jquery-ui/commit/13c17eb92250776c045da44652e7d460159cef02)) -* Added: Verify characters in output. ([#9037](http://bugs.jqueryui.com/ticket/9037), [7396460](https://github.com/jquery/jquery-ui/commit/7396460c765395b97b9a1da125384903a62c1a2e)) +* 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](http://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](http://bugs.jqueryui.com/ticket/9601), [6cdebe8](https://github.com/jquery/jquery-ui/commit/6cdebe84f8fb20374bb9dd32b62cba1b7f8dfd13)) +* 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](http://bugs.jqueryui.com/ticket/9533), [c8b2640](https://github.com/jquery/jquery-ui/commit/c8b264006d2fd8d9c27cfa8aef619428c563cb80)) -* Fixed: `$.position.scrollbarWidth` detection causes layout issues. ([#9291](http://bugs.jqueryui.com/ticket/9291), [edf36f3](https://github.com/jquery/jquery-ui/commit/edf36f35ce84a67376d7e9fedd21fc07b38100c0)) +* 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](http://bugs.jqueryui.com/ticket/9339), [0ab1e16](https://github.com/jquery/jquery-ui/commit/0ab1e16ad9eae6b030e7f569973787664760e8e6)) +* 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](http://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](http://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](http://bugs.jqueryui.com/ticket/9547), [e29e5b5](https://github.com/jquery/jquery-ui/commit/e29e5b56afea5a0250636d9c9fd97106732bfe84)) +* 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](http://bugs.jqueryui.com/ticket/9407), [d21e8a6](https://github.com/jquery/jquery-ui/commit/d21e8a6964d80a32cdb9773aa364141a2492dc5a)) +* 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](http://bugs.jqueryui.com/ticket/9334), [e4a194c](https://github.com/jquery/jquery-ui/commit/e4a194ce42b8ea1e5440f99d1d8d26f55526ff6c)) +* 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](http://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](http://bugs.jqueryui.com/ticket/9169), [6e48da0](https://github.com/jquery/jquery-ui/commit/6e48da049014c484a219df11ab8f0551afb27fb5)) +* 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](http://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](http://bugs.jqueryui.com/ticket/9656), [1da91cd](https://github.com/jquery/jquery-ui/commit/1da91cd500c0cd7cb831a256bef085686fe73e51)) -* Fixed: Correct the Finnish date format. ([#9609](http://bugs.jqueryui.com/ticket/9609), [ce0cef9](https://github.com/jquery/jquery-ui/commit/ce0cef92656d6135fb7121bfe04fa6551dab613e)) -* Fixed: Wrong dateformat for Icelandic datepicker locale. ([#9431](http://bugs.jqueryui.com/ticket/9431), [94be965](https://github.com/jquery/jquery-ui/commit/94be965cd2d064e67e347c654469c38de4281b3e)) -* Fixed: Incorrect settings for Lithuanian locale. ([#9281](http://bugs.jqueryui.com/ticket/9281), [d8e166b](https://github.com/jquery/jquery-ui/commit/d8e166b41104b4d0caa8bcb0195918132f78c26a)) +* 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](http://bugs.jqueryui.com/ticket/9312), [2623836](https://github.com/jquery/jquery-ui/commit/26238369bb113b487959322595e4814b441e5453)) -* Fixed: Resizable dialogs move/resize out of viewpoint boundry. ([#9521](http://bugs.jqueryui.com/ticket/9521), [b6f8ad6](https://github.com/jquery/jquery-ui/commit/b6f8ad665f455a4234f09956027ca23b477838db)) -* Fixed: Resizing causes close icon to misalign in Firefox. ([#9133](http://bugs.jqueryui.com/ticket/9133), [fd80c34](https://github.com/jquery/jquery-ui/commit/fd80c3445d3102519b7f9e0e549bc7d352bc2e56)) -* Fixed: Dialog throw error in IE9 with iframe. ([#8443](http://bugs.jqueryui.com/ticket/8443), [29e8077](https://github.com/jquery/jquery-ui/commit/29e8077871902a49f3039633a7fb9ac5c4093aa8)) -* Fixed: Window blurs in IE9. ([#9420](http://bugs.jqueryui.com/ticket/9420), [29e8077](https://github.com/jquery/jquery-ui/commit/29e8077871902a49f3039633a7fb9ac5c4093aa8)) +* 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](http://bugs.jqueryui.com/ticket/9384), [9b39852](https://github.com/jquery/jquery-ui/commit/9b398520c5e1a313d0c1ebfa7dfd892f8b3e440c)) -* Fixed: Autofocus issue with dialog opened from menu widget. ([#9044](http://bugs.jqueryui.com/ticket/9044), [78c593b](https://github.com/jquery/jquery-ui/commit/78c593be8f1651c743f4018dd9a2fd9ab6c25ae7)) -* Fixed: `menuselect` is not always fired. ([#9469](http://bugs.jqueryui.com/ticket/9469), [b02a32f](https://github.com/jquery/jquery-ui/commit/b02a32f4b3d7a0588949f2961a74d613beeaea48)) -* Fixed: Refreshing should recheck for menu icons. ([#9377](http://bugs.jqueryui.com/ticket/9377), [db1ee1a](https://github.com/jquery/jquery-ui/commit/db1ee1af85ea2f0671f370e325d4ba5b971b2dd0)) +* 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](http://bugs.jqueryui.com/ticket/9355), [8fba171](https://github.com/jquery/jquery-ui/commit/8fba171fec64cae094566c6777e40c252ecef812)) +* 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](http://bugs.jqueryui.com/ticket/9573), [b846bea](https://github.com/jquery/jquery-ui/commit/b846bea0fde6b14f63194450e4a77693c3a039a2)) +* 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](http://bugs.jqueryui.com/ticket/9584), [8eefd20](https://github.com/jquery/jquery-ui/commit/8eefd2032fb5c0e60c7a9899ba51bc7f33aaebc8)) -* Fixed: Incorrect remote tab detection in IE7. ([#9317](http://bugs.jqueryui.com/ticket/9317), [39ff5b3](https://github.com/jquery/jquery-ui/commit/39ff5b36e4ed2513f7dc11c22ea4df5d03f9f7b7)) +* 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](http://bugs.jqueryui.com/ticket/9428), [8f7e342](https://github.com/jquery/jquery-ui/commit/8f7e3428f01fe84d8d9040b54adf761ffdcd382e)) +* 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 index fa0b72d..1fffa08 100644 --- a/page/changelog/1.11.0.md +++ b/page/changelog/1.11.0.md @@ -6,243 +6,243 @@ Released on June 26, 2014 ## General -* Removed: Support for IE7. ([#9841](http://bugs.jqueryui.com/ticket/9841)) +* 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](http://bugs.jqueryui.com/ticket/9465), [e837d11](https://github.com/jquery/jquery-ui/commit/e837d11d6b3c8517e322ded24faaa400443402ef)) -* Added: Windows 8 touch support. ([#9709](http://bugs.jqueryui.com/ticket/9709), [#9710](http://bugs.jqueryui.com/ticket/9710), [28310ff](https://github.com/jquery/jquery-ui/commit/28310ff)) +* 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](http://bugs.jqueryui.com/ticket/9464), [21154cf](https://github.com/jquery/jquery-ui/commit/21154cfa2e02ef1814a6aff68b14553bdad165cb), [086dad6](https://github.com/jquery/jquery-ui/commit/086dad66c444fbf8dd6c93ac815fed6f0072ccbf)) +* 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](http://bugs.jqueryui.com/ticket/9507), [d789d7a](https://github.com/jquery/jquery-ui/commit/d789d7ab1973f61484cc3c6307e8ff2978acd215)) +* 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](http://bugs.jqueryui.com/ticket/10006), [0645ac4](https://github.com/jquery/jquery-ui/commit/0645ac45edc383ae30f17ce9e21a92d934ea5931)) +* 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](http://bugs.jqueryui.com/ticket/9793), [516920a](https://github.com/jquery/jquery-ui/commit/516920ac71902cb9349db2220b5f7eb8e357340e)) +* 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](http://bugs.jqueryui.com/ticket/10110), [a0fea7d](https://github.com/jquery/jquery-ui/commit/a0fea7d849a2d0a949cfde8ea1c2edbf2a94d963)) +* 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](http://bugs.jqueryui.com/ticket/9037), [7da8283](https://github.com/jquery/jquery-ui/commit/7da828375afb20d58736bb1eb530f915c445d5b9)) +* 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](http://bugs.jqueryui.com/ticket/9998), [079279a](https://github.com/jquery/jquery-ui/commit/079279afd4bc9ca7bc19fb34c539621997033b22)) +* 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](http://bugs.jqueryui.com/ticket/9247), [45f85cc](https://github.com/jquery/jquery-ui/commit/45f85cce5634e2321e701e905297b578987d3083), [2daf09d](https://github.com/jquery/jquery-ui/commit/2daf09d67160eceddd2b024d2698930e12193ba9)) +* 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](http://bugs.jqueryui.com/ticket/9190), [ecd6a25](https://github.com/jquery/jquery-ui/commit/ecd6a25a83b15d0c5af306c44befb9e652c82f37)) +* 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](http://bugs.jqueryui.com/ticket/9269), [274ed73](https://github.com/jquery/jquery-ui/commit/274ed73cd7da3025dc172b17f1c0820183f9a055)) -* Deprecated: `.focus( n )`. ([#9646](http://bugs.jqueryui.com/ticket/9646), [df6110c](https://github.com/jquery/jquery-ui/commit/df6110c0d424ff3306fdd5576011f2dcf4d242d0)) -* Deprecated: `.zIndex()`. ([#9061](http://bugs.jqueryui.com/ticket/9061), [932caaf](https://github.com/jquery/jquery-ui/commit/932caaf2ddf70c889003d5b42eee4f069d2dd296)) +* 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](http://bugs.jqueryui.com/ticket/9030), [36cb6f2](https://github.com/jquery/jquery-ui/commit/36cb6f264dbe6b155f8fd97b0ee7615a0f1adedb)) -* Added: Support events with dashes and colons. ([#9708](http://bugs.jqueryui.com/ticket/9708), [be2a339](https://github.com/jquery/jquery-ui/commit/be2a339b2beaed69105abae91a118bc1c8669a1b)) -* Added: `_init()` method is now optional. ([#9543](http://bugs.jqueryui.com/ticket/9543), [6e799c3](https://github.com/jquery/jquery-ui/commit/6e799c39d33be8eee02224d2f754dc42228a4cbb)) -* Added: Return the constructor from `$.widget()`. ([#9467](http://bugs.jqueryui.com/ticket/9467), [c0ab710](https://github.com/jquery/jquery-ui/commit/c0ab71056b936627e8a7821f03c044aec6280a40)) -* Fixed: Properly set `widgetEventPrefix` when redefining a widget. ([#9316](http://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](http://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](http://bugs.jqueryui.com/ticket/9601), [ecde7cd](https://github.com/jquery/jquery-ui/commit/ecde7cd41a59e9c3ff07f56baeeaec2147cca779)) +* 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](http://bugs.jqueryui.com/ticket/9291), [d500e94](https://github.com/jquery/jquery-ui/commit/d500e945a46c9e2ce5bbb685661c32b5d3f57d21)) -* Fixed: Positioning within document throws an error. ([#9533](http://bugs.jqueryui.com/ticket/9533), [1bbbcc7](https://github.com/jquery/jquery-ui/commit/1bbbcc723c489d7ef7d72bb62564b8f07805c41c)) -* Fixed: Incorrect presentation with progressbar demo label in IE9. ([#9163](http://bugs.jqueryui.com/ticket/9163), [8bf5bc8](https://github.com/jquery/jquery-ui/commit/8bf5bc8bc8322bce796a9d9c9e7dc140e3081973)) +* 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](http://bugs.jqueryui.com/ticket/5974), [44d0717](https://github.com/jquery/jquery-ui/commit/44d07173db32b498e5f83f60db290ff1463daee3)) -* Fixed: Position bug in scrollable div. ([#9379](http://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](http://bugs.jqueryui.com/ticket/8399), [bca3e05](https://github.com/jquery/jquery-ui/commit/bca3e058e89bf40806170149b8029dfe52644248)) +* 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](http://bugs.jqueryui.com/ticket/8459), [9d8af80](https://github.com/jquery/jquery-ui/commit/9d8af804ad4cebe434d420b29467c596809a7cca)) -* Fixed: Double offset bug when scrolling. ([#6817](http://bugs.jqueryui.com/ticket/6817), [82f588e](https://github.com/jquery/jquery-ui/commit/82f588e82b887fdcb2406da2c5dfedc2f13ebdc9)) -* Fixed: Enabled draggable from within iframe. ([#5727](http://bugs.jqueryui.com/ticket/5727), [24756a9](https://github.com/jquery/jquery-ui/commit/24756a978a977d7abbef5e5bce403837a01d964f)) -* Fixed: Modified snapping algorithm to use edges and corners. ([#8165](http://bugs.jqueryui.com/ticket/8165), [bd126a9](https://github.com/jquery/jquery-ui/commit/bd126a9c1cfcbc9d0fd370af25cfa0eab294fc4e)) -* Fixed: Apply `axis` options to position instead of style. ([#7251](http://bugs.jqueryui.com/ticket/7251), [94f8c4d](https://github.com/jquery/jquery-ui/commit/94f8c4d5e9ef461973a504d65dd906c1120da71d)) -* Fixed: Ability to change `containment` option. ([#9733](http://bugs.jqueryui.com/ticket/9733), [0bb807b](https://github.com/jquery/jquery-ui/commit/0bb807bb42af87bf4c6dd4d71808b12c08d316e7)) -* Fixed: Position bug in scrollable div. ([#9379](http://bugs.jqueryui.com/ticket/9379), [44b2180](https://github.com/jquery/jquery-ui/commit/44b2180782df6ef3324789324fcf3f98b85784a0)) -* Fixed: Scroll not working with fixed position parent. ([#5009](http://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](http://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](http://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](http://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](http://bugs.jqueryui.com/ticket/9520), [eae2c4b](https://github.com/jquery/jquery-ui/commit/eae2c4b358af3ebfae258abfe77eeace48fcefcb)) -* Fixed: Handle `containment` option set to `false` after init. ([#8962](http://bugs.jqueryui.com/ticket/8962), [dc5254a](https://github.com/jquery/jquery-ui/commit/dc5254aa0703f9f7fd9d290c3078a5e9267160d9)) -* Fixed: Jumps down with offset of scrollbar. ([#9315](http://bugs.jqueryui.com/ticket/9315), [263d078](https://github.com/jquery/jquery-ui/commit/263d07894493aafcdc6a565f9f9c079b4b8f5d80)) +* 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](http://bugs.jqueryui.com/ticket/6039), [44d0717](https://github.com/jquery/jquery-ui/commit/44d07173db32b498e5f83f60db290ff1463daee3)) -* Fixed: Off-by-one error in `isOverAxis()`. ([#10128](http://bugs.jqueryui.com/ticket/10128), [433ef9d](https://github.com/jquery/jquery-ui/commit/433ef9d433e9baa464cd0b313b82efa6f1d65556)) -* Fixed: `scope` option cannot be changed after initialization. ([#9287](http://bugs.jqueryui.com/ticket/9287), [ffab89e](https://github.com/jquery/jquery-ui/commit/ffab89e9bee97cf7cc74249b6e4ce9dd798013c9)) +* 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](http://bugs.jqueryui.com/ticket/9339), [a4fc7a9](https://github.com/jquery/jquery-ui/commit/a4fc7a9e9664d44d65b971c90a0cad82e1e79344)) +* 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](http://bugs.jqueryui.com/ticket/5973), [44d0717](https://github.com/jquery/jquery-ui/commit/44d07173db32b498e5f83f60db290ff1463daee3)) -* Fixed: Resizing can move the element. ([#7018](http://bugs.jqueryui.com/ticket/7018), [#9107](http://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](http://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](http://bugs.jqueryui.com/ticket/9611), [20c1648](https://github.com/jquery/jquery-ui/commit/20c1648f68660b267eec302d43a7b1014cda6e1a)) -* Fixed: Don't force absolute positioning when also draggable. ([#6939](http://bugs.jqueryui.com/ticket/6939), [3576ceb](https://github.com/jquery/jquery-ui/commit/3576ceb360eb0381a98f3c6b67d890c3834efa8a)) -* Fixed: Allow resizing when resizables are nested. ([#5025](http://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](http://bugs.jqueryui.com/ticket/9547), [14065dc](https://github.com/jquery/jquery-ui/commit/14065dc23bb453b6c30138f225c9db728dd7e455)) -* Fixed: Erratic behavior of contained elements within scrollable grandparents. ([#9307](http://bugs.jqueryui.com/ticket/9307), [6df5c1a](https://github.com/jquery/jquery-ui/commit/6df5c1a4ae738e591694e0fe2fa3bbb8b05f6b0a)) +* 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](http://bugs.jqueryui.com/ticket/9185), [09b3533](https://github.com/jquery/jquery-ui/commit/09b3533910e887377fc87126608db1ded06f38f6)) -* Fixed: Placeholder doesn't move when using `connectWith` option. ([#8301](http://bugs.jqueryui.com/ticket/8301), [f306a82](https://github.com/jquery/jquery-ui/commit/f306a826a4d3b4c36c3f86cb5feeee23bb0db4c3)) -* Fixed: Dragging items into bottom of a list. ([#9314](http://bugs.jqueryui.com/ticket/9314), [#9381](http://bugs.jqueryui.com/ticket/9381), [601ad96](https://github.com/jquery/jquery-ui/commit/601ad962e0a417bb369378ed7704a0b493eac365)) +* 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](http://bugs.jqueryui.com/ticket/8999), [43442c3](https://github.com/jquery/jquery-ui/commit/43442c319643ee9fb6f54737d921ba8b03f3ae6b)) +* 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](http://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](http://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](http://bugs.jqueryui.com/ticket/9407), [f16d0c7](https://github.com/jquery/jquery-ui/commit/f16d0c7e267794aa20411581b15870d9babd7930)) +* 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](http://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](http://bugs.jqueryui.com/ticket/9334), [9e00e00](https://github.com/jquery/jquery-ui/commit/9e00e00f3b54770faa0291d6ee6fc1dcbad028cb)) -* Fixed: Search if the user retypes the same value. ([#7434](http://bugs.jqueryui.com/ticket/7434), [48001a8](https://github.com/jquery/jquery-ui/commit/48001a8c46adc5d1d6c1726cecbe6453946e96e0)) -* Fixed: Combobox demo. ([#9157](http://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](http://bugs.jqueryui.com/ticket/8911), [f5f0879](https://github.com/jquery/jquery-ui/commit/f5f08791536e689e008b04d6ea9677811353d456)) -* Fixed: Announce autocomplete correctly in all assistive technologies. ([#9631](http://bugs.jqueryui.com/ticket/9631), [0b28d59](https://github.com/jquery/jquery-ui/commit/0b28d597fe1857590c9719c8b41f00e77967f7d7)) -* Fixed: `.replaceWith()` fails to replace. ([#9172](http://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](http://bugs.jqueryui.com/ticket/9764), [d4865dc](https://github.com/jquery/jquery-ui/commit/d4865dcbcdccdce59f07b324f230a1f1991aa39d)) -* Fixed: Do not set value on multi-line input. ([#9771](http://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](http://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](http://bugs.jqueryui.com/ticket/9590), [7b9c810](https://github.com/jquery/jquery-ui/commit/7b9c810b9ac450d826b6fa0c3d35377178b7e3b3)) -* Fixed: Combobox demo shows underlying select by default. ([#9158](http://bugs.jqueryui.com/ticket/9158), [4202ad0](https://github.com/jquery/jquery-ui/commit/4202ad07187e15a3b2e64277e170daf9b278c3b4)) +* 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](http://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](http://bugs.jqueryui.com/ticket/7665), [8b64322](https://github.com/jquery/jquery-ui/commit/8b64322e982e97cdfd5cdd184c8993f7123d469e)) -* Fixed: Remove `ui-state-active` class when disabled. ([#9602](http://bugs.jqueryui.com/ticket/9602), [23d7d50](https://github.com/jquery/jquery-ui/commit/23d7d50f374f71efec418276a343e947cb80aea6)) -* Fixed: Remove `ui-state-focus` class when disabled. ([#9169](http://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](http://bugs.jqueryui.com/ticket/9213), [2de31fd](https://github.com/jquery/jquery-ui/commit/2de31fdbf498a6c20d196a96d007ea0f069644c5)) -* Fixed: Ignore non-radio elements with the same name. ([#8761](http://bugs.jqueryui.com/ticket/8761), [ccb1324](https://github.com/jquery/jquery-ui/commit/ccb13240dd8b5cfac0199a30dcec4a71cbe1b252)) +* 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](http://bugs.jqueryui.com/ticket/5816), [f0b4967](https://github.com/jquery/jquery-ui/commit/f0b4967388a5f0d7eb14c4b124886a11f4aa7d9e)) -* Added: it-CH locale. ([#9175](http://bugs.jqueryui.com/ticket/9175), [ae4753b](https://github.com/jquery/jquery-ui/commit/ae4753b3f1c8d320e11a63f028ec02dc621d24e9)) +* 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](http://bugs.jqueryui.com/ticket/6682), [450d75f](https://github.com/jquery/jquery-ui/commit/450d75f912f4161c475f18f9eeb7efd307c02eae)) -* Fixed: Date format for Serbian locales. ([#7347](http://bugs.jqueryui.com/ticket/7347), [504b100](https://github.com/jquery/jquery-ui/commit/504b100a1a9213186968c654dd915b92bb9ee15b)) -* Fixed: Lithuanian locale. ([#9281](http://bugs.jqueryui.com/ticket/9281), [ce73a26](https://github.com/jquery/jquery-ui/commit/ce73a2688de47c975727ad9555cae84eb6997486)) -* Fixed: Spanish locale. ([#9735](http://bugs.jqueryui.com/ticket/9735), [6ec452c](https://github.com/jquery/jquery-ui/commit/6ec452cc63313ec03f58942ce896036c7a2fcf3f)) -* Fixed: Finnish locale. ([#9609](http://bugs.jqueryui.com/ticket/9609), [619261f](https://github.com/jquery/jquery-ui/commit/619261f0797a6fab49e2f2dd175b35795c0dc01e)) -* Fixed: Ukranian locale. ([#9939](http://bugs.jqueryui.com/ticket/9939), [f3ffc8c](https://github.com/jquery/jquery-ui/commit/f3ffc8c9a94da8abe97a32d164f821ad8a9a8b60)) -* Fixed: Latvian locale. ([#9656](http://bugs.jqueryui.com/ticket/9656), [629c632](https://github.com/jquery/jquery-ui/commit/629c632a110d437b6f328e6ff399a04c1a85352a)) -* Fixed: Icelandic locale. ([#9431](http://bugs.jqueryui.com/ticket/9431), [369c76d](https://github.com/jquery/jquery-ui/commit/369c76d9e62fd3bac4676801d5666e6b40a068a2)) +* 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](http://bugs.jqueryui.com/ticket/9289), [9726cd7](https://github.com/jquery/jquery-ui/commit/9726cd72b64e9e9735cfdb5564ebef64a6dab0aa), [aaf7576](https://github.com/jquery/jquery-ui/commit/aaf75767fa98a6acdf00b1414bee622d3a3747cc)) +* 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](http://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](http://bugs.jqueryui.com/ticket/10057), [b41b922](https://github.com/jquery/jquery-ui/commit/b41b92213af1e376e70099e0fffe875b01ff8d08)) -* Fixed: Resizing causes close icon to misalign in Firefox. ([#9133](http://bugs.jqueryui.com/ticket/9133), [ec3cf67](https://github.com/jquery/jquery-ui/commit/ec3cf6725aa5ae0c69cb302df92eb933a517cbaa)) -* Fixed: Safe `activeElement` access. ([#9420](http://bugs.jqueryui.com/ticket/9420), [#8443](http://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](http://bugs.jqueryui.com/ticket/9166), [#9364](http://bugs.jqueryui.com/ticket/9364), [e263ebd](https://github.com/jquery/jquery-ui/commit/e263ebda99f3d414bae91a4a47e74a37ff93ba9c)) -* Fixed: Inheritance causes undefined property _focusTabbable. ([#9241](http://bugs.jqueryui.com/ticket/9241), [1096f19](https://github.com/jquery/jquery-ui/commit/1096f19f37d6075328509d62a4c2c6d6a53d4b37)) -* Fixed: Use `unbind()` for jQuery 1.6 compat. ([#10072](http://bugs.jqueryui.com/ticket/10072), [6c40052](https://github.com/jquery/jquery-ui/commit/6c4005280d5f5b49de382e7e4992c1778f541f6c)) -* Fixed: Honor `preventDefault` when managing focus. ([#10103](http://bugs.jqueryui.com/ticket/10103), [226cc3e](https://github.com/jquery/jquery-ui/commit/226cc3e9e57c7591ff6a2ee02ffed52ac97786a9)) -* Fixed: Context is not respected for modals. ([#9439](http://bugs.jqueryui.com/ticket/9439), [c9815f1](https://github.com/jquery/jquery-ui/commit/c9815f13b487d027ef9b6095588dbb73141c9a09)) -* Fixed: Capitalize default value for `closeText` option. ([#9500](http://bugs.jqueryui.com/ticket/9500), [e628d0e](https://github.com/jquery/jquery-ui/commit/e628d0e4ba89eecee2c9b0d4cfb214523cad2ab4)) -* Fixed: Use proper position data after drag and resize. ([#9351](http://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](http://bugs.jqueryui.com/ticket/9101), [0e5a2e1](https://github.com/jquery/jquery-ui/commit/0e5a2e126ab4179f1ec83e1e4e773058b49e336d)) +* 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](http://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](http://bugs.jqueryui.com/ticket/9312), [c19e7b3](https://github.com/jquery/jquery-ui/commit/c19e7b3496d14b40e71ba892213889fc8cc81d4f)) +* 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](http://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](http://bugs.jqueryui.com/ticket/10129), [31e705a](https://github.com/jquery/jquery-ui/commit/31e705ab324ec830062eee173a112551f7c919ea)) -* Added: `_isDivider()` method. ([#9701](http://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](http://bugs.jqueryui.com/ticket/9991), [b222803](https://github.com/jquery/jquery-ui/commit/b22280385c05eaf10f4d480c546906b85aa011e1)) -* Fixed: Autofocus issue with dialog opened from menu widget. ([#9044](http://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](http://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](http://bugs.jqueryui.com/ticket/9650), [4992fc9](https://github.com/jquery/jquery-ui/commit/4992fc902eae207737be33e5b937980b4765bbf7)) -* Fixed: Refreshing should recheck for menu icons. ([#9377](http://bugs.jqueryui.com/ticket/9377), [91b7b9f](https://github.com/jquery/jquery-ui/commit/91b7b9f9ab2e5baa31e37f34600457599409e161)) -* Fixed: IE 10 renders bullets in submenus. ([#8844](http://bugs.jqueryui.com/ticket/8844), [64a39d9](https://github.com/jquery/jquery-ui/commit/64a39d9b0d5710729653b185eae427853608744b)) -* Fixed: Menu items wiggle in IE8. ([#9995](http://bugs.jqueryui.com/ticket/9995), [b0e8380](https://github.com/jquery/jquery-ui/commit/b0e8380f023f41cb4a1bd3665177b5f0e795c289)) -* Fixed `select` not firing every time. ([#9469](http://bugs.jqueryui.com/ticket/9469), [484e382](https://github.com/jquery/jquery-ui/commit/484e382259f1c1c56b151a97ddf8a894f94d17ea)) +* 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](http://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](http://bugs.jqueryui.com/ticket/9355), [2ba75e2](https://github.com/jquery/jquery-ui/commit/2ba75e2c93638d89e89de52347da0013a7a841b8)) +* 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](http://bugs.jqueryui.com/ticket/9542), [1552fc8](https://github.com/jquery/jquery-ui/commit/1552fc8a05ad351650b2a56c5c31905c671f1cdf)) -* Fixed: Only format the value when there is one. ([#9573](http://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](http://bugs.jqueryui.com/ticket/9703), [796a8b3](https://github.com/jquery/jquery-ui/commit/796a8b37e2b7eae6aa0f7a2fcaa5d8c29331e857)) +* 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](http://bugs.jqueryui.com/ticket/9622), [f5e8041](https://github.com/jquery/jquery-ui/commit/f5e8041ebf1e0b36d67d1716a0cfec44692fabb8)) -* Fixed: Incorrect remote tab detection in IE7. ([#9317](http://bugs.jqueryui.com/ticket/9317), [daf3f0d](https://github.com/jquery/jquery-ui/commit/daf3f0d9af5b29dc090e15d57cf884e3c12f7cad)) -* Fixed: Disabled tabs are still clickable. ([#9413](http://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](http://bugs.jqueryui.com/ticket/9518), [8748658](https://github.com/jquery/jquery-ui/commit/874865842bdbbf5ec48ee41640951e9f103c0f16)) +* 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](http://bugs.jqueryui.com/ticket/9584), [e14f75e](https://github.com/jquery/jquery-ui/commit/e14f75ed480e5b036bb47ab3398d1e0df28a128a)) +* 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](http://bugs.jqueryui.com/ticket/9610), [b9e438d](https://github.com/jquery/jquery-ui/commit/b9e438d07c370ac2d4b198048feb6b6922469f70)) -* Fixed: Preserve the `title` attribute after disabling twice. ([#9719](http://bugs.jqueryui.com/ticket/9719), [0dc84db](https://github.com/jquery/jquery-ui/commit/0dc84db853751f5f0ccfd9f79cbf8355dcc4b09c)) -* Fixed: Memory leak from `remove` event. ([#9531](http://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](http://bugs.jqueryui.com/ticket/8925), [af85dfc](https://github.com/jquery/jquery-ui/commit/af85dfcafb32b7503392ca834eaa9d3162d54b28)) +* 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](http://bugs.jqueryui.com/ticket/9277), [d0c613d](https://github.com/jquery/jquery-ui/commit/d0c613d3a8db7bd44ce70c20e8dc55478699b3d0)) +* 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](http://bugs.jqueryui.com/ticket/9428), [5aa106a](https://github.com/jquery/jquery-ui/commit/5aa106a052e78559e50a4ca464863f5927c43bd5)) +* 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 diff --git a/page/changelog/1.11.1.md b/page/changelog/1.11.1.md index c60b1c8..45bf0ad 100644 --- a/page/changelog/1.11.1.md +++ b/page/changelog/1.11.1.md @@ -17,32 +17,32 @@ Released on August 13, 2014 ### Widget Factory -* Fixed: Improve performance of cleanData method ([#9546](http://bugs.jqueryui.com/ticket/9546), [f7429ed](https://github.com/jquery/jquery-ui/commit/f7429edfe96d322cdec850f7207efba8125767a6)) +* 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](http://bugs.jqueryui.com/ticket/10071), [9bb51d3](https://github.com/jquery/jquery-ui/commit/9bb51d308e0a72bc67db948e92345c826a8f724d)) +* 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](http://bugs.jqueryui.com/ticket/10212), [7594a31](https://github.com/jquery/jquery-ui/commit/7594a3142547e078326872cb0d6e2d7f32f4c808)) -* Fixed: consider offsets from overflow:hidden parents ([#10147](http://bugs.jqueryui.com/ticket/10147), [e9efbc2](https://github.com/jquery/jquery-ui/commit/e9efbc222149ca7c7a5fef2c0fe28b7b1d9be698)) +* 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](http://bugs.jqueryui.com/ticket/4977), [87081b8](https://github.com/jquery/jquery-ui/commit/87081b855c5ded96039d16791a30ff0181fb5a9f)) +* 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](http://bugs.jqueryui.com/ticket/10140), [2779212](https://github.com/jquery/jquery-ui/commit/2779212a0e6e34fdea3f0d442e4d92218ac943fa)) -* Fixed: Fix size/position changes in resize event ([#10351](http://bugs.jqueryui.com/ticket/10351), [5beae72](https://github.com/jquery/jquery-ui/commit/5beae72e7773d35d46195a4359cb8f845dfb0f4f)) -* Fixed: account for padding & border in grids. ([#10437](http://bugs.jqueryui.com/ticket/10437), [7c8790d](https://github.com/jquery/jquery-ui/commit/7c8790dcc881c8e82390bb5abe31fad35afdaaa0)) -* Fixed: Remove accidental exposure of internal data in events ([#10148](http://bugs.jqueryui.com/ticket/10148), [ffe60e3](https://github.com/jquery/jquery-ui/commit/ffe60e39db568f7acc3fff4b1a9f9f3a1d0b7c62)) +* 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)) @@ -50,42 +50,42 @@ Released on August 13, 2014 ### Autocomplete -* Fixed: ESCAPE should not change content of a MultiLine ([#9790](http://bugs.jqueryui.com/ticket/9790), [930bc7d](https://github.com/jquery/jquery-ui/commit/930bc7df666c997add9978d3cc3139559e71ae77)) -* Fixed: Fix styling for combobox demo ([#10059](http://bugs.jqueryui.com/ticket/10059), [d1e327c](https://github.com/jquery/jquery-ui/commit/d1e327c189cb12661f53d6962ece07b31dec86cb)) -* Fixed: Use `$.trim` instead of `jQuery.trim` for consistency ([#10525](http://bugs.jqueryui.com/ticket/10525), [36e4bfd](https://github.com/jquery/jquery-ui/commit/36e4bfd516c10140d8517ed9e2eb067be2e5c837)) +* 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](http://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](http://bugs.jqueryui.com/ticket/8353), [5730374](https://github.com/jquery/jquery-ui/commit/573037423822fa04a1888e3bcc52243b9324c5e2)) -* Fixed: Abstract mouseover logic to avoid explicit event trigger ([#10319](http://bugs.jqueryui.com/ticket/10319), [c399f1f](https://github.com/jquery/jquery-ui/commit/c399f1f77a015d4f269e3bda98720ebea9bb0c7a)) -* Fixed: Show year/month on the same line ([#7953](http://bugs.jqueryui.com/ticket/7953), [98583a6](https://github.com/jquery/jquery-ui/commit/98583a6563e7ae98ed67b5d70db2bff814c11e4e)) +* 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](http://bugs.jqueryui.com/ticket/10152), [69f25db](https://github.com/jquery/jquery-ui/commit/69f25dbff71d9864ce7ce46c47003413f8b7deb2)) -* Fixed: Fix stacking of modal dialog overlays ([#10138](http://bugs.jqueryui.com/ticket/10138), [acfda4b](https://github.com/jquery/jquery-ui/commit/acfda4be521e48c6b61cc458a715ef163892ac36)) +* 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](http://bugs.jqueryui.com/ticket/10134), [e91f38e](https://github.com/jquery/jquery-ui/commit/e91f38ef1ede2a6191e718c6628fd7c34cfe5103)) +* 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](http://bugs.jqueryui.com/ticket/10145), [45e13ed](https://github.com/jquery/jquery-ui/commit/45e13ed208b3533e91d008789d61e5138501428a)) -* Fixed: Preserve text selection when interacting with the widget ([#10144](http://bugs.jqueryui.com/ticket/10144), [749a6a5](https://github.com/jquery/jquery-ui/commit/749a6a56677fe29d2bf777d79811ce8bdd1b5fad)) +* 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](http://bugs.jqueryui.com/ticket/10105), [15baf02](https://github.com/jquery/jquery-ui/commit/15baf024c3352f0c593a49d70a3a87e4bc13c36b)) +* 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](http://bugs.jqueryui.com/ticket/10188), [bef2c45](https://github.com/jquery/jquery-ui/commit/bef2c456cafb60951a71386ed0b21ee7f7ae65c8)) +* 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](http://bugs.jqueryui.com/ticket/10098), [b4fb511](https://github.com/jquery/jquery-ui/commit/b4fb51199dcdaf08d959cfb8a6d5f5a6f8e76d75)) +* Fixed: Work around bad Safari/VoiceOver heuristics ([#10098](https://bugs.jqueryui.com/ticket/10098), [b4fb511](https://github.com/jquery/jquery-ui/commit/b4fb51199dcdaf08d959cfb8a6d5f5a6f8e76d75)) ### Tooltip @@ -93,7 +93,7 @@ Released on August 13, 2014 ## Effects -* Effect: Create a local jQuery variable to make jQuery Color work ([#10199](http://bugs.jqueryui.com/ticket/10199), [2447cab](https://github.com/jquery/jquery-ui/commit/2447cabd598ed4b58587fa5054a0c9f7b9bd9bd6)) +* 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 diff --git a/page/changelog/1.11.2.md b/page/changelog/1.11.2.md index 4c30485..3520982 100644 --- a/page/changelog/1.11.2.md +++ b/page/changelog/1.11.2.md @@ -6,78 +6,78 @@ Released on October 16, 2014 ## Build -* Fixed: Pull in jquery.simulate.js from Bower ([#10563](http://bugs.jqueryui.com/ticket/10563), [aa425ab](https://github.com/jquery/jquery-ui/commit/aa425ab95d6be06337ccb435c1405f6ac38ba8b9)) +* 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](http://bugs.jqueryui.com/ticket/7778), [e12e3e1](https://github.com/jquery/jquery-ui/commit/e12e3e12b19e226b90e4a0ec3848e400a80c8267)) +* 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](http://bugs.jqueryui.com/ticket/10056), [b397294](https://github.com/jquery/jquery-ui/commit/b397294d42e783aacd4cc3a52bbe3aacc0f3f725)) +* 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](http://bugs.jqueryui.com/ticket/9612), [df7e32f](https://github.com/jquery/jquery-ui/commit/df7e32fe3798562ffb86d064444f1e0cc8ac59a8)) -* Fixed: Offset differs between `start` and `drag` events ([#6884](http://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](http://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](http://bugs.jqueryui.com/ticket/7016), [48ea2aa](https://github.com/jquery/jquery-ui/commit/48ea2aadad11938cc5ddbd9a340c4ca1c997550d)) -* Fixed: Account for margins when snapping ([#9724](http://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](http://bugs.jqueryui.com/ticket/7772), [#7430](http://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](http://bugs.jqueryui.com/ticket/9446), [451dded](https://github.com/jquery/jquery-ui/commit/451dded230c3832a1baacc89333727b25c44cfc7)) -* Fixed: Animation issue with `revert` and `connectToSortable` ([#9675](http://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](http://bugs.jqueryui.com/ticket/7734), [#8809](http://bugs.jqueryui.com/ticket/8809), [95546c5](https://github.com/jquery/jquery-ui/commit/95546c5d045f8055b121f24d3e35468e2a570c1b)) -* Fixed: Append divs to iframe parent for `iframefix` ([#9671](http://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](http://bugs.jqueryui.com/ticket/9481), [e8c99b9](https://github.com/jquery/jquery-ui/commit/e8c99b9abf7ca9368668ee5886e469d31ea33c09)) +* 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](http://bugs.jqueryui.com/ticket/6876), [4dad6bb](https://github.com/jquery/jquery-ui/commit/4dad6bb99dae280108338c040d016f795d0da328)) +* 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](http://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](http://bugs.jqueryui.com/ticket/9335), [1cfebf8](https://github.com/jquery/jquery-ui/commit/1cfebf803beedef05e8dcdd54e34d10c412a9a2b)) +* 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](http://bugs.jqueryui.com/ticket/10056), [849c6fd](https://github.com/jquery/jquery-ui/commit/849c6fd5376e12c6093c557bd4836ef0b145f145)) +* 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](http://bugs.jqueryui.com/ticket/10620), [b20387a](https://github.com/jquery/jquery-ui/commit/b20387ab366aba3428dbd54196a74c0b2eb6ea70)) -* Fixed: Month names in Persian locale ([#10562](http://bugs.jqueryui.com/ticket/10562), [233f08e](https://github.com/jquery/jquery-ui/commit/233f08e07fc451cff46dff22ba69420ceac72255)) -* Fixed: French locale ([#10651](http://bugs.jqueryui.com/ticket/10651), [02c37d3](https://github.com/jquery/jquery-ui/commit/02c37d3aef059de80db5a2c2eeb551ed20a4db71), [d85016a](https://github.com/jquery/jquery-ui/commit/d85016abf00685f3dd520031f5920bc6ec970f76)) +* 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](http://bugs.jqueryui.com/ticket/10458), [ddc666c](https://github.com/jquery/jquery-ui/commit/ddc666ce8b95f34539864c0ddd87fee42123cbde)) -* Fixed: Typeahead now accounts for leading whitespace ([#10649](http://bugs.jqueryui.com/ticket/10649), [c48b18b](https://github.com/jquery/jquery-ui/commit/c48b18b388b566b4f6a4d833775db70eb62f4f29)) -* Fixed: Maintain focus on already selected item during typeahead ([#10644](http://bugs.jqueryui.com/ticket/10644), [6b6b49f](https://github.com/jquery/jquery-ui/commit/6b6b49f678706280c5590a5097ef9f0aca359d4b)) -* Fixed: Filter out non-items when typing ([#10571](http://bugs.jqueryui.com/ticket/10571), [e3e5a9f](https://github.com/jquery/jquery-ui/commit/e3e5a9ffa647937d2dd458114e27e04f56bd47d0)) +* 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](http://bugs.jqueryui.com/ticket/10639), [d4a437e](https://github.com/jquery/jquery-ui/commit/d4a437e4b0d91d40eff269a19672a6db9217766e)) +* 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](http://bugs.jqueryui.com/ticket/9376), [6833a31](https://github.com/jquery/jquery-ui/commit/6833a3169775d4c15dd5e68c96bc63ad0187035e)) +* 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](http://bugs.jqueryui.com/ticket/10056), [2e8e52d](https://github.com/jquery/jquery-ui/commit/2e8e52dec1eaa06ed170a0ed9769c7b97129c955)) +* 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](http://bugs.jqueryui.com/ticket/10602), [8825d93](https://github.com/jquery/jquery-ui/commit/8825d93dc877d182cf4a3fce37b6c2593cf08552)) +* 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 index 9f0ca20..01684bb 100644 --- a/page/changelog/1.11.3.md +++ b/page/changelog/1.11.3.md @@ -8,44 +8,44 @@ Released on February 12, 2015 ### Core -* Fixed: Match on exact node name for `:focusable` and `:tabbable` to support custom elements ([#10747](http://bugs.jqueryui.com/ticket/10747), [f1345e3](https://github.com/jquery/jquery-ui/commit/f1345e3900e4ac7e5c496b82c04731ce7535bdf7)) +* 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](http://bugs.jqueryui.com/ticket/8710), [276cd5c](https://github.com/jquery/jquery-ui/commit/276cd5cd8cbef787328335a11ad19864242ccafd), [9db4057](https://github.com/jquery/jquery-ui/commit/9db405798dd5fc8ee603991226916351ec2a0dda)) +* 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](http://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](http://bugs.jqueryui.com/ticket/10748), [7ff9b28](https://github.com/jquery/jquery-ui/commit/7ff9b28de30360e1688c3c1bcf0444def56382ab)) +* 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](http://bugs.jqueryui.com/ticket/9604), [fa460f3](https://github.com/jquery/jquery-ui/commit/fa460f36dc8191e4fe23c02bcbcc7d5006b51d7e)) +* 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](http://bugs.jqueryui.com/ticket/10703), [dc2b17d](https://github.com/jquery/jquery-ui/commit/dc2b17d62f77e6f9795eecdebb0d37603ffd285b)) +* 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](http://bugs.jqueryui.com/ticket/10668), [47ceff8](https://github.com/jquery/jquery-ui/commit/47ceff8dbd1f64c081f8fd136d86a5db23fef0ff)) -* Fixed: Month names and `firstDay` value in Arabic locale ([#10035](http://bugs.jqueryui.com/ticket/10035), [9afe0f7](https://github.com/jquery/jquery-ui/commit/9afe0f7b8a1fc0c282f0561899e4195f601c8538)) +* 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](http://bugs.jqueryui.com/ticket/10684), [dc2c948](https://github.com/jquery/jquery-ui/commit/dc2c948dd621c4ce9397789f880370904e75f233)) +* 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](http://bugs.jqueryui.com/ticket/10721), [dfa3a9f](https://github.com/jquery/jquery-ui/commit/dfa3a9f8c983f5206d49000a170b42581fcc5478)) +* 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](http://bugs.jqueryui.com/ticket/9621), [9dd1e73](https://github.com/jquery/jquery-ui/commit/9dd1e733f3a9526344e226e07bfdbdd2bfba5ea9)) +* 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 index a2a4b5f..5e3348f 100644 --- a/page/changelog/1.11.4.md +++ b/page/changelog/1.11.4.md @@ -8,31 +8,31 @@ Released on March 11, 2015 ### Draggable -* Fixed: Ensure parent is correct after dragging through sortable ([#10669](http://bugs.jqueryui.com/ticket/10669), [b371063](https://github.com/jquery/jquery-ui/commit/b3710631e8d21ef9165ef9f037590e1d250350b4)) +* 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](http://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](http://bugs.jqueryui.com/ticket/4666), [31e7099](https://github.com/jquery/jquery-ui/commit/31e7099709a3bccaae8f83d397951096835269a2)) +* Fixed: Allow jQuery instances as handles outside of the resizable element ([#9658](https://bugs.jqueryui.com/ticket/9658), [65f31c2](https://github.com/jquery/jquery-ui/commit/65f31c2ead48755ac4cdffb95478a2f6d02801ff)) +* Fixed: `alsoResize` supports more than one element of a jQuery instance ([#4666](https://bugs.jqueryui.com/ticket/4666), [31e7099](https://github.com/jquery/jquery-ui/commit/31e7099709a3bccaae8f83d397951096835269a2)) ### Sortable -* Fixed: Append a `` with `` to the placeholder of `` elements ([#10682](http://bugs.jqueryui.com/ticket/10682), [ddc1b32](https://github.com/jquery/jquery-ui/commit/ddc1b32a45746db7cc8e96de92818936464b323b)) -* Fixed: Redetermine floating flag when recalculating positions ([#7498](http://bugs.jqueryui.com/ticket/7498), [189f1d4](https://github.com/jquery/jquery-ui/commit/189f1d476c2d6f53c88f9e92bdaffbc64ed9c572)) +* Fixed: Append a `` with `` to the placeholder of `` elements ([#10682](https://bugs.jqueryui.com/ticket/10682), [ddc1b32](https://github.com/jquery/jquery-ui/commit/ddc1b32a45746db7cc8e96de92818936464b323b)) +* Fixed: Redetermine floating flag when recalculating positions ([#7498](https://bugs.jqueryui.com/ticket/7498), [189f1d4](https://github.com/jquery/jquery-ui/commit/189f1d476c2d6f53c88f9e92bdaffbc64ed9c572)) ## Widgets ### Accordion -* Fixed: Handle `box-sizing: border-box` in animations ([#9264](http://bugs.jqueryui.com/ticket/9264), [de75b40](https://github.com/jquery/jquery-ui/commit/de75b40835ecb82360321dafbd87d66db5404a4a)) +* Fixed: Handle `box-sizing: border-box` in animations ([#9264](https://bugs.jqueryui.com/ticket/9264), [de75b40](https://github.com/jquery/jquery-ui/commit/de75b40835ecb82360321dafbd87d66db5404a4a)) ### Dialog -* Fixed: Stop tracking instance in `destroy()` to avoid memory leaks ([#11125](http://bugs.jqueryui.com/ticket/11125), [04ab6e0](https://github.com/jquery/jquery-ui/commit/04ab6e0388f248b2490c2bc663528657ba39051a)) +* Fixed: Stop tracking instance in `destroy()` to avoid memory leaks ([#11125](https://bugs.jqueryui.com/ticket/11125), [04ab6e0](https://github.com/jquery/jquery-ui/commit/04ab6e0388f248b2490c2bc663528657ba39051a)) ### Slider -* Fixed: Proper handling with float step ([#11286](http://bugs.jqueryui.com/ticket/11286), [0f99e9c](https://github.com/jquery/jquery-ui/commit/0f99e9c9693b05199d9f8c1137606c7033e19f38)) +* Fixed: Proper handling with float step ([#11286](https://bugs.jqueryui.com/ticket/11286), [0f99e9c](https://github.com/jquery/jquery-ui/commit/0f99e9c9693b05199d9f8c1137606c7033e19f38)) ### Tooltip -* Fixed: Hiding with dynamically loaded content ([#8740](http://bugs.jqueryui.com/ticket/8740), [88291ff](https://github.com/jquery/jquery-ui/commit/88291ffc4d6a5f4762ae65e42de607f5588101dd)) +* Fixed: Hiding with dynamically loaded content ([#8740](https://bugs.jqueryui.com/ticket/8740), [88291ff](https://github.com/jquery/jquery-ui/commit/88291ffc4d6a5f4762ae65e42de607f5588101dd)) diff --git a/page/changelog/1.12.0-beta.1.md b/page/changelog/1.12.0-beta.1.md new file mode 100644 index 0000000..6de5769 --- /dev/null +++ b/page/changelog/1.12.0-beta.1.md @@ -0,0 +1,260 @@ + + +Released on December 23, 2015 + +## General + +* Removed: Support for jQuery 1.6.x ([#10723](https://bugs.jqueryui.com/ticket/10723)) +* Removed: Support for IE7 ([#9838](https://bugs.jqueryui.com/ticket/9838), [6d75893](https://github.com/jquery/jquery-ui/commit/6d7589351eae1e180579fc0c87885e5ab7a73f48)) +* Removed: Support for IE8, IE9, and IE10. Existing workarounds will be left in place until 1.14.0. +* Deprecated: Buttonset widget; use new Controlgroup widget instead +* Added: Checkboxradio widget +* Added: Controlgroup widget +* Added: Form reset mixin ([#12638](https://bugs.jqueryui.com/ticket/12638), [ad98cb1](https://github.com/jquery/jquery-ui/commit/ad98cb167350b8d929b71bfeefc904c8964893dd)) +* Added: `.labels()` method as a shim for `control.labels` ([#12475](https://bugs.jqueryui.com/ticket/12475)) +* Added: New demo infrastructure using a require.js bootstrap ([#10119](https://bugs.jqueryui.com/ticket/10119), [7336a58](https://github.com/jquery/jquery-ui/commit/7336a5869ceb2bf27779b5f089277c365fc7d278)) +* Added: `device-width` viewport meta to all demos ([5cbb419](https://github.com/jquery/jquery-ui/commit/5cbb419f2432979a2075346ec94ea7da97b09fb2)) +* Added: Support for custom builds of jQuery which exclude event alias and deprecated modules ([#12770](https://bugs.jqueryui.com/ticket/12770), [6fd9fc9](https://github.com/jquery/jquery-ui/commit/6fd9fc92a372e222e3543f52979c601ac88ad81e)) +* Added: Delegate to base `_getCreateOptions()` in all widgets to support base widget extensions ([e19d462](https://github.com/jquery/jquery-ui/commit/e19d462f16f619dbc56824e00d5c409ccd677f8d)) +* Changed: Split functions out of core into their own files ([#9647](https://bugs.jqueryui.com/ticket/9647)) + +## Build + +* Added: Publish to npm ([#11101](https://bugs.jqueryui.com/ticket/11101), [ab0bb87](https://github.com/jquery/jquery-ui/commit/ab0bb87634c19a47211d9e46afc0c09fbf49ee29)) +* Added: Webpack support ([#14375](https://bugs.jqueryui.com/ticket/14375), [6308a26](https://github.com/jquery/jquery-ui/commit/6308a261fd5d1be2362863e6a59fede4420d9f8c)) +* Fixed: AMD loading doesn't work with minified files ([#10674](https://bugs.jqueryui.com/ticket/10674), [47a32fb](https://github.com/jquery/jquery-ui/commit/47a32fb5b3c190123937e0178900ef754c3e220d)) +* Changed: Remove manifest files; move metadata to source files ([b5f1ffd](https://github.com/jquery/jquery-ui/commit/b5f1ffdea4c3c4b41936e56d4cb23ca8acb2aaa8)) +* Changed: Move widgets and effects into their own folders ([#13885](https://bugs.jqueryui.com/ticket/13885)) + +## Core & Utilities + +### UI Core + +* Removed: `.zIndex()` ([#9156](https://bugs.jqueryui.com/ticket/9156), [faf87d9](https://github.com/jquery/jquery-ui/commit/faf87d992455280182edef015c8733313744a739)) +* Removed: `.focus( delay )` ([#9649](https://bugs.jqueryui.com/ticket/9649), [89ed68f](https://github.com/jquery/jquery-ui/commit/89ed68fb05ed8dff281d0de941a6d1164f2e66f1)) +* Added: Methods to work around IE active element bugs ([f330278](https://github.com/jquery/jquery-ui/commit/f33027840cdac5152599da66635981bbe68c6bda)) +* Added: `.labels()`, `.form()`, and `$.ui.escapeSelector()` methods ([803eaf2](https://github.com/jquery/jquery-ui/commit/803eaf29f732a68793b806356096fe849b9f470b)) +* Fixed: Remove ancestor visibility requirement from `:focusable` selector ([#14596](https://bugs.jqueryui.com/ticket/14596), [0db243a](https://github.com/jquery/jquery-ui/commit/0db243a7369bc1e642a83d8b84be9437c360f7e2), [d302596](https://github.com/jquery/jquery-ui/commit/d3025968f349c37a8ca41bfc63ee1b37d9d7354f)) +* Fixed: Work around more IE `activeElement` bugs ([0de27b0](https://github.com/jquery/jquery-ui/commit/0de27b0609e8f6f9751ab7cce28492e18206d86d)) +* Fixed: Handle IE11 bug with `document.activeElement` in iframes ([#11539](https://bugs.jqueryui.com/ticket/11539), [76c2755](https://github.com/jquery/jquery-ui/commit/76c27556f48bea48d3787c241d35e190d46c3245)) +* Fixed: Feature detecting `.outerWidth()` setter API is expensive ([#11197](https://bugs.jqueryui.com/ticket/11197), [c077e0a](https://github.com/jquery/jquery-ui/commit/c077e0a347826c7acca4ca2f775ca59e3b5f8d07)) +* Fixed: Match on exact node name for `:focusable` and `:tabbable` ([#10747](https://bugs.jqueryui.com/ticket/10747), [c66842b](https://github.com/jquery/jquery-ui/commit/c66842b45e032ac09f73fcd767e78390d7191b6f)) +* Changed: Move uniqueId into its own module ([37602d7](https://github.com/jquery/jquery-ui/commit/37602d7e645964e4f5e4d06ef313081c8eb60bf1)) +* Changed: Move version and creation of the ui namespace into its own module ([3d71fb8](https://github.com/jquery/jquery-ui/commit/3d71fb83fe02a307823594f5905be9848cfa5506)) +* Changed: Move data selector from core into its own module ([f0260fd](https://github.com/jquery/jquery-ui/commit/f0260fd91b593ae56f68e1f33ca8496c1c4b0467)) +* Changed: Move disable-selection into its own module ([4916487](https://github.com/jquery/jquery-ui/commit/4916487440b0c087e6e5996522cf478af26df591)) +* Changed: Move focusable into its own module ([475ccef](https://github.com/jquery/jquery-ui/commit/475ccefd97ec24d76cfa6767c007501c14934ba6)) +* Changed: Move escape selector into its own module ([47188b7](https://github.com/jquery/jquery-ui/commit/47188b792617a0030ccec07c6df27335dc3aa430)) +* Changed: Move form method into its own module ([64076ec](https://github.com/jquery/jquery-ui/commit/64076ecfb5870130d89733ff34668fdd18683f9b)) +* Changed: Move $.ui.ie into its own module ([677fdbf](https://github.com/jquery/jquery-ui/commit/677fdbf7bef71d12998191e0b97c2c5cd34349be)) +* Changed: Move labels into its own module ([2c92f10](https://github.com/jquery/jquery-ui/commit/2c92f1074718ee23081765da0b86a8e3fe906874)) +* Changed: Move backcompat for core 1.7 into its own module ([2d03e12](https://github.com/jquery/jquery-ui/commit/2d03e1280a3671468aba6d48d60ba9381fe90e19)) +* Changed: Move plugin into its own module ([0a9df3a](https://github.com/jquery/jquery-ui/commit/0a9df3af52a66fe5e8f23622503020f0bcc6ded9)) +* Changed: Move safeActiveElement into its own module ([2b84531](https://github.com/jquery/jquery-ui/commit/2b84531ae9331f60e4d739fabca6d78abde89ae1)) +* Changed: Move safe blur into its own module ([26fc3b5](https://github.com/jquery/jquery-ui/commit/26fc3b5587ed117a972224ac661255998e59f9e1)) +* Changed: Move tabbable into its own module ([6064a5e](https://github.com/jquery/jquery-ui/commit/6064a5e0487428d53bd694dcebce952730992c46)) +* Changed: Move scrollParent into its own module ([72bfafb](https://github.com/jquery/jquery-ui/commit/72bfafbedea4973b803abeefc97637f246b11c89)) +* Changed: Move keyCode into its own module ([bddb7ef](https://github.com/jquery/jquery-ui/commit/bddb7efe000cf60e455d48f28acef0ef2f295d9d)) + +### Mouse + +* Deprecated: `distance` and `delay` options ([#10615](https://bugs.jqueryui.com/ticket/10615)) +* Fixed: Don't stop propagation of `mouseup` ([#10818](https://bugs.jqueryui.com/ticket/10818), [a1d6920](https://github.com/jquery/jquery-ui/commit/a1d69208bad175a27c7b50c27fdc10001563cd4d)) +* Fixed: Delay timeout clearing upon `mouseup` ([#14458](https://bugs.jqueryui.com/ticket/14458), [9b82001](https://github.com/jquery/jquery-ui/commit/9b82001a70a6273df037db9e602080011d0fd7ba)) +* Fixed: Ignore `mousemove` events triggered by key presses in Safari ([#14461](https://bugs.jqueryui.com/ticket/14461), [17b5386](https://github.com/jquery/jquery-ui/commit/17b5386e8cb48c522ddb581a001fef5434e57f9a)) + +### Position + +* Fixed: Fraction support test doesn't work when loaded outside of `head` ([#9898](https://bugs.jqueryui.com/ticket/9898), [3970e8c](https://github.com/jquery/jquery-ui/commit/3970e8c68146a3645f09d54735a40d5cf7eeef9e)) +* Fixed: Flip collision handling fails in some situations ([#8710](https://bugs.jqueryui.com/ticket/8710), [ebaaca7](https://github.com/jquery/jquery-ui/commit/ebaaca7206cae201ec069dbaed85bc8d6beeab32)) +* Fixed: Passing `window` doesn't work with new versions of jQuery ([#13493](https://bugs.jqueryui.com/ticket/13493), [b3a9b13](https://github.com/jquery/jquery-ui/commit/b3a9b13a218cd90b7cf67be5d5f8ad6e76c557b0)) + +### Widget Factory + +* Added: Support for mixins ([#12601](https://bugs.jqueryui.com/ticket/12601), [556b271](https://github.com/jquery/jquery-ui/commit/556b2710f0f09b76909b92c751edc3f4243fa5c0)) +* Added: `classes` option and `_addClass()`, `_removeClass()`, `_toggleClass()` methods ([#7053](https://bugs.jqueryui.com/ticket/7053), [c192d40](https://github.com/jquery/jquery-ui/commit/c192d4086d9bbaf09d5f870857af30c60a427e22)) +* Fixed: Call `._setOptionDisabled()` on init if the widget is disabled (consistent handling of `disabled` option on create and update) ([#9151](https://bugs.jqueryui.com/ticket/9151), [7dde5c9](https://github.com/jquery/jquery-ui/commit/7dde5c9d75148cdca7cf86ff0c6e310fdc5a4054)) + +## Interactions + +### Draggable + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [e9bb449](https://github.com/jquery/jquery-ui/commit/e9bb449b5dde255e4a79ea6768864ba26529ed6c)) +* Fixed: Ensure parent is correct after dragging through sortable ([#10669](https://bugs.jqueryui.com/ticket/10669), [d8077dc](https://github.com/jquery/jquery-ui/commit/d8077dc562bfca60906a160e20186608a10b7a87)) +* Fixed: Draggable elements receive an explicit height in Firefox only ([10725](https://bugs.jqueryui.com/ticket/10725), [d0ea32e](https://github.com/jquery/jquery-ui/commit/d0ea32e3ad613eaaa523d0c88c776dab2b26b25f)) + +### Droppable + +* Removed: `$.ui.intersect()` helper method ([#10534](https://bugs.jqueryui.com/ticket/10534), [20a6368](https://github.com/jquery/jquery-ui/commit/20a636844961a1fb2de7a892ab28890091822e6a)) +* Deprecated: `hoverClass` and `activeClass` options; use `classes` option instead ([#12162](https://bugs.jqueryui.com/ticket/12162)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [f58277a](https://github.com/jquery/jquery-ui/commit/f58277a521ae41b1d3e054a419ef5fda85e7db21)) + +### Resizable + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2665aa0](https://github.com/jquery/jquery-ui/commit/2665aa01469daf10dacf76f60a7e5f39f2e0a3de)) +* Added: Modified to allow jquery objects as handles ([#9658](https://bugs.jqueryui.com/ticket/9658), [18e301f](https://github.com/jquery/jquery-ui/commit/18e301f4e29c2080e9aa9dac87c00dee137cb6c9)) +* Fixed: Correct width when grid approaches zero ([#10590](https://bugs.jqueryui.com/ticket/10590), [9493839](https://github.com/jquery/jquery-ui/commit/9493839f23b6ff71aacb9cb8fe8fde6c8d0ecd61)) +* Fixed: Don't use CSS shorthand properties with `.css()` ([#7766](https://bugs.jqueryui.com/ticket/7766), [6a681c2](https://github.com/jquery/jquery-ui/commit/6a681c2c13afb6e76a6881b9dae928b9ff66a395)) +* Fixed: Don't round dimensions ([0ff7a16](https://github.com/jquery/jquery-ui/commit/0ff7a1653407d2a91cff721528a0a435dbf12503)) +* Fixed: `alsoResize` supports more than one element of a jQuery selection ([#4666](https://bugs.jqueryui.com/ticket/4666), [19783fd](https://github.com/jquery/jquery-ui/commit/19783fd3e6a6e6e02a2030028e8820076c3b1295)) +* Fixed: With helper, dragging horizontally or vertically only reduces opposite direction by 1px ([#11113](https://bugs.jqueryui.com/ticket/11113), [7df2f19](https://github.com/jquery/jquery-ui/commit/7df2f1905a1ec4727f00451f8d794aeb35ec4159)) +* Fixed: Remove data for `ui-resizable-alsoresize` on stop ([#14788](https://bugs.jqueryui.com/ticket/14788), [7cc88bf](https://github.com/jquery/jquery-ui/commit/7cc88bfe327ba826ffa5199c96c91178862b22f0)) +* Fixed: Match on exact node name ([#10748](https://bugs.jqueryui.com/ticket/10748), [faefab8](https://github.com/jquery/jquery-ui/commit/faefab842bc79f212ccee227b7a37c7630b1573c)) + +### Selectable + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2a7873d](https://github.com/jquery/jquery-ui/commit/2a7873dd5711db472a87f749e698e80c49ccf8cd)) + +### Sortable + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [90c27b4](https://github.com/jquery/jquery-ui/commit/90c27b4b5130fff9abbfea671c193c59e4bf8850)) +* Added: Support for iframes ([#9604](https://bugs.jqueryui.com/ticket/9604), [17c7f69](https://github.com/jquery/jquery-ui/commit/17c7f698a2894211bbb5f2d63750f5b3b84bb0ab)) +* Fixed: Redetermine floating flag when recalculating positions ([#7498](https://bugs.jqueryui.com/ticket/7498), [f656aeb](https://github.com/jquery/jquery-ui/commit/f656aebe3f99356b7eb91ffdafe6689ecc8fb4ae)) +* Fixed: Append a `` with `` to the placeholder of `` elements ([#10682](https://bugs.jqueryui.com/ticket/10682), [962e05d](https://github.com/jquery/jquery-ui/commit/962e05dc1d0a51a7458bc44725417aa3462cd89a)) + +## Widgets + +### Accordion + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [7c6a7d7](https://github.com/jquery/jquery-ui/commit/7c6a7d71e98cbeea21bfc1560f8a82484a3c9510)) +* Fixed: Set `aria-expanded` when collapsing ([#10703](https://bugs.jqueryui.com/ticket/10703), [ab798cb](https://github.com/jquery/jquery-ui/commit/ab798cb4646cfeb79f1949eb70cd64813a248d87)) +* Fixed: Handle `box-sizing: border-box` in animations ([#9264](https://bugs.jqueryui.com/ticket/9264), [4b017b4](https://github.com/jquery/jquery-ui/commit/4b017b414f107ed3c1dafc7601b61cbcd76acf61)) + +### Autocomplete + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [cff1fb2](https://github.com/jquery/jquery-ui/commit/cff1fb2a13e18403c02ba516e08db3a5b21a8b6c)) +* Added: Include native dialogs in `appendTo` logic (`ui-front` walking) ([#10739](https://bugs.jqueryui.com/ticket/10739), [dc67037](https://github.com/jquery/jquery-ui/commit/dc6703756d388b1f49be0637473a8d55b5ce9270)) +* Fixed: Close the menu on any outside interactions ([#6642](https://bugs.jqueryui.com/ticket/6642), [548fbf5](https://github.com/jquery/jquery-ui/commit/548fbf570caa5fdee973bbbe8ac2d36b0338c2b9)) +* Fixed: Restore focus after clicking a menu item, if necessary ([#9201](https://bugs.jqueryui.com/ticket/9201), [581bfb5](https://github.com/jquery/jquery-ui/commit/581bfb55bf4f4f614a6e0c0ac545cf1aa7d29d0a)) +* Fixed: Use a `div` instead of a `span` for the live region ([#14587](https://bugs.jqueryui.com/ticket/14587), [ce50178](https://github.com/jquery/jquery-ui/commit/ce5017843036151d545fba76062655fda69eac62)) + +### Button + +* Deprecated: `icons` option; replaced with `icon` and `iconPosition` ([#14744](https://bugs.jqueryui.com/ticket/14744)) +* Deprecated: Support for toggle buttons; use new Checkboxradio widget ([#14746](https://bugs.jqueryui.com/ticket/14746)) +* Deprecated: `text` option; renamed to `showLabel` ([#8203](https://bugs.jqueryui.com/ticket/8203)) +* Added: Support the HTML5 form attribute ([#9973](https://bugs.jqueryui.com/ticket/9973), [e77fbe5](https://github.com/jquery/jquery-ui/commit/e77fbe5388abeeb1d0f8f377161a0fc039897594)) +* Fixed: Remove padding on text element for icon only buttons ([#14056](https://bugs.jqueryui.com/ticket/14056), [1f6ea8b](https://github.com/jquery/jquery-ui/commit/1f6ea8b78ac859bfecbdcdd092c2df3e2eec90ed)) +* Fixed: Inconsistent focus handling across browsers ([#7902](https://bugs.jqueryui.com/ticket/7902)) +* Fixed: Pixel positioning for button widget with radio buttons is incorrect ([#8827](https://bugs.jqueryui.com/ticket/8827)) +* Fixed: Use `control.labels` if available ([#9541](https://bugs.jqueryui.com/ticket/9541)) +* Fixed: Minor mouse movements cause state inconsistencies in Firefox ([#9990](https://bugs.jqueryui.com/ticket/9990)) +* Fixed: Selecting text causes an inconsistent state ([#10726](https://bugs.jqueryui.com/ticket/10726)) +* Fixed: Radio buttons do not have appropriate focus styling ([#9505](https://bugs.jqueryui.com/ticket/9505)) + +### Buttonset + +* Deprecated: Buttonset widget; replaced with Controlgroup ([#14747](https://bugs.jqueryui.com/ticket/14747)) +* Fixed: Incorrect button width/alignment in IE8 ([#7583](https://bugs.jqueryui.com/ticket/7583)) + +### Checkboxradio - NEW! + +New checkboxradio widget. Check out the [checkboxradio documentation](//api.jqueryui.com/1.12/checkboxradio/) for more details. + +### Controlgroup - NEW! + +New controlgroup widget. Check out the [controlgroup documentation](//api.jqueryui.com/1.12/controlgroup/) for more details. + +### Datepicker + +* Fixed: Date range demo when entering values manually ([#11143](https://bugs.jqueryui.com/ticket/11143), [fac8e51](https://github.com/jquery/jquery-ui/commit/fac8e517d7ea4c65bad21a65ad59eef1e4379efb)) +* Fixed: Date format for `ko` locale ([#14595](https://bugs.jqueryui.com/ticket/14595), [2d4b4ef](https://github.com/jquery/jquery-ui/commit/2d4b4ef360728ab687412c159099b99984231ece)) +* Fixed: Translate `weekHeader` in `ko` locale ([e5c3004](https://github.com/jquery/jquery-ui/commit/e5c3004c8e9613c290a997a75285171cae64cb90)) +* Fixed: Month names and `firstDay` value in Arabic locale ([#10035](https://bugs.jqueryui.com/ticket/10035), [06231cf](https://github.com/jquery/jquery-ui/commit/06231cf7622fe112703c38535df71aa7f100ef7d)) +* Fixed: Remove unused variable ([#14416](https://bugs.jqueryui.com/ticket/14416), [eec0cfd](https://github.com/jquery/jquery-ui/commit/eec0cfd7fe75f0e52bc5802d8c294a2bccd722c7)) +* Fixed: `datepicker_instActive` released on instance destroy ([#10668](https://bugs.jqueryui.com/ticket/10668), [e5e3ca4](https://github.com/jquery/jquery-ui/commit/e5e3ca4240fbae9684f689ec6e00882ec0211922)) + +### Dialog + +* Deprecated: `dialogClass` option; use `classes` option instead ([#12161](https://bugs.jqueryui.com/ticket/12161)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [6f4884f](https://github.com/jquery/jquery-ui/commit/6f4884f6f5b422bacbb20dbd82d90d351a985a4b)) +* Fixed: Selectmenu and autocomplete menus are cut off ([#10543](https://bugs.jqueryui.com/ticket/10543), [912eb62](https://github.com/jquery/jquery-ui/commit/912eb62ccb77059148a1fe14bdb57b7f9e44a14c)) +* Fixed: Removal of event listener for modal dialogs ([#13649](https://bugs.jqueryui.com/ticket/13649), [62446d9](https://github.com/jquery/jquery-ui/commit/62446d957efb69cd53015919edf71501fcbd2599)) +* Fixed: Escape `closeText` option before passing it to button ([9644e7b](https://github.com/jquery/jquery-ui/commit/9644e7bae9116edaf8d37c5b38cb32b892f10ff6)) +* Fixed: Stop tracking instance in `destroy()` to avoid memory leaks ([#11125](https://bugs.jqueryui.com/ticket/11125), [ec1f393](https://github.com/jquery/jquery-ui/commit/ec1f393c39aa5bbac1158acf692271f8ce9518ce)) + +### Menu + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2ebef69](https://github.com/jquery/jquery-ui/commit/2ebef69efe96a5b6057bdedd8876a76661bde482)) +* Fixed: Use `ui-state-active` consistently ([#10692](https://bugs.jqueryui.com/ticket/10692), [0bbd156](https://github.com/jquery/jquery-ui/commit/0bbd1569182bc03e8dc4f5f8aa203e8edbe15f99)) +* Fixed: Ignore bubbled `mouseenter` events on parent items ([#11641](https://bugs.jqueryui.com/ticket/11641), [c770605](https://github.com/jquery/jquery-ui/commit/c770605db05347edfa9c6224aebd42974092ed22)) +* Fixed: `ui-state-focus` styling for submenus ([#10162](https://bugs.jqueryui.com/ticket/10162), [de2ef2a](https://github.com/jquery/jquery-ui/commit/de2ef2a585447cf75fc8d4a734c12aa2bbd028c2)) + +### Progressbar + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [ea35ded](https://github.com/jquery/jquery-ui/commit/ea35ded6ed12747d88bf163c3b7fa15506ef521a)) + +# Selectmenu + +* Added: Include native dialogs in `appendTo` logic (`ui-front` walking) ([#10739](https://bugs.jqueryui.com/ticket/10739), [dc67037](https://github.com/jquery/jquery-ui/commit/dc6703756d388b1f49be0637473a8d55b5ce9270)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [3483486](https://github.com/jquery/jquery-ui/commit/3483486a153f6f7b3a8bbe9783735eb63adfd033)) +* Added: `_renderButtonItem()` method ([#10142](https://bugs.jqueryui.com/ticket/10142), [fb4124b](https://github.com/jquery/jquery-ui/commit/fb4124b7af4e87712eca9893f7aefb5fee7905de)) +* Added: Support `width: false` and default to `14em` ([#11198](https://bugs.jqueryui.com/ticket/11198), [af4c35d](https://github.com/jquery/jquery-ui/commit/af4c35df9d1cf4c15d57b3789711026360785831)) +* Fixed: Copy title attributes ([#10435](https://bugs.jqueryui.com/ticket/10435), [9793739](https://github.com/jquery/jquery-ui/commit/979373983babce7122d98c4f3919426735555d61)) +* Fixed: Calling `refresh()` after removing all options throws an error ([#10662](https://bugs.jqueryui.com/ticket/10662), [65584c1](https://github.com/jquery/jquery-ui/commit/65584c1640f8c7430587738c3c4cd7dd8010a2a5)) +* Fixed: Properly parse value from options ([#10684](https://bugs.jqueryui.com/ticket/10684), [809cc0f](https://github.com/jquery/jquery-ui/commit/809cc0f8d0c07c2be44942b3010bba1f9ce91be8)) +* Fixed: Handle form resets ([#12236](https://bugs.jqueryui.com/ticket/12236), [39853fd](https://github.com/jquery/jquery-ui/commit/39853fda45a409e9dc47d7358fbd9b03ad1d33b5)) +* Fixed: Content differs when created or refreshed when overriding `_renderItem()` ([#11054](https://bugs.jqueryui.com/ticket/11054), [fb4124b](https://github.com/jquery/jquery-ui/commit/fb4124b7af4e87712eca9893f7aefb5fee7905de) + +### Slider + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [491bb9c](https://github.com/jquery/jquery-ui/commit/491bb9c7f4929eb574e0ab6116a5b22562446734)) +* Added: Pass handle index to events ([#7630](https://bugs.jqueryui.com/ticket/7630), [6111b17](https://github.com/jquery/jquery-ui/commit/6111b17710ab4e14bb119e735de9cfa9285badab)) +* Fixed: Handle order when setting values of range slider to max ([#9046](https://bugs.jqueryui.com/ticket/9046), [dff1c74](https://github.com/jquery/jquery-ui/commit/dff1c74dd4c0fd6b951c7c183bebae09f9f229f6)) +* Fixed: Proper animation of range ([#9459](https://bugs.jqueryui.com/ticket/9459), [bf03479](https://github.com/jquery/jquery-ui/commit/bf03479cc14aa54c2e674cad87bf75c8126cb86f)) +* Fixed: Modified to allow value to reach max value with float step ([#10721](https://bugs.jqueryui.com/ticket/10721), [ae1d6d5](https://github.com/jquery/jquery-ui/commit/ae1d6d5f90236405023964bb3061eccd6c625e39), [#11286](https://bugs.jqueryui.com/ticket/11286), [60c00cd](https://github.com/jquery/jquery-ui/commit/60c00cd4ecdab41f44e125efe2679223e9cd5535)) +* Fixed: Range fills all space after changing orientation ([#12205](https://bugs.jqueryui.com/ticket/12205), [897a238](https://github.com/jquery/jquery-ui/commit/897a238332110c5c1a58ee9a0db5bf4e54fc3059)) +* Fixed: Pass 0 value if slider reaches it ([#12196](https://bugs.jqueryui.com/ticket/12196), [adcc8ef](https://github.com/jquery/jquery-ui/commit/adcc8eff431847b4897666369310cb83275a8282)) + +### Spinner + +* Deprecated: `_uiSpinnerHtml()` and `_buttonHtml()` extension points ([#11097](https://bugs.jqueryui.com/ticket/11097), [d4719bf](https://github.com/jquery/jquery-ui/commit/d4719bf6160a0c99273abddc42e39a734e9943a2)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [28dccda](https://github.com/jquery/jquery-ui/commit/28dccda3776c586052d787dd77e0abdbf1b68a0d)) +* Fixed: Add padding to input to give consistent visual style ([#13997](https://bugs.jqueryui.com/ticket/13997), [caf6f2d](https://github.com/jquery/jquery-ui/commit/caf6f2dc84295878f0a692b540e6f910b2a1d505)) + +### Tabs + +* Deprecated: `ui-tab` class; use `ui-tabs-tab` ([#12061](https://bugs.jqueryui.com/ticket/12061), [74ccbc1](https://github.com/jquery/jquery-ui/commit/74ccbc18a414be9f78f6765b2b6c8be29c5019a9)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [aaddfbf](https://github.com/jquery/jquery-ui/commit/aaddfbfa8b3bdb0374540d7dd1e13a708bdb00aa)) +* Fixed: Use `$.ui.escapeSelector()` to avoid invalid selectors ([1ee8e23](https://github.com/jquery/jquery-ui/commit/1ee8e230bdc6036bec1e28573c67e2e9ca67252c)) +* Fixed: Suppress automatic activation when navigating with COMMAND ([#9621](https://bugs.jqueryui.com/ticket/9621), [6a242ab](https://github.com/jquery/jquery-ui/commit/6a242ab4ebdcec265826b959fa27881dcf462c96)) + +### Tooltip + +* Deprecated: `tooltipClass` option; use `classes` option instead ([#12167](https://bugs.jqueryui.com/ticket/12167)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [9d71547](https://github.com/jquery/jquery-ui/commit/9d71547394f9464e5af1f0c77e56917d0ba5abb6)) +* Added: Accept `HTMLElement` and `jQuery` instances for the `content` option ([#9278](https://bugs.jqueryui.com/ticket/9278), [42099e4](https://github.com/jquery/jquery-ui/commit/42099e44610face58172ed0ed27115fb2b84ab50)) +* Fixed: Does not display in foreground when used in a `` element ([#10739](https://bugs.jqueryui.com/ticket/10739), [8cf9879](https://github.com/jquery/jquery-ui/commit/8cf98798a58afb7197bce0d6ca1c5b658ae04011)) +* Fixed: Use `show.delay` update only when `track` option is active to reduce CPU usage ([#14682](https://bugs.jqueryui.com/ticket/14682), [d573232](https://github.com/jquery/jquery-ui/commit/d5732327078709c3680385c79a2106f263009f84)) +* Fixed: Content cannot contain checked radio button ([#11272](https://bugs.jqueryui.com/ticket/11272), [2cef124](https://github.com/jquery/jquery-ui/commit/2cef124bf27ce89f1fbfc493352ebfd895b40822)) +* Fixed: Does not hide consistently with dynamically loaded content ([#8740](https://bugs.jqueryui.com/ticket/8740), [c4e367b](https://github.com/jquery/jquery-ui/commit/c4e367bb31c21d7c8b2701c626a92a2f13be5af4)) + +## Effects + +* Deprecated: Transfer effect; replaced with `.transfer()` plugin ([#14749](https://bugs.jqueryui.com/ticket/14749), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Added: [`$.effects.define()`](//api.jqueryui.com/1.12/jQuery.effects.define/) +* Added: [`$.effects.scaledDimensions()`](//api.jqueryui.com/1.12/jQuery.effects.scaledDimensions/) +* Added: [`$.effects.clipToBox()`](//api.jqueryui.com/1.12/jQuery.effects.clipToBox/) +* Added: [`$.effects.saveStyle()`](//api.jqueryui.com/1.12/jQuery.effects.saveStyle/) +* Added: [`$.effects.restoreStyle()`](//api.jqueryui.com/1.12/jQuery.effects.restoreStyle/) +* Added: [`$.effects.createPlaceholder()`](//api.jqueryui.com/1.12/jQuery.effects.createPlaceholder/) +* Added: [`$.effects.removePlaceholder()`](//api.jqueryui.com/1.12/jQuery.effects.removePlaceholder/) +* Fixed: Toggle size effect demo not working ([#7041](https://bugs.jqueryui.com/ticket/7041), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: `.ui-effects-wrapper` doesn't maintain element's `display`, `vertical-align`, etc. ([#9477](https://bugs.jqueryui.com/ticket/9477), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Fixed position elements jump in blind effect ([#9257](https://bugs.jqueryui.com/ticket/9257), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Element jumps to wrong position in scale effect ([#9066](https://bugs.jqueryui.com/ticket/9066), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Select element with padding breaks in shake effect ([#8867](https://bugs.jqueryui.com/ticket/8867), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Clip effect behavior is incorrect ([#8671](https://bugs.jqueryui.com/ticket/8671), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Absolute position child elements work incorrectly with slide effects ([#8505](https://bugs.jqueryui.com/ticket/8505), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Clip effect works incorrectly on centered images ([#7885](https://bugs.jqueryui.com/ticket/7885), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Pulsate effect leaves inline opacity style ([#11160](https://bugs.jqueryui.com/ticket/11160), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) + +## CSS Framework + +* Fixed: Position of some icons is off by one pixel ([712e9ad](https://github.com/jquery/jquery-ui/commit/712e9ad7446f39c34634792a59cc232d231833cb)) +* Fixed: Disabled elements can still be focused with a click ([#10573](https://bugs.jqueryui.com/ticket/10573), [7137c90](https://github.com/jquery/jquery-ui/commit/7137c90b1883bc19f23678582170e9df981a084d)) +* Fixed: Improve default theme styling ([#10617](https://bugs.jqueryui.com/ticket/10617), [#10880](https://bugs.jqueryui.com/ticket/10880), [79c4fa1](https://github.com/jquery/jquery-ui/commit/79c4fa1e7a09a3d28f0f8ff7a5b9f41a6d6e123d)) +* Fixed: Change default widget `font-size` to `1em` ([#10131](https://bugs.jqueryui.com/ticket/10131), [3002d46](https://github.com/jquery/jquery-ui/commit/3002d460de2b854243d99634e69d394dfca78886)) +* Renamed: `ui-icon-carat` should be named `ui-icon-caret` ([#10683](https://bugs.jqueryui.com/ticket/10683), [2500bb3](https://github.com/jquery/jquery-ui/commit/2500bb39c2af32770944488aa9c4bb45e8c305fa)) diff --git a/page/changelog/1.12.0-rc.1.md b/page/changelog/1.12.0-rc.1.md new file mode 100644 index 0000000..f5dc3e4 --- /dev/null +++ b/page/changelog/1.12.0-rc.1.md @@ -0,0 +1,17 @@ + + +Released on March 17, 2016, listing changes since [1.12.0-beta.1](/changelog/1.12.0-beta.1/). + +## Interactions + +* Draggable: Improve detection for when to blur the active element ([#12472](https://bugs.jqueryui.com/ticket/12472), [#14905](https://bugs.jqueryui.com/ticket/14905), [63c103d](https://github.com/jquery/jquery-ui/commit/63c103dd540897c9df0c064da36e5cf40b824518)) + +## Widgets + +* Accordion: Correct height calculated when closed ([#11938](https://bugs.jqueryui.com/ticket/11938), [c87653b](https://github.com/jquery/jquery-ui/commit/c87653bc24f5bc84c299b047d49a06c132a48788)) +* Autocomplete: Work around `isContentEditable` bug in Chrome ([#14917](https://bugs.jqueryui.com/ticket/14917), [cbceca7](https://github.com/jquery/jquery-ui/commit/cbceca7091b17e05c5a9ba887ef54761568bb70b)) +* Datepicker: Use `getFullYear()` instead of deprecated `getYear()` ([#14920](https://bugs.jqueryui.com/ticket/14920), [8564641](https://github.com/jquery/jquery-ui/commit/8564641fb8dcff3f072106b075a1bdb1f16ec63d)) +* Menu: Remove active class from top-level item when menu is blurred ([#14919](https://bugs.jqueryui.com/ticket/14919), [4866e14](https://github.com/jquery/jquery-ui/commit/4866e14922217560f551b86ce80952c3e0f649da)) +* Selectmenu: Fixed selectmenu icon float right ([#14914](https://bugs.jqueryui.com/ticket/14914), [20466d5](https://github.com/jquery/jquery-ui/commit/20466d50277712050b4e403686a9df16b5eca4e9)) diff --git a/page/changelog/1.12.0-rc.2.md b/page/changelog/1.12.0-rc.2.md new file mode 100644 index 0000000..e398442 --- /dev/null +++ b/page/changelog/1.12.0-rc.2.md @@ -0,0 +1,24 @@ + + +Released on April 21, 2016, listing changes since [1.12.0-rc.1](/changelog/1.12.0-rc.1/). + +## Interactions + +* Resizable: Fix top jump with rotated element ([89fe04a](https://github.com/jquery/jquery-ui/commit/89fe04af3d19b80147b93beca38986ca12952850)) +* Resizable: Implement `setOption` for handles ([#3423](https://bugs.jqueryui.com/ticket/3423), [623b64e](https://github.com/jquery/jquery-ui/commit/623b64eefc36ac841fde1e33db15903066cef94c)) +* Selectable: Proper handling of inner scrolling ([#13359](https://bugs.jqueryui.com/ticket/13359), [a240251](https://github.com/jquery/jquery-ui/commit/a240251b36081ddbc24c13e0c3e129332c1d8d45)) +* Sortable: Update _contactContainers to use page clientX/Y values ([#10727](https://bugs.jqueryui.com/ticket/10727), [#5039](https://bugs.jqueryui.com/ticket/5039), [9aca706](https://github.com/jquery/jquery-ui/commit/9aca7067321643dcb4b5db03855591c35cd85d69)) +* Sortable: Fix incorrect top containment for document ([#14927](https://bugs.jqueryui.com/ticket/14927), [c19fc10](https://github.com/jquery/jquery-ui/commit/c19fc10e8493007af4617597f0afea5f24860955)) + +## Widgets + +* Checkboxradio: Check that there is an icon before toggeling class ([#14939](https://bugs.jqueryui.com/ticket/14939), [882eb4c](https://github.com/jquery/jquery-ui/commit/882eb4cbf261985624d4ce0f0a59ca8f38a4b054)) +* Datepicker: Fixed keyboard navigation ([#7956](https://bugs.jqueryui.com/ticket/7956), [bf5d6f3](https://github.com/jquery/jquery-ui/commit/bf5d6f314b3798094efdca4b73e09233f2a69d7d)) +* Datepicker: Fix day names for ar-DZ locale ([#14948](https://bugs.jqueryui.com/ticket/14948), [3bfee65](https://github.com/jquery/jquery-ui/commit/3bfee654bfacaa4c3192c1b42675ae575933f662)) +* Menu: Check that there is an active item in `_activate()` ([d21aeee](https://github.com/jquery/jquery-ui/commit/d21aeee8092b9c4e756606a39dd081ef3fbd5dbc)) +* Menu: Don't reset active element until after triggering `blur` event ([#14945](https://bugs.jqueryui.com/ticket/14945), [57f801f](https://github.com/jquery/jquery-ui/commit/57f801f1de95ce3731c443d35886fbcda989f3a0)) +* Selectmenu: Prepend icon and move overflow to text span ([#14938](https://bugs.jqueryui.com/ticket/14938), [bff8277](https://github.com/jquery/jquery-ui/commit/bff8277fbc885bf2dc0461ac706d2f2bb7035ad6)) +* Slider: Fixed max value miscalculation ([#12852](https://bugs.jqueryui.com/ticket/12852), [a1905e2](https://github.com/jquery/jquery-ui/commit/a1905e2c5ed6e61e6a7206e005de9dda4f7135d0)) +* Tooltip: Fix re-enabling of delegated tooltips ([#14950](https://bugs.jqueryui.com/ticket/14950), [010f5f9](https://github.com/jquery/jquery-ui/commit/010f5f9d13b7d6f1c13482825547ee95d3033e40)) diff --git a/page/changelog/1.12.0.md b/page/changelog/1.12.0.md new file mode 100644 index 0000000..ac7a446 --- /dev/null +++ b/page/changelog/1.12.0.md @@ -0,0 +1,281 @@ + + +Released on July 8, 2016 + + +## General + +* Removed: Support for jQuery 1.6.x ([#10723](https://bugs.jqueryui.com/ticket/10723)) +* Removed: Support for IE7 ([#9838](https://bugs.jqueryui.com/ticket/9838), [6d75893](https://github.com/jquery/jquery-ui/commit/6d7589351eae1e180579fc0c87885e5ab7a73f48)) +* Removed: Support for IE8, IE9, and IE10. Existing workarounds will be left in place until 1.14.0 +* Deprecated: Buttonset widget; use new Controlgroup widget instead +* Added: Checkboxradio widget +* Added: Controlgroup widget +* Added: Form reset mixin ([#12638](https://bugs.jqueryui.com/ticket/12638), [ad98cb1](https://github.com/jquery/jquery-ui/commit/ad98cb167350b8d929b71bfeefc904c8964893dd)) +* Added: `.labels()` method as a shim for `control.labels` ([#12475](https://bugs.jqueryui.com/ticket/12475)) +* Added: New demo infrastructure using a require.js bootstrap ([#10119](https://bugs.jqueryui.com/ticket/10119), [7336a58](https://github.com/jquery/jquery-ui/commit/7336a5869ceb2bf27779b5f089277c365fc7d278)) +* Added: `device-width` viewport meta to all demos ([5cbb419](https://github.com/jquery/jquery-ui/commit/5cbb419f2432979a2075346ec94ea7da97b09fb2)) +* Added: Support for custom builds of jQuery which exclude event alias and deprecated modules ([#12770](https://bugs.jqueryui.com/ticket/12770), [6fd9fc9](https://github.com/jquery/jquery-ui/commit/6fd9fc92a372e222e3543f52979c601ac88ad81e)) +* Added: Delegate to base `_getCreateOptions()` in all widgets to support base widget extensions ([e19d462](https://github.com/jquery/jquery-ui/commit/e19d462f16f619dbc56824e00d5c409ccd677f8d)) +* Changed: Split functions out of core into their own files ([#9647](https://bugs.jqueryui.com/ticket/9647)) + +## Build + +* Added: Publish to npm ([#11101](https://bugs.jqueryui.com/ticket/11101), [ab0bb87](https://github.com/jquery/jquery-ui/commit/ab0bb87634c19a47211d9e46afc0c09fbf49ee29)) +* Added: Webpack support ([#14375](https://bugs.jqueryui.com/ticket/14375), [6308a26](https://github.com/jquery/jquery-ui/commit/6308a261fd5d1be2362863e6a59fede4420d9f8c)) +* Fixed: AMD loading doesn't work with minified files ([#10674](https://bugs.jqueryui.com/ticket/10674), [47a32fb](https://github.com/jquery/jquery-ui/commit/47a32fb5b3c190123937e0178900ef754c3e220d)) +* Changed: Remove manifest files; move metadata to source files ([b5f1ffd](https://github.com/jquery/jquery-ui/commit/b5f1ffdea4c3c4b41936e56d4cb23ca8acb2aaa8)) +* Changed: Move widgets and effects into their own folders ([#13885](https://bugs.jqueryui.com/ticket/13885)) + +## Core & Utilities + +### UI Core + +* Removed: `.zIndex()` ([#9156](https://bugs.jqueryui.com/ticket/9156), [faf87d9](https://github.com/jquery/jquery-ui/commit/faf87d992455280182edef015c8733313744a739)) +* Removed: `.focus( delay )` ([#9649](https://bugs.jqueryui.com/ticket/9649), [89ed68f](https://github.com/jquery/jquery-ui/commit/89ed68fb05ed8dff281d0de941a6d1164f2e66f1)) +* Added: Methods to work around IE active element bugs ([f330278](https://github.com/jquery/jquery-ui/commit/f33027840cdac5152599da66635981bbe68c6bda)) +* Added: `.labels()`, `.form()`, and `$.ui.escapeSelector()` methods ([803eaf2](https://github.com/jquery/jquery-ui/commit/803eaf29f732a68793b806356096fe849b9f470b)) +* Fixed: Remove ancestor visibility requirement from `:focusable` selector ([#14596](https://bugs.jqueryui.com/ticket/14596), [0db243a](https://github.com/jquery/jquery-ui/commit/0db243a7369bc1e642a83d8b84be9437c360f7e2), [d302596](https://github.com/jquery/jquery-ui/commit/d3025968f349c37a8ca41bfc63ee1b37d9d7354f)) +* Fixed: Work around more IE `activeElement` bugs ([0de27b0](https://github.com/jquery/jquery-ui/commit/0de27b0609e8f6f9751ab7cce28492e18206d86d)) +* Fixed: Handle IE11 bug with `document.activeElement` in iframes ([#11539](https://bugs.jqueryui.com/ticket/11539), [76c2755](https://github.com/jquery/jquery-ui/commit/76c27556f48bea48d3787c241d35e190d46c3245)) +* Fixed: Feature detecting `.outerWidth()` setter API is expensive ([#11197](https://bugs.jqueryui.com/ticket/11197), [c077e0a](https://github.com/jquery/jquery-ui/commit/c077e0a347826c7acca4ca2f775ca59e3b5f8d07)) +* Fixed: Match on exact node name for `:focusable` and `:tabbable` ([#10747](https://bugs.jqueryui.com/ticket/10747), [c66842b](https://github.com/jquery/jquery-ui/commit/c66842b45e032ac09f73fcd767e78390d7191b6f)) +* Fixed: Detect disabled fieldsets for `:focusable` ([#14970](https://bugs.jqueryui.com/ticket/14970), [50d910b](https://github.com/jquery/jquery-ui/commit/50d910b84844367b0bcf324b5bb50ce70b43f9c2)) +* Changed: Move uniqueId into its own module ([37602d7](https://github.com/jquery/jquery-ui/commit/37602d7e645964e4f5e4d06ef313081c8eb60bf1)) +* Changed: Move version and creation of the ui namespace into its own module ([3d71fb8](https://github.com/jquery/jquery-ui/commit/3d71fb83fe02a307823594f5905be9848cfa5506)) +* Changed: Move data selector from core into its own module ([f0260fd](https://github.com/jquery/jquery-ui/commit/f0260fd91b593ae56f68e1f33ca8496c1c4b0467)) +* Changed: Move disable-selection into its own module ([4916487](https://github.com/jquery/jquery-ui/commit/4916487440b0c087e6e5996522cf478af26df591)) +* Changed: Move focusable into its own module ([475ccef](https://github.com/jquery/jquery-ui/commit/475ccefd97ec24d76cfa6767c007501c14934ba6)) +* Changed: Move escape selector into its own module ([47188b7](https://github.com/jquery/jquery-ui/commit/47188b792617a0030ccec07c6df27335dc3aa430)) +* Changed: Move form method into its own module ([64076ec](https://github.com/jquery/jquery-ui/commit/64076ecfb5870130d89733ff34668fdd18683f9b)) +* Changed: Move $.ui.ie into its own module ([677fdbf](https://github.com/jquery/jquery-ui/commit/677fdbf7bef71d12998191e0b97c2c5cd34349be)) +* Changed: Move labels into its own module ([2c92f10](https://github.com/jquery/jquery-ui/commit/2c92f1074718ee23081765da0b86a8e3fe906874)) +* Changed: Move backcompat for core 1.7 into its own module ([2d03e12](https://github.com/jquery/jquery-ui/commit/2d03e1280a3671468aba6d48d60ba9381fe90e19)) +* Changed: Move plugin into its own module ([0a9df3a](https://github.com/jquery/jquery-ui/commit/0a9df3af52a66fe5e8f23622503020f0bcc6ded9)) +* Changed: Move safeActiveElement into its own module ([2b84531](https://github.com/jquery/jquery-ui/commit/2b84531ae9331f60e4d739fabca6d78abde89ae1)) +* Changed: Move safe blur into its own module ([26fc3b5](https://github.com/jquery/jquery-ui/commit/26fc3b5587ed117a972224ac661255998e59f9e1)) +* Changed: Move tabbable into its own module ([6064a5e](https://github.com/jquery/jquery-ui/commit/6064a5e0487428d53bd694dcebce952730992c46)) +* Changed: Move scrollParent into its own module ([72bfafb](https://github.com/jquery/jquery-ui/commit/72bfafbedea4973b803abeefc97637f246b11c89)) +* Changed: Move keyCode into its own module ([bddb7ef](https://github.com/jquery/jquery-ui/commit/bddb7efe000cf60e455d48f28acef0ef2f295d9d)) + +### Mouse + +* Deprecated: `distance` and `delay` options ([#10615](https://bugs.jqueryui.com/ticket/10615)) +* Fixed: Don't stop propagation of `mouseup` ([#10818](https://bugs.jqueryui.com/ticket/10818), [a1d6920](https://github.com/jquery/jquery-ui/commit/a1d69208bad175a27c7b50c27fdc10001563cd4d)) +* Fixed: Delay timeout clearing upon `mouseup` ([#14458](https://bugs.jqueryui.com/ticket/14458), [9b82001](https://github.com/jquery/jquery-ui/commit/9b82001a70a6273df037db9e602080011d0fd7ba)) +* Fixed: Ignore `mousemove` events triggered by key presses in Safari ([#14461](https://bugs.jqueryui.com/ticket/14461), [17b5386](https://github.com/jquery/jquery-ui/commit/17b5386e8cb48c522ddb581a001fef5434e57f9a)) + +### Position + +* Fixed: Fraction support test doesn't work when loaded outside of `head` ([#9898](https://bugs.jqueryui.com/ticket/9898), [3970e8c](https://github.com/jquery/jquery-ui/commit/3970e8c68146a3645f09d54735a40d5cf7eeef9e)) +* Fixed: Flip collision handling fails in some situations ([#8710](https://bugs.jqueryui.com/ticket/8710), [ebaaca7](https://github.com/jquery/jquery-ui/commit/ebaaca7206cae201ec069dbaed85bc8d6beeab32), [4de983c](https://github.com/jquery/jquery-ui/commit/4de983c6d5eacbdc668c0b7280d9818dd6281a53)) +* Fixed: Passing `window` doesn't work with new versions of jQuery ([#13493](https://bugs.jqueryui.com/ticket/13493), [b3a9b13](https://github.com/jquery/jquery-ui/commit/b3a9b13a218cd90b7cf67be5d5f8ad6e76c557b0)) + +### Widget Factory + +* Added: Support for mixins ([#12601](https://bugs.jqueryui.com/ticket/12601), [556b271](https://github.com/jquery/jquery-ui/commit/556b2710f0f09b76909b92c751edc3f4243fa5c0)) +* Added: `classes` option and `_addClass()`, `_removeClass()`, `_toggleClass()` methods ([#7053](https://bugs.jqueryui.com/ticket/7053), [c192d40](https://github.com/jquery/jquery-ui/commit/c192d4086d9bbaf09d5f870857af30c60a427e22)) +* Fixed: Call `._setOptionDisabled()` on init if the widget is disabled (consistent handling of `disabled` option on create and update) ([#9151](https://bugs.jqueryui.com/ticket/9151), [7dde5c9](https://github.com/jquery/jquery-ui/commit/7dde5c9d75148cdca7cf86ff0c6e310fdc5a4054)) + +## Interactions + +### Draggable + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [e9bb449](https://github.com/jquery/jquery-ui/commit/e9bb449b5dde255e4a79ea6768864ba26529ed6c)) +* Fixed: Ensure parent is correct after dragging through sortable ([#10669](https://bugs.jqueryui.com/ticket/10669), [d8077dc](https://github.com/jquery/jquery-ui/commit/d8077dc562bfca60906a160e20186608a10b7a87)) +* Fixed: Draggable elements receive an explicit height in Firefox only ([10725](https://bugs.jqueryui.com/ticket/10725), [d0ea32e](https://github.com/jquery/jquery-ui/commit/d0ea32e3ad613eaaa523d0c88c776dab2b26b25f)) +* Fixed: Improve detection for when to blur the active element ([#12472](https://bugs.jqueryui.com/ticket/12472), [#14905](https://bugs.jqueryui.com/ticket/14905), [63c103d](https://github.com/jquery/jquery-ui/commit/63c103dd540897c9df0c064da36e5cf40b824518)) + +### Droppable + +* Deprecated: `hoverClass` and `activeClass` options; use `classes` option instead ([#12162](https://bugs.jqueryui.com/ticket/12162)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [f58277a](https://github.com/jquery/jquery-ui/commit/f58277a521ae41b1d3e054a419ef5fda85e7db21)) + +### Resizable + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2665aa0](https://github.com/jquery/jquery-ui/commit/2665aa01469daf10dacf76f60a7e5f39f2e0a3de)) +* Added: Modified to allow jQuery objects as handles ([#9658](https://bugs.jqueryui.com/ticket/9658), [18e301f](https://github.com/jquery/jquery-ui/commit/18e301f4e29c2080e9aa9dac87c00dee137cb6c9)) +* Fixed: Correct width when grid approaches zero ([#10590](https://bugs.jqueryui.com/ticket/10590), [9493839](https://github.com/jquery/jquery-ui/commit/9493839f23b6ff71aacb9cb8fe8fde6c8d0ecd61)) +* Fixed: Don't use CSS shorthand properties with `.css()` ([#7766](https://bugs.jqueryui.com/ticket/7766), [6a681c2](https://github.com/jquery/jquery-ui/commit/6a681c2c13afb6e76a6881b9dae928b9ff66a395)) +* Fixed: Don't round dimensions ([0ff7a16](https://github.com/jquery/jquery-ui/commit/0ff7a1653407d2a91cff721528a0a435dbf12503)) +* Fixed: `alsoResize` supports more than one element of a jQuery selection ([#4666](https://bugs.jqueryui.com/ticket/4666), [19783fd](https://github.com/jquery/jquery-ui/commit/19783fd3e6a6e6e02a2030028e8820076c3b1295)) +* Fixed: With helper, dragging horizontally or vertically only reduces opposite direction by 1px ([#11113](https://bugs.jqueryui.com/ticket/11113), [7df2f19](https://github.com/jquery/jquery-ui/commit/7df2f1905a1ec4727f00451f8d794aeb35ec4159)) +* Fixed: Remove data for `ui-resizable-alsoresize` on stop ([#14788](https://bugs.jqueryui.com/ticket/14788), [7cc88bf](https://github.com/jquery/jquery-ui/commit/7cc88bfe327ba826ffa5199c96c91178862b22f0)) +* Fixed: Match on exact node name ([#10748](https://bugs.jqueryui.com/ticket/10748), [faefab8](https://github.com/jquery/jquery-ui/commit/faefab842bc79f212ccee227b7a37c7630b1573c)) +* Fixed: Top jump with rotated element ([89fe04a](https://github.com/jquery/jquery-ui/commit/89fe04af3d19b80147b93beca38986ca12952850)) +* Fixed: Changing handles after initialization ([#3423](https://bugs.jqueryui.com/ticket/3423), [623b64e](https://github.com/jquery/jquery-ui/commit/623b64eefc36ac841fde1e33db15903066cef94c)) + +### Selectable + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2a7873d](https://github.com/jquery/jquery-ui/commit/2a7873dd5711db472a87f749e698e80c49ccf8cd)) +* Fixed: Handling of inner scrolling ([#13359](https://bugs.jqueryui.com/ticket/13359), [a240251](https://github.com/jquery/jquery-ui/commit/a240251b36081ddbc24c13e0c3e129332c1d8d45)) + +### Sortable + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [90c27b4](https://github.com/jquery/jquery-ui/commit/90c27b4b5130fff9abbfea671c193c59e4bf8850)) +* Added: Support for iframes ([#9604](https://bugs.jqueryui.com/ticket/9604), [17c7f69](https://github.com/jquery/jquery-ui/commit/17c7f698a2894211bbb5f2d63750f5b3b84bb0ab)) +* Fixed: Redetermine floating flag when recalculating positions ([#7498](https://bugs.jqueryui.com/ticket/7498), [f656aeb](https://github.com/jquery/jquery-ui/commit/f656aebe3f99356b7eb91ffdafe6689ecc8fb4ae)) +* Fixed: Append a `` with `` to the placeholder of `` elements ([#10682](https://bugs.jqueryui.com/ticket/10682), [962e05d](https://github.com/jquery/jquery-ui/commit/962e05dc1d0a51a7458bc44725417aa3462cd89a)) +* Fixed: Placeholoder positioning ([#10727](https://bugs.jqueryui.com/ticket/10727), [#5039](https://bugs.jqueryui.com/ticket/5039), [9aca706](https://github.com/jquery/jquery-ui/commit/9aca7067321643dcb4b5db03855591c35cd85d69)) +* Fixed: Incorrect top containment for document ([#14927](https://bugs.jqueryui.com/ticket/14927), [c19fc10](https://github.com/jquery/jquery-ui/commit/c19fc10e8493007af4617597f0afea5f24860955)) + +## Widgets + +### Accordion + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [7c6a7d7](https://github.com/jquery/jquery-ui/commit/7c6a7d71e98cbeea21bfc1560f8a82484a3c9510)) +* Fixed: Set `aria-expanded` when collapsing ([#10703](https://bugs.jqueryui.com/ticket/10703), [ab798cb](https://github.com/jquery/jquery-ui/commit/ab798cb4646cfeb79f1949eb70cd64813a248d87)) +* Fixed: Handle `box-sizing: border-box` in animations ([#9264](https://bugs.jqueryui.com/ticket/9264), [4b017b4](https://github.com/jquery/jquery-ui/commit/4b017b414f107ed3c1dafc7601b61cbcd76acf61)) +* Fixed: Correct height calculated when closed ([#11938](https://bugs.jqueryui.com/ticket/11938), [c87653b](https://github.com/jquery/jquery-ui/commit/c87653bc24f5bc84c299b047d49a06c132a48788)) +* Fixed: Handle disabled option on create ([#9151](https://bugs.jqueryui.com/ticket/9151), [874b4a0](https://github.com/jquery/jquery-ui/commit/874b4a0316b262edaf184a9ddbef539bb6496082)) + +### Autocomplete + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [cff1fb2](https://github.com/jquery/jquery-ui/commit/cff1fb2a13e18403c02ba516e08db3a5b21a8b6c)) +* Added: Include native dialogs in `appendTo` logic (`ui-front` walking) ([#10739](https://bugs.jqueryui.com/ticket/10739), [dc67037](https://github.com/jquery/jquery-ui/commit/dc6703756d388b1f49be0637473a8d55b5ce9270)) +* Fixed: Close the menu on any outside interactions ([#6642](https://bugs.jqueryui.com/ticket/6642), [548fbf5](https://github.com/jquery/jquery-ui/commit/548fbf570caa5fdee973bbbe8ac2d36b0338c2b9)) +* Fixed: Restore focus after clicking a menu item, if necessary ([#9201](https://bugs.jqueryui.com/ticket/9201), [581bfb5](https://github.com/jquery/jquery-ui/commit/581bfb55bf4f4f614a6e0c0ac545cf1aa7d29d0a)) +* Fixed: Use a `div` instead of a `span` for the live region ([#14587](https://bugs.jqueryui.com/ticket/14587), [ce50178](https://github.com/jquery/jquery-ui/commit/ce5017843036151d545fba76062655fda69eac62)) +* Fixed: Hidden elements with `contenteditable` are not handled correctly in Chrome ([#14917](https://bugs.jqueryui.com/ticket/14917), [cbceca7](https://github.com/jquery/jquery-ui/commit/cbceca7091b17e05c5a9ba887ef54761568bb70b)) + +### Button + +* Deprecated: `icons` option; replaced with `icon` and `iconPosition` ([#14744](https://bugs.jqueryui.com/ticket/14744)) +* Deprecated: Support for toggle buttons; use new Checkboxradio widget ([#14746](https://bugs.jqueryui.com/ticket/14746)) +* Deprecated: `text` option; renamed to `showLabel` ([#8203](https://bugs.jqueryui.com/ticket/8203)) +* Added: Support the HTML5 form attribute ([#9973](https://bugs.jqueryui.com/ticket/9973), [e77fbe5](https://github.com/jquery/jquery-ui/commit/e77fbe5388abeeb1d0f8f377161a0fc039897594)) +* Fixed: Remove padding on text element for icon only buttons ([#14056](https://bugs.jqueryui.com/ticket/14056), [1f6ea8b](https://github.com/jquery/jquery-ui/commit/1f6ea8b78ac859bfecbdcdd092c2df3e2eec90ed)) +* Fixed: Inconsistent focus handling across browsers ([#7902](https://bugs.jqueryui.com/ticket/7902)) +* Fixed: Pixel positioning for button widget with radio buttons is incorrect ([#8827](https://bugs.jqueryui.com/ticket/8827)) +* Fixed: Use `control.labels` if available ([#9541](https://bugs.jqueryui.com/ticket/9541)) +* Fixed: Minor mouse movements cause state inconsistencies in Firefox ([#9990](https://bugs.jqueryui.com/ticket/9990)) +* Fixed: Selecting text causes an inconsistent state ([#10726](https://bugs.jqueryui.com/ticket/10726)) +* Fixed: Radio buttons do not have appropriate focus styling ([#9505](https://bugs.jqueryui.com/ticket/9505)) + +### Buttonset + +* Deprecated: Buttonset widget; replaced with Controlgroup ([#14747](https://bugs.jqueryui.com/ticket/14747)) +* Fixed: Incorrect button width/alignment in IE8 ([#7583](https://bugs.jqueryui.com/ticket/7583)) + +### Checkboxradio - NEW! + +New checkboxradio widget. Check out the [checkboxradio documentation](//api.jqueryui.com/checkboxradio/) for more details. + +### Controlgroup - NEW! + +New controlgroup widget. Check out the [controlgroup documentation](//api.jqueryui.com/controlgroup/) for more details. + +### Datepicker + +* Fixed: Date range demo when entering values manually ([#11143](https://bugs.jqueryui.com/ticket/11143), [fac8e51](https://github.com/jquery/jquery-ui/commit/fac8e517d7ea4c65bad21a65ad59eef1e4379efb)) +* Fixed: Date format for `ko` locale ([#14595](https://bugs.jqueryui.com/ticket/14595), [2d4b4ef](https://github.com/jquery/jquery-ui/commit/2d4b4ef360728ab687412c159099b99984231ece)) +* Fixed: Translate `weekHeader` in `ko` locale ([e5c3004](https://github.com/jquery/jquery-ui/commit/e5c3004c8e9613c290a997a75285171cae64cb90)) +* Fixed: Month names and `firstDay` value in Arabic locale ([#10035](https://bugs.jqueryui.com/ticket/10035), [06231cf](https://github.com/jquery/jquery-ui/commit/06231cf7622fe112703c38535df71aa7f100ef7d)) +* Fixed: Remove unused variable ([#14416](https://bugs.jqueryui.com/ticket/14416), [eec0cfd](https://github.com/jquery/jquery-ui/commit/eec0cfd7fe75f0e52bc5802d8c294a2bccd722c7)) +* Fixed: `datepicker_instActive` released on instance destroy ([#10668](https://bugs.jqueryui.com/ticket/10668), [e5e3ca4](https://github.com/jquery/jquery-ui/commit/e5e3ca4240fbae9684f689ec6e00882ec0211922)) +* Fixed: Use `getFullYear()` instead of deprecated `getYear()` ([#14920](https://bugs.jqueryui.com/ticket/14920), [8564641](https://github.com/jquery/jquery-ui/commit/8564641fb8dcff3f072106b075a1bdb1f16ec63d)) +* Fixed: Keyboard navigation ([#7956](https://bugs.jqueryui.com/ticket/7956), [bf5d6f3](https://github.com/jquery/jquery-ui/commit/bf5d6f314b3798094efdca4b73e09233f2a69d7d)) +* Fixed: Day names for `ar-DZ` locale ([#14948](https://bugs.jqueryui.com/ticket/14948), [3bfee65](https://github.com/jquery/jquery-ui/commit/3bfee654bfacaa4c3192c1b42675ae575933f662)) + +### Dialog + +* Deprecated: `dialogClass` option; use `classes` option instead ([#12161](https://bugs.jqueryui.com/ticket/12161)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [6f4884f](https://github.com/jquery/jquery-ui/commit/6f4884f6f5b422bacbb20dbd82d90d351a985a4b)) +* Fixed: Selectmenu and autocomplete menus are cut off ([#10543](https://bugs.jqueryui.com/ticket/10543), [912eb62](https://github.com/jquery/jquery-ui/commit/912eb62ccb77059148a1fe14bdb57b7f9e44a14c)) +* Fixed: Removal of event listener for modal dialogs ([#13649](https://bugs.jqueryui.com/ticket/13649), [62446d9](https://github.com/jquery/jquery-ui/commit/62446d957efb69cd53015919edf71501fcbd2599)) +* Fixed: Escape `closeText` option before passing it to button ([9644e7b](https://github.com/jquery/jquery-ui/commit/9644e7bae9116edaf8d37c5b38cb32b892f10ff6)) +* Fixed: Stop tracking instance in `destroy()` to avoid memory leaks ([#11125](https://bugs.jqueryui.com/ticket/11125), [ec1f393](https://github.com/jquery/jquery-ui/commit/ec1f393c39aa5bbac1158acf692271f8ce9518ce)) +* Fixed: Dialog with buttons gets smaller every time it is dragged in Chrome 51 ([#14978](https://bugs.jqueryui.com/ticket/14978), [c770605](https://github.com/jquery/jquery-ui/commit/c770605db05347edfa9c6224aebd42974092ed22)) + +### Menu + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [2ebef69](https://github.com/jquery/jquery-ui/commit/2ebef69efe96a5b6057bdedd8876a76661bde482)) +* Fixed: Use `ui-state-active` consistently ([#10692](https://bugs.jqueryui.com/ticket/10692), [0bbd156](https://github.com/jquery/jquery-ui/commit/0bbd1569182bc03e8dc4f5f8aa203e8edbe15f99)) +* Fixed: Ignore bubbled `mouseenter` events on parent items ([#11641](https://bugs.jqueryui.com/ticket/11641), [c770605](https://github.com/jquery/jquery-ui/commit/c770605db05347edfa9c6224aebd42974092ed22)) +* Fixed: `ui-state-focus` styling for submenus ([#10162](https://bugs.jqueryui.com/ticket/10162), [de2ef2a](https://github.com/jquery/jquery-ui/commit/de2ef2a585447cf75fc8d4a734c12aa2bbd028c2)) +* Fixed: Remove active class from top-level item when menu is blurred ([#14919](https://bugs.jqueryui.com/ticket/14919), [4866e14](https://github.com/jquery/jquery-ui/commit/4866e14922217560f551b86ce80952c3e0f649da)) +* Fixed: Check that there is an active item in `_activate()` ([d21aeee](https://github.com/jquery/jquery-ui/commit/d21aeee8092b9c4e756606a39dd081ef3fbd5dbc)) +* Fixed: Don't reset active element until after triggering `blur` event ([#14945](https://bugs.jqueryui.com/ticket/14945), [57f801f](https://github.com/jquery/jquery-ui/commit/57f801f1de95ce3731c443d35886fbcda989f3a0)) + +### Progressbar + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [ea35ded](https://github.com/jquery/jquery-ui/commit/ea35ded6ed12747d88bf163c3b7fa15506ef521a)) + +### Selectmenu + +* Added: Include native dialogs in `appendTo` logic (`ui-front` walking) ([#10739](https://bugs.jqueryui.com/ticket/10739), [dc67037](https://github.com/jquery/jquery-ui/commit/dc6703756d388b1f49be0637473a8d55b5ce9270)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [3483486](https://github.com/jquery/jquery-ui/commit/3483486a153f6f7b3a8bbe9783735eb63adfd033)) +* Added: `_renderButtonItem()` method ([#10142](https://bugs.jqueryui.com/ticket/10142), [fb4124b](https://github.com/jquery/jquery-ui/commit/fb4124b7af4e87712eca9893f7aefb5fee7905de)) +* Added: Support `width: false` and default to `14em` ([#11198](https://bugs.jqueryui.com/ticket/11198), [af4c35d](https://github.com/jquery/jquery-ui/commit/af4c35df9d1cf4c15d57b3789711026360785831)) +* Fixed: Copy title attributes ([#10435](https://bugs.jqueryui.com/ticket/10435), [9793739](https://github.com/jquery/jquery-ui/commit/979373983babce7122d98c4f3919426735555d61)) +* Fixed: Calling `refresh()` after removing all options throws an error ([#10662](https://bugs.jqueryui.com/ticket/10662), [65584c1](https://github.com/jquery/jquery-ui/commit/65584c1640f8c7430587738c3c4cd7dd8010a2a5)) +* Fixed: Properly parse value from options ([#10684](https://bugs.jqueryui.com/ticket/10684), [809cc0f](https://github.com/jquery/jquery-ui/commit/809cc0f8d0c07c2be44942b3010bba1f9ce91be8)) +* Fixed: Handle form resets ([#12236](https://bugs.jqueryui.com/ticket/12236), [39853fd](https://github.com/jquery/jquery-ui/commit/39853fda45a409e9dc47d7358fbd9b03ad1d33b5)) +* Fixed: Content differs when created or refreshed when overriding `_renderItem()` ([#11054](https://bugs.jqueryui.com/ticket/11054), [fb4124b](https://github.com/jquery/jquery-ui/commit/fb4124b7af4e87712eca9893f7aefb5fee7905de)) +* Fixed: Icon positioning ([#14914](https://bugs.jqueryui.com/ticket/14914), [20466d5](https://github.com/jquery/jquery-ui/commit/20466d50277712050b4e403686a9df16b5eca4e9)) +* Fixed: Text and icon alignment ([#14938](https://bugs.jqueryui.com/ticket/14938), [bff8277](https://github.com/jquery/jquery-ui/commit/bff8277fbc885bf2dc0461ac706d2f2bb7035ad6)) + +### Slider + +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [491bb9c](https://github.com/jquery/jquery-ui/commit/491bb9c7f4929eb574e0ab6116a5b22562446734)) +* Added: Pass handle index to events ([#7630](https://bugs.jqueryui.com/ticket/7630), [6111b17](https://github.com/jquery/jquery-ui/commit/6111b17710ab4e14bb119e735de9cfa9285badab)) +* Fixed: Handle order when setting values of range slider to max ([#9046](https://bugs.jqueryui.com/ticket/9046), [dff1c74](https://github.com/jquery/jquery-ui/commit/dff1c74dd4c0fd6b951c7c183bebae09f9f229f6)) +* Fixed: Proper animation of range ([#9459](https://bugs.jqueryui.com/ticket/9459), [bf03479](https://github.com/jquery/jquery-ui/commit/bf03479cc14aa54c2e674cad87bf75c8126cb86f)) +* Fixed: Modified to allow value to reach max value with float step ([#10721](https://bugs.jqueryui.com/ticket/10721), [ae1d6d5](https://github.com/jquery/jquery-ui/commit/ae1d6d5f90236405023964bb3061eccd6c625e39), [#11286](https://bugs.jqueryui.com/ticket/11286), [60c00cd](https://github.com/jquery/jquery-ui/commit/60c00cd4ecdab41f44e125efe2679223e9cd5535)) +* Fixed: Range fills all space after changing orientation ([#12205](https://bugs.jqueryui.com/ticket/12205), [897a238](https://github.com/jquery/jquery-ui/commit/897a238332110c5c1a58ee9a0db5bf4e54fc3059)) +* Fixed: Pass 0 value if slider reaches it ([#12196](https://bugs.jqueryui.com/ticket/12196), [adcc8ef](https://github.com/jquery/jquery-ui/commit/adcc8eff431847b4897666369310cb83275a8282)) +* Fixed: Max value miscalculation ([#12852](https://bugs.jqueryui.com/ticket/12852), [a1905e2](https://github.com/jquery/jquery-ui/commit/a1905e2c5ed6e61e6a7206e005de9dda4f7135d0)) + +### Spinner + +* Deprecated: `_uiSpinnerHtml()` and `_buttonHtml()` extension points ([#11097](https://bugs.jqueryui.com/ticket/11097), [d4719bf](https://github.com/jquery/jquery-ui/commit/d4719bf6160a0c99273abddc42e39a734e9943a2)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [28dccda](https://github.com/jquery/jquery-ui/commit/28dccda3776c586052d787dd77e0abdbf1b68a0d)) +* Fixed: Add padding to input to give consistent visual style ([#13997](https://bugs.jqueryui.com/ticket/13997), [caf6f2d](https://github.com/jquery/jquery-ui/commit/caf6f2dc84295878f0a692b540e6f910b2a1d505)) + +### Tabs + +* Deprecated: `ui-tab` class; use `ui-tabs-tab` ([#12061](https://bugs.jqueryui.com/ticket/12061), [74ccbc1](https://github.com/jquery/jquery-ui/commit/74ccbc18a414be9f78f6765b2b6c8be29c5019a9)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [aaddfbf](https://github.com/jquery/jquery-ui/commit/aaddfbfa8b3bdb0374540d7dd1e13a708bdb00aa)) +* Fixed: Use `$.ui.escapeSelector()` to avoid invalid selectors ([1ee8e23](https://github.com/jquery/jquery-ui/commit/1ee8e230bdc6036bec1e28573c67e2e9ca67252c)) +* Fixed: Suppress automatic activation when navigating with COMMAND ([#9621](https://bugs.jqueryui.com/ticket/9621), [6a242ab](https://github.com/jquery/jquery-ui/commit/6a242ab4ebdcec265826b959fa27881dcf462c96)) + +### Tooltip + +* Deprecated: `tooltipClass` option; use `classes` option instead ([#12167](https://bugs.jqueryui.com/ticket/12167)) +* Added: `classes` option ([#7053](https://bugs.jqueryui.com/ticket/7053), [9d71547](https://github.com/jquery/jquery-ui/commit/9d71547394f9464e5af1f0c77e56917d0ba5abb6)) +* Added: Accept `HTMLElement` and `jQuery` instances for the `content` option ([#9278](https://bugs.jqueryui.com/ticket/9278), [42099e4](https://github.com/jquery/jquery-ui/commit/42099e44610face58172ed0ed27115fb2b84ab50)) +* Fixed: Does not display in foreground when used in a `` element ([#10739](https://bugs.jqueryui.com/ticket/10739), [8cf9879](https://github.com/jquery/jquery-ui/commit/8cf98798a58afb7197bce0d6ca1c5b658ae04011)) +* Fixed: Use `show.delay` update only when `track` option is active to reduce CPU usage ([#14682](https://bugs.jqueryui.com/ticket/14682), [d573232](https://github.com/jquery/jquery-ui/commit/d5732327078709c3680385c79a2106f263009f84)) +* Fixed: Content cannot contain checked radio button ([#11272](https://bugs.jqueryui.com/ticket/11272), [2cef124](https://github.com/jquery/jquery-ui/commit/2cef124bf27ce89f1fbfc493352ebfd895b40822)) +* Fixed: Does not hide consistently with dynamically loaded content ([#8740](https://bugs.jqueryui.com/ticket/8740), [c4e367b](https://github.com/jquery/jquery-ui/commit/c4e367bb31c21d7c8b2701c626a92a2f13be5af4)) +* Fixed: Re-enabling of delegated tooltips ([#14950](https://bugs.jqueryui.com/ticket/14950), [010f5f9](https://github.com/jquery/jquery-ui/commit/010f5f9d13b7d6f1c13482825547ee95d3033e40)) + +## Effects + +* Deprecated: Transfer effect; replaced with `.transfer()` plugin ([#14749](https://bugs.jqueryui.com/ticket/14749), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Added: [`$.effects.define()`](//api.jqueryui.com/jQuery.effects.define/) +* Added: [`$.effects.scaledDimensions()`](//api.jqueryui.com/jQuery.effects.scaledDimensions/) +* Added: [`$.effects.clipToBox()`](//api.jqueryui.com/jQuery.effects.clipToBox/) +* Added: [`$.effects.saveStyle()`](//api.jqueryui.com/jQuery.effects.saveStyle/) +* Added: [`$.effects.restoreStyle()`](//api.jqueryui.com/jQuery.effects.restoreStyle/) +* Added: [`$.effects.createPlaceholder()`](//api.jqueryui.com/jQuery.effects.createPlaceholder/) +* Added: [`$.effects.removePlaceholder()`](//api.jqueryui.com/jQuery.effects.removePlaceholder/) +* Fixed: Toggle size effect demo not working ([#7041](https://bugs.jqueryui.com/ticket/7041), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: `.ui-effects-wrapper` doesn't maintain element's `display`, `vertical-align`, etc. ([#9477](https://bugs.jqueryui.com/ticket/9477), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Fixed position elements jump in blind effect ([#9257](https://bugs.jqueryui.com/ticket/9257), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Element jumps to wrong position in scale effect ([#9066](https://bugs.jqueryui.com/ticket/9066), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Select element with padding breaks in shake effect ([#8867](https://bugs.jqueryui.com/ticket/8867), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Clip effect behavior is incorrect ([#8671](https://bugs.jqueryui.com/ticket/8671), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Absolute position child elements work incorrectly with slide effects ([#8505](https://bugs.jqueryui.com/ticket/8505), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Clip effect works incorrectly on centered images ([#7885](https://bugs.jqueryui.com/ticket/7885), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) +* Fixed: Pulsate effect leaves inline opacity style ([#11160](https://bugs.jqueryui.com/ticket/11160), [b6bec79](https://github.com/jquery/jquery-ui/commit/b6bec797d6a8ef0b377a866c38c67e66a626b45f)) + +## CSS Framework + +* Fixed: Position of some icons is off by one pixel ([712e9ad](https://github.com/jquery/jquery-ui/commit/712e9ad7446f39c34634792a59cc232d231833cb)) +* Fixed: Disabled elements can still be focused with a click ([#10573](https://bugs.jqueryui.com/ticket/10573), [7137c90](https://github.com/jquery/jquery-ui/commit/7137c90b1883bc19f23678582170e9df981a084d)) +* Fixed: Improve default theme styling ([#10617](https://bugs.jqueryui.com/ticket/10617), [#10880](https://bugs.jqueryui.com/ticket/10880), [79c4fa1](https://github.com/jquery/jquery-ui/commit/79c4fa1e7a09a3d28f0f8ff7a5b9f41a6d6e123d)) +* Fixed: Change default widget `font-size` to `1em` ([#10131](https://bugs.jqueryui.com/ticket/10131), [3002d46](https://github.com/jquery/jquery-ui/commit/3002d460de2b854243d99634e69d394dfca78886)) +* Renamed: `ui-icon-carat` should be named `ui-icon-caret` ([#10683](https://bugs.jqueryui.com/ticket/10683), [2500bb3](https://github.com/jquery/jquery-ui/commit/2500bb39c2af32770944488aa9c4bb45e8c305fa)) diff --git a/page/changelog/1.12.1.md b/page/changelog/1.12.1.md new file mode 100644 index 0000000..b66c5d9 --- /dev/null +++ b/page/changelog/1.12.1.md @@ -0,0 +1,49 @@ + + +Released on September 14, 2016 + +## Core & Utilities + +### Widget Factory + +* Fixed: Memory leak and bad performance for managed classes on transient elements ([#15043](https://bugs.jqueryui.com/ticket/15043), [89af4c2](https://github.com/jquery/jquery-ui/commit/89af4c292eaa5fc1c83437ca71085264dcbef34a)) +* Fixed: `instance()` should return `undefined` for empty sets ([#15019](https://bugs.jqueryui.com/ticket/15019), [3dd8a09](https://github.com/jquery/jquery-ui/commit/3dd8a09b441d65445f2b6a7c73e72af65445d5da)) + +## Interactions + +### Draggable + +* Fixed: Incorrect focus handling on mousedown ([#15046](https://bugs.jqueryui.com/ticket/15046), [8c66934](https://github.com/jquery/jquery-ui/commit/8c66934434214ab92cbcf46240beb739154fdfbf)) + +### Sortable + +* Fixed: Calling `cancel()` throws an error ([#15042](https://bugs.jqueryui.com/ticket/15042), [19027bb](https://github.com/jquery/jquery-ui/commit/19027bb0852a8f26627ef5584e6dde77df9fd0df)) + +## Widgets + +### Autocomplete + +* Fixed: JSONP demo does not work over HTTPS ([#14974](https://bugs.jqueryui.com/ticket/14974), [930934f](https://github.com/jquery/jquery-ui/commit/930934f4d22ce4397bcc85cde33c32acef2ec622)) + +### Checkboxradio + +* Fixed: Label handling with jQuery 3.x ([#15006](https://bugs.jqueryui.com/ticket/15006), [55cd948](https://github.com/jquery/jquery-ui/commit/55cd9488ccd897bb9b75450852c100d13cf0df02)) +* Checkboxradio: Radio checkmarks are only visible on hover ([#15003](https://bugs.jqueryui.com/ticket/15003), [57537d0](https://github.com/jquery/jquery-ui/commit/57537d09a42ed53d6244d9222d954e107b2b44d0)) + +### Controlgroup + +* Fixed: Handle child elements that don't have options defined ([f67f929](https://github.com/jquery/jquery-ui/commit/f67f9293ae962dc814e66ac110b4f82404d14f69)) + +### Dialog + +* Fixed: Support deprecated button options ([#15016](https://bugs.jqueryui.com/ticket/15016), [6c754b4](https://github.com/jquery/jquery-ui/commit/6c754b4b5b19a2a12eae68058458ef9ff7b72a0a)) + +### Menu + +* Fixed: Support number pad keyboard input ([#15031](https://bugs.jqueryui.com/ticket/15031), [ac9ca9e](https://github.com/jquery/jquery-ui/commit/ac9ca9e52c90da56b6846501800103605467f98b)) + +### Slider + +* Added: Demo for custom handle ([#15023](https://bugs.jqueryui.com/ticket/15023), [51461d5](https://github.com/jquery/jquery-ui/commit/51461d523868c168f2e12eeb547c1cf8b7cf59cf)) diff --git a/page/changelog/1.13.0-rc.2.md b/page/changelog/1.13.0-rc.2.md new file mode 100644 index 0000000..e84db9e --- /dev/null +++ b/page/changelog/1.13.0-rc.2.md @@ -0,0 +1,140 @@ + + +Released on September 3, 2021 + +## General + +* Removed: Support for jQuery 1.7.x ([b61b16b5a](https://github.com/jquery/jquery-ui/commit/b61b16b5a89ee27b30efdf7635d897af810af130)) +* Fixed: Stop using deprecated jQuery APIs, resolve jQuery Migrate warnings ([f4ef03e57](https://github.com/jquery/jquery-ui/commit/f4ef03e57edd7e51cb134e902679c7bddc3daaee), [0c860b0d9](https://github.com/jquery/jquery-ui/commit/0c860b0d92f9959f6747f8c02e9671eb2fc561aa), [995b5faec](https://github.com/jquery/jquery-ui/commit/995b5faec966b608ba15ed2a68c1f1565f77053b), [98b539171](https://github.com/jquery/jquery-ui/commit/98b539171b6e805fa79346a5e9896865e5213b9c), [809f29efa](https://github.com/jquery/jquery-ui/commit/809f29efa79c3c9aba95e6d7ffef41f567cda3a5), [0940cb9bd](https://github.com/jquery/jquery-ui/commit/0940cb9bd2b8967c8eac15f3097933f5aee7e551), [0b7246b6e](https://github.com/jquery/jquery-ui/commit/0b7246b6eeadfa9e2696e22f3230f6452f8129dc)) + +## Core & Utilities + +### UI Core + +* Fixed: Rename from `.form()` to `._form()` since its not for public use ([trac-15074](https://bugs.jqueryui.com/ticket/15074), [0627eb364](https://github.com/jquery/jquery-ui/commit/0627eb3645009d868ae20a27d0a283acd5797a1f)) +* Fixed: Handle empty sets in Labels ([trac-15184](https://bugs.jqueryui.com/ticket/15184), [adcf9b6f6](https://github.com/jquery/jquery-ui/commit/adcf9b6f6ef9c6dfa88932b40307f581e65bc667)) +* Removed: `$.ui.escapeSelector` in favor of `$.escapeSelector` ([trac-14991](https://bugs.jqueryui.com/ticket/14991), [7c6a9f012](https://github.com/jquery/jquery-ui/commit/7c6a9f01281a9739f54ef57d7deecb41a873ef38)) + +### Widget Factory + +* Fixed: Boolean option when under use strict ([2434dfd45](https://github.com/jquery/jquery-ui/commit/2434dfd45d0805304e1db634d059feaa0bacf358)) +* Fixed: Handle `Object.create(null)` for options objects ([trac-15179](https://bugs.jqueryui.com/ticket/15179), [b3c0a7f71](https://github.com/jquery/jquery-ui/commit/b3c0a7f71d0b351755b97858ad47de4e9a373606)) +* Fixed: Improve `remove` event bindings for `classes` options ([trac-15078](https://bugs.jqueryui.com/ticket/15078), [trac-15082](https://bugs.jqueryui.com/ticket/15082), [trac-15095](https://bugs.jqueryui.com/ticket/15095), [trac-15136](https://bugs.jqueryui.com/ticket/15136), [trac-15152](https://bugs.jqueryui.com/ticket/15152), [ef2e9bab9](https://github.com/jquery/jquery-ui/commit/ef2e9bab92ae898311baa295590cd487d9071319)) +* Fixed: Don't swallow errors in `remove` events ([1f2011ece](https://github.com/jquery/jquery-ui/commit/1f2011ece3fe6847874677e9a8210fa202498ccb)) + +## Widgets + +### Autocomplete + +* Fixed: IE/Edge scrolling issues ([trac-9638](https://bugs.jqueryui.com/ticket/9638), [573e7e69c](https://github.com/jquery/jquery-ui/commit/573e7e69c9b63752fb06a15d60ec2dded839e093)) +* Fixed: Escape HTML tags in callback name to avoid XSS in demo ([trac-15048](https://bugs.jqueryui.com/ticket/15048), [69e66ea65](https://github.com/jquery/jquery-ui/commit/69e66ea6556584c39621c184f8f790a1011408ce)) + +### Button + +* Fixed: Backcompat when called on collection of mixed elements ([trac-15109](https://bugs.jqueryui.com/ticket/15109), [abc9e7ce2](https://github.com/jquery/jquery-ui/commit/abc9e7ce2f3b60a18bf1f461c7cbfccb3fa02b53)) + +### Checkboxradio + +* Fixed: Don't add ui-state-hover to icons ([trac-15055](https://bugs.jqueryui.com/ticket/15055), [b9d687deb](https://github.com/jquery/jquery-ui/commit/b9d687deb58cce5f4c6e27dace9cb172e291698c)) + +### Datepicker + +* Added: Add option for `onUpdateDatepicker` callback ([17d115b82](https://github.com/jquery/jquery-ui/commit/17d115b8298b935ab0d26b881d4f6f3e83984868), [a12c98574](https://github.com/jquery/jquery-ui/commit/a12c98574d07f002fd59d166f9fc1fd391581b91)) +* Added: German localization ([ddbcc5d29](https://github.com/jquery/jquery-ui/commit/ddbcc5d29d069336ddaeab221db91220b95da175)) +* Fixed: Get `selectedDay` from `data-date` instead of element contents ([cf938e286](https://github.com/jquery/jquery-ui/commit/cf938e286382cc8f6cb74b3c6f75275073672aeb)) +* Fixed: Make sure text options are text, shorten HTML strings ([trac-15284](https://bugs.jqueryui.com/ticket/15284), [afe20b79a](https://github.com/jquery/jquery-ui/commit/afe20b79a64266e64011f34b26a30b3d1c62fd47)) +* Fixed: Make sure `altField` is treated as a CSS selector ([32850869d](https://github.com/jquery/jquery-ui/commit/32850869d308d5e7c9bf3e3b4d483ea886d373ce)) +* Fixed: Hungarian localization to use uppercase for first characters ([9bb366ef8](https://github.com/jquery/jquery-ui/commit/9bb366ef8a710c06df924b2f6567cd5ed701cd44)) +* Fixed: Current instance memory leak and added unit testcases ([817ce3855](https://github.com/jquery/jquery-ui/commit/817ce38555f07981f929fb4b1229fc42574cf85c)) +* Fixed: Typo in `currentText` in `da` localization ([9c0d83f2e](https://github.com/jquery/jquery-ui/commit/9c0d83f2e55f6b33e650f8dcd6b53866601695fd)) +* Fixed: First day of week for `pt-PT` locale ([trac-15195](https://bugs.jqueryui.com/ticket/15195), [6fdd0e34a](https://github.com/jquery/jquery-ui/commit/6fdd0e34a74789d2da214739ea0f5a8feff71d7e)) +* Fixed: Swedish localization ([trac-15142](https://bugs.jqueryui.com/ticket/15142), [032ddc334](https://github.com/jquery/jquery-ui/commit/032ddc3349f625e0840aa8e266b5d8ebee994853)) +* Fixed: Prev/next button behavior with `showCurrentAtPos` ([trac-15102](https://bugs.jqueryui.com/ticket/15102), [17404ced4](https://github.com/jquery/jquery-ui/commit/17404ced478a235651513fa7bef3473ef1b039e8)) +* Fixed: Traditional Chinese translation ([trac-15060](https://bugs.jqueryui.com/ticket/15060), [129434384](https://github.com/jquery/jquery-ui/commit/12943438478e71db02e861b02cd406429fc3b080)) +* Fixed: Adapt `datepicker.js` for a11y ([b864cd103](https://github.com/jquery/jquery-ui/commit/b864cd103a0acb76b0a34fb1dd382dc0925ef9a8)) + +### Dialog + +* Fixed: Broken focus re-triggering in jQuery 3.4/3.5 ([834ee5f7c](https://github.com/jquery/jquery-ui/commit/834ee5f7cfb621b5f75292915a00319927a9a6d0)) +* Fixed: Shared event handler for modal dialogs ([trac-15182](https://bugs.jqueryui.com/ticket/15182), [5708046ea](https://github.com/jquery/jquery-ui/commit/5708046ea1ba4d6d86f431ec9fd32d28ae7542f6)) + +### Menu + +* Fixed: Account for scrollbars in jQuery 3.2 ([1712b9bbb](https://github.com/jquery/jquery-ui/commit/1712b9bbb2e214819508b00d8f318713e27cd949)) +* Fixed: Ignore mouse events triggered due to page scrolling ([trac-9356](https://bugs.jqueryui.com/ticket/9356), [50efd6e1b](https://github.com/jquery/jquery-ui/commit/50efd6e1b063822c4a0ecb38f324ed3354f387c4)) +* Fixed: Handle mouse movement mixed with keyboard navigation ([trac-9357](https://bugs.jqueryui.com/ticket/9357), [7d992ae29](https://github.com/jquery/jquery-ui/commit/7d992ae29d27cdab8787691a14e689e60c74c05c)) +* Fixed: Don't focus dividers when wrapping via keyboard navigation ([trac-15157](https://bugs.jqueryui.com/ticket/15157), [a3e953b49](https://github.com/jquery/jquery-ui/commit/a3e953b495905d0c67790e65032841451b470ce1)) +* Fixed: Close menus immediately on selection or click outside ([trac-15034](https://bugs.jqueryui.com/ticket/15034), [0d25a36ee](https://github.com/jquery/jquery-ui/commit/0d25a36eecb9e5598596208e4852b3c3fdbf5510)) + +### Selectmenu + +* Fixed: Don't render options with the `hidden` attribute ([trac-15098](https://bugs.jqueryui.com/ticket/15098), [a2b25ef6c](https://github.com/jquery/jquery-ui/commit/a2b25ef6caae3e1a272214839b815a6387618124)) + +### Slider + +* Changed: Use `cursor: pointer` on handles ([trac-9371](https://bugs.jqueryui.com/ticket/9371), [c6e2b52d7](https://github.com/jquery/jquery-ui/commit/c6e2b52d70b8caf920f382402aba9f04de7e32b2)) + +### Spinner + +* Spinner: Ignore `mousewheel` events when not focused ([trac-15139](https://bugs.jqueryui.com/ticket/15139), [a3b9129be](https://github.com/jquery/jquery-ui/commit/a3b9129be19afabb3fa6b2fb913b85aab43f4652)) +* Spinner: Fix typo ([863a49f95](https://github.com/jquery/jquery-ui/commit/863a49f95b181adaf76cbaf268e4ecf5485dbcf1)) + +### Tabs + +* Fixed: Don't blur focused tab on sort ([trac-14627](https://bugs.jqueryui.com/ticket/14627), [f1fa076f6](https://github.com/jquery/jquery-ui/commit/f1fa076f62e99089257f6f8159cb2ce503f0abc2)) +* Fixed: Remove presentation role ([trac-10122](https://bugs.jqueryui.com/ticket/10122), [b9ffc3471](https://github.com/jquery/jquery-ui/commit/b9ffc34710212fd910717ab735818ef265c9372e)) + +### Tooltip + +* Fixed: Clear interval for delayed tracking tooltips on remove ([trac-15099](https://bugs.jqueryui.com/ticket/15099), [9a4c05715](https://github.com/jquery/jquery-ui/commit/9a4c0571577e20795c19796594747f0f8beb476a)) + +## Interactions + +### Droppable + +* Fixed: Use `$.ui.intersect()` ([trac-14963](https://bugs.jqueryui.com/ticket/14963), [fd30534b7](https://github.com/jquery/jquery-ui/commit/fd30534b73eaf9c076f93a349dbe0c7a77efc209)) + +### Focusable + +* Fixed: Handling of `visibility: collapse` ([f5d38e2e0](https://github.com/jquery/jquery-ui/commit/f5d38e2e05bd54073c2bf8e8210b78b2cf2637d8)) + +### Position + +* Fixed: Make sure `of` is treated as a CSS selector ([effa323f1](https://github.com/jquery/jquery-ui/commit/effa323f1505f2ce7a324e4f429fa9032c72f280)) +* Fixed: Increase scrollbar test div to handle larger scrollbars ([trac-15106](https://bugs.jqueryui.com/ticket/15106), [efb1fee02](https://github.com/jquery/jquery-ui/commit/efb1fee02b53c8fc17c3ffe68162f51b583e75f0)) + +### Resizable + +* Fixed: CSP violation (style `unsafe-inline`) ([dadde722a](https://github.com/jquery/jquery-ui/commit/dadde722a40ee41bd721e7d4609ee190815055c2)) +* Fixed: Keep user-provided handles on destroy ([c426b9a20](https://github.com/jquery/jquery-ui/commit/c426b9a203271ab5e5e5f165a1d686c8281164bf)) +* Fixed: Keep user defined handles on `_setOption` ([trac-15084](https://bugs.jqueryui.com/ticket/15084), [278d1e110](https://github.com/jquery/jquery-ui/commit/278d1e1108e6c12d35be9edce2a9efcab1946229)) +* Fixed: `aspectRatio` cannot be changed after initialization. ([trac-4186](https://bugs.jqueryui.com/ticket/4186), [c481400f2](https://github.com/jquery/jquery-ui/commit/c481400f222c871ba5853bc2930a3b8b4375d08b)) + +### Sortable + +* Sortable: Remove reference to .disableSelection() from demos ([d193d0ba8](https://github.com/jquery/jquery-ui/commit/d193d0ba8532206763b666bcc62665b357aef021)) +* Sortable: Fix various scrolling issues ([trac-3173](https://bugs.jqueryui.com/ticket/3173), [trac-15165](https://bugs.jqueryui.com/ticket/15165), [trac-15166](https://bugs.jqueryui.com/ticket/15166), [trac-15167](https://bugs.jqueryui.com/ticket/15167), [trac-15168](https://bugs.jqueryui.com/ticket/15168), [trac-15169](https://bugs.jqueryui.com/ticket/15169), [trac-15170](https://bugs.jqueryui.com/ticket/15170), [c866e4553](https://github.com/jquery/jquery-ui/commit/c866e455373028a62a0956455a229fef63e91fac)) +* Sortable: Fix `z-index` switching from `auto` to `0` ([trac-14683](https://bugs.jqueryui.com/ticket/14683), [9c5ce4c3e](https://github.com/jquery/jquery-ui/commit/9c5ce4c3e986136b8dce14b6b1ccd5296d932f01)) +* Sortable: Setting table row placeholder height to be same as sorted row ([trac-13662](https://bugs.jqueryui.com/ticket/13662), [87eab46a5](https://github.com/jquery/jquery-ui/commit/87eab46a589031d781299937f95f22bf61b5ef27)) +* Sortable: Fix parent offset detection ([trac-15021](https://bugs.jqueryui.com/ticket/15021), [1d409528a](https://github.com/jquery/jquery-ui/commit/1d409528a164c550e4e167c367f33ab3b7ad0e66)) + +## CSS + +* Removed: CSS for `ui-state-checked` as it's not used any more ([trac-15059](https://bugs.jqueryui.com/ticket/15059), [1b0e947f4](https://github.com/jquery/jquery-ui/commit/1b0e947f46bc1261b15816f2dcbd239d83a86335)) +* Fixed: Resolve csslint issues with the IE filter property ([b15e45a45](https://github.com/jquery/jquery-ui/commit/b15e45a45100ad8e64ef0d362380d9aa27fe6862)) +* Fixed: Don't load the image sprite for 'ui-icon-blank' ([43254468d](https://github.com/jquery/jquery-ui/commit/43254468de7d69b5422e667ba7ebbe864fc34a63)) +* Fixed: Replace missing definition for default icons ([dde9b83df](https://github.com/jquery/jquery-ui/commit/dde9b83df61d1d676e66cb2a2f7970dd44a05137)) +* Fixed: Switch icon background to use bgColorContent ([265b8f5e5](https://github.com/jquery/jquery-ui/commit/265b8f5e533923b9b4c9cbd9f1dd7b7785423381)) +* Changed: Optimize images ([d85c68f6c](https://github.com/jquery/jquery-ui/commit/d85c68f6cdc02266ab8972e5c4159514b4d2598f)) +* Changed: Optimize PNG files with zopflipng ([cc37fe76a](https://github.com/jquery/jquery-ui/commit/cc37fe76aac4a09c37de83178e2c818c4400dff6)) + +## Build + +* Changed: Update npm dependencies ([491ecc1bd](https://github.com/jquery/jquery-ui/commit/491ecc1bd5c48a24d8a4bcff6f74ca368b37fdf3), [91b6fc3f0](https://github.com/jquery/jquery-ui/commit/91b6fc3f08a6256ebb8006f96661db163aa8b5bc), [a22361dbe](https://github.com/jquery/jquery-ui/commit/a22361dbe491c494a87f38600d9c1f91aa07d3e0)) +* Changed: Don't publish `dist/cdn` to npm ([74af51279](https://github.com/jquery/jquery-ui/commit/74af51279419b2f901cfbacbbecd47136b3d7569)) +* Changed: Update dependencies passed to `jquery-release` ([399c81e07](https://github.com/jquery/jquery-ui/commit/399c81e077823f83faf18d9366e5a09d1c0734a2)) +* Changed: Migrate from JSHint & JSCS to ESLint ([trac-15393](https://bugs.jqueryui.com/ticket/15393), [70dae67b7](https://github.com/jquery/jquery-ui/commit/70dae67b73dfea9126f126f516fe8286f1e73417)) +* Changed: Rename the primary branch `master` to `main` ([19c628675](https://github.com/jquery/jquery-ui/commit/19c628675dadc714616af975969694267f3840df)) +* Changed: Rename `jquery-1-7` to `jquery-patch` ([7caf8f61d](https://github.com/jquery/jquery-ui/commit/7caf8f61df7840fb3de2478a75aec229d9f84f15)) diff --git a/page/changelog/1.13.0-rc.3.md b/page/changelog/1.13.0-rc.3.md new file mode 100644 index 0000000..0f82d07 --- /dev/null +++ b/page/changelog/1.13.0-rc.3.md @@ -0,0 +1,16 @@ + + +Released on September 25, 2021, listing changes since [1.13.0-rc.2](/changelog/1.13.0-rc.2/). + +## CSS + +* Fixed: Revert three theme commits that are causing styling issues (#1983) ([0fe05e522](https://github.com/jquery/jquery-ui/commit/0fe05e52231502a31bbb1048e8ac7c8276b48a57)) +* Fixed: Fix blank icons having a background ([87656cdf5](https://github.com/jquery/jquery-ui/commit/87656cdf576f1b56dbd6cd731d3830a993c42d26)) + +## Build + +* Changed: Require jQuery `>=1.8.0 <4.0.0`, not `>=1.6` in bower.json ([b0ed787d1](https://github.com/jquery/jquery-ui/commit/b0ed787d18e606afd81f941065ba35f291ffb245)) +* Changed: Update jQuery used for demos to 3.6.0 ([f381ec051](https://github.com/jquery/jquery-ui/commit/f381ec0513a896332a2bcfc1b53b77353adae9cc)) + diff --git a/page/changelog/1.13.0.md b/page/changelog/1.13.0.md new file mode 100644 index 0000000..5c738a2 --- /dev/null +++ b/page/changelog/1.13.0.md @@ -0,0 +1,140 @@ + + +Released on October 7, 2021 + +## General + +* Removed: Support for jQuery 1.7.x ([b61b16b5a](https://github.com/jquery/jquery-ui/commit/b61b16b5a89ee27b30efdf7635d897af810af130)) +* Fixed: Stop using deprecated jQuery APIs, resolve jQuery Migrate warnings ([f4ef03e57](https://github.com/jquery/jquery-ui/commit/f4ef03e57edd7e51cb134e902679c7bddc3daaee), [0c860b0d9](https://github.com/jquery/jquery-ui/commit/0c860b0d92f9959f6747f8c02e9671eb2fc561aa), [995b5faec](https://github.com/jquery/jquery-ui/commit/995b5faec966b608ba15ed2a68c1f1565f77053b), [98b539171](https://github.com/jquery/jquery-ui/commit/98b539171b6e805fa79346a5e9896865e5213b9c), [809f29efa](https://github.com/jquery/jquery-ui/commit/809f29efa79c3c9aba95e6d7ffef41f567cda3a5), [0940cb9bd](https://github.com/jquery/jquery-ui/commit/0940cb9bd2b8967c8eac15f3097933f5aee7e551), [0b7246b6e](https://github.com/jquery/jquery-ui/commit/0b7246b6eeadfa9e2696e22f3230f6452f8129dc)) + +## Core & Utilities + +### UI Core + +* Fixed: Rename from `.form()` to `._form()` since its not for public use ([trac-15074](https://bugs.jqueryui.com/ticket/15074), [0627eb364](https://github.com/jquery/jquery-ui/commit/0627eb3645009d868ae20a27d0a283acd5797a1f)) +* Fixed: Handle empty sets in Labels ([trac-15184](https://bugs.jqueryui.com/ticket/15184), [adcf9b6f6](https://github.com/jquery/jquery-ui/commit/adcf9b6f6ef9c6dfa88932b40307f581e65bc667)) +* Removed: `$.ui.escapeSelector` in favor of `$.escapeSelector` ([trac-14991](https://bugs.jqueryui.com/ticket/14991), [7c6a9f012](https://github.com/jquery/jquery-ui/commit/7c6a9f01281a9739f54ef57d7deecb41a873ef38)) + +### Widget Factory + +* Fixed: Boolean option when under use strict ([2434dfd45](https://github.com/jquery/jquery-ui/commit/2434dfd45d0805304e1db634d059feaa0bacf358)) +* Fixed: Handle `Object.create(null)` for options objects ([trac-15179](https://bugs.jqueryui.com/ticket/15179), [b3c0a7f71](https://github.com/jquery/jquery-ui/commit/b3c0a7f71d0b351755b97858ad47de4e9a373606)) +* Fixed: Improve `remove` event bindings for `classes` options ([trac-15078](https://bugs.jqueryui.com/ticket/15078), [trac-15082](https://bugs.jqueryui.com/ticket/15082), [trac-15095](https://bugs.jqueryui.com/ticket/15095), [trac-15136](https://bugs.jqueryui.com/ticket/15136), [trac-15152](https://bugs.jqueryui.com/ticket/15152), [ef2e9bab9](https://github.com/jquery/jquery-ui/commit/ef2e9bab92ae898311baa295590cd487d9071319)) +* Fixed: Don't swallow errors in `remove` events ([1f2011ece](https://github.com/jquery/jquery-ui/commit/1f2011ece3fe6847874677e9a8210fa202498ccb)) + +## Widgets + +### Autocomplete + +* Fixed: IE/Edge scrolling issues ([trac-9638](https://bugs.jqueryui.com/ticket/9638), [573e7e69c](https://github.com/jquery/jquery-ui/commit/573e7e69c9b63752fb06a15d60ec2dded839e093)) +* Fixed: Escape HTML tags in callback name to avoid XSS in demo ([trac-15048](https://bugs.jqueryui.com/ticket/15048), [69e66ea65](https://github.com/jquery/jquery-ui/commit/69e66ea6556584c39621c184f8f790a1011408ce)) + +### Button + +* Fixed: Backcompat when called on collection of mixed elements ([trac-15109](https://bugs.jqueryui.com/ticket/15109), [abc9e7ce2](https://github.com/jquery/jquery-ui/commit/abc9e7ce2f3b60a18bf1f461c7cbfccb3fa02b53)) + +### Checkboxradio + +* Fixed: Don't add ui-state-hover to icons ([trac-15055](https://bugs.jqueryui.com/ticket/15055), [b9d687deb](https://github.com/jquery/jquery-ui/commit/b9d687deb58cce5f4c6e27dace9cb172e291698c)) + +### Datepicker + +* Added: Add option for `onUpdateDatepicker` callback ([17d115b82](https://github.com/jquery/jquery-ui/commit/17d115b8298b935ab0d26b881d4f6f3e83984868), [a12c98574](https://github.com/jquery/jquery-ui/commit/a12c98574d07f002fd59d166f9fc1fd391581b91)) +* Added: German localization ([ddbcc5d29](https://github.com/jquery/jquery-ui/commit/ddbcc5d29d069336ddaeab221db91220b95da175)) +* Fixed: Get `selectedDay` from `data-date` instead of element contents ([cf938e286](https://github.com/jquery/jquery-ui/commit/cf938e286382cc8f6cb74b3c6f75275073672aeb)) +* Fixed: Make sure text options are text, shorten HTML strings ([CVE-2021-41183](https://github.com/jquery/jquery-ui/security/advisories/GHSA-j7qv-pgf6-hvh4), [trac-15284](https://bugs.jqueryui.com/ticket/15284), [afe20b79a](https://github.com/jquery/jquery-ui/commit/afe20b79a64266e64011f34b26a30b3d1c62fd47)) +* Fixed: Make sure `altField` is treated as a CSS selector ([CVE-2021-41182](https://github.com/jquery/jquery-ui/security/advisories/GHSA-9gj3-hwp5-pmwc), [32850869d](https://github.com/jquery/jquery-ui/commit/32850869d308d5e7c9bf3e3b4d483ea886d373ce)) +* Fixed: Hungarian localization to use uppercase for first characters ([9bb366ef8](https://github.com/jquery/jquery-ui/commit/9bb366ef8a710c06df924b2f6567cd5ed701cd44)) +* Fixed: Current instance memory leak and added unit testcases ([817ce3855](https://github.com/jquery/jquery-ui/commit/817ce38555f07981f929fb4b1229fc42574cf85c)) +* Fixed: Typo in `currentText` in `da` localization ([9c0d83f2e](https://github.com/jquery/jquery-ui/commit/9c0d83f2e55f6b33e650f8dcd6b53866601695fd)) +* Fixed: First day of week for `pt-PT` locale ([trac-15195](https://bugs.jqueryui.com/ticket/15195), [6fdd0e34a](https://github.com/jquery/jquery-ui/commit/6fdd0e34a74789d2da214739ea0f5a8feff71d7e)) +* Fixed: Swedish localization ([trac-15142](https://bugs.jqueryui.com/ticket/15142), [032ddc334](https://github.com/jquery/jquery-ui/commit/032ddc3349f625e0840aa8e266b5d8ebee994853)) +* Fixed: Prev/next button behavior with `showCurrentAtPos` ([trac-15102](https://bugs.jqueryui.com/ticket/15102), [17404ced4](https://github.com/jquery/jquery-ui/commit/17404ced478a235651513fa7bef3473ef1b039e8)) +* Fixed: Traditional Chinese translation ([trac-15060](https://bugs.jqueryui.com/ticket/15060), [129434384](https://github.com/jquery/jquery-ui/commit/12943438478e71db02e861b02cd406429fc3b080)) +* Fixed: Adapt `datepicker.js` for a11y ([b864cd103](https://github.com/jquery/jquery-ui/commit/b864cd103a0acb76b0a34fb1dd382dc0925ef9a8)) + +### Dialog + +* Fixed: Broken focus re-triggering in jQuery 3.4/3.5 ([834ee5f7c](https://github.com/jquery/jquery-ui/commit/834ee5f7cfb621b5f75292915a00319927a9a6d0)) +* Fixed: Shared event handler for modal dialogs ([trac-15182](https://bugs.jqueryui.com/ticket/15182), [5708046ea](https://github.com/jquery/jquery-ui/commit/5708046ea1ba4d6d86f431ec9fd32d28ae7542f6)) + +### Menu + +* Fixed: Account for scrollbars in jQuery 3.2 ([1712b9bbb](https://github.com/jquery/jquery-ui/commit/1712b9bbb2e214819508b00d8f318713e27cd949)) +* Fixed: Ignore mouse events triggered due to page scrolling ([trac-9356](https://bugs.jqueryui.com/ticket/9356), [50efd6e1b](https://github.com/jquery/jquery-ui/commit/50efd6e1b063822c4a0ecb38f324ed3354f387c4)) +* Fixed: Handle mouse movement mixed with keyboard navigation ([trac-9357](https://bugs.jqueryui.com/ticket/9357), [7d992ae29](https://github.com/jquery/jquery-ui/commit/7d992ae29d27cdab8787691a14e689e60c74c05c)) +* Fixed: Don't focus dividers when wrapping via keyboard navigation ([trac-15157](https://bugs.jqueryui.com/ticket/15157), [a3e953b49](https://github.com/jquery/jquery-ui/commit/a3e953b495905d0c67790e65032841451b470ce1)) +* Fixed: Close menus immediately on selection or click outside ([trac-15034](https://bugs.jqueryui.com/ticket/15034), [0d25a36ee](https://github.com/jquery/jquery-ui/commit/0d25a36eecb9e5598596208e4852b3c3fdbf5510)) + +### Selectmenu + +* Fixed: Don't render options with the `hidden` attribute ([trac-15098](https://bugs.jqueryui.com/ticket/15098), [a2b25ef6c](https://github.com/jquery/jquery-ui/commit/a2b25ef6caae3e1a272214839b815a6387618124)) + +### Slider + +* Changed: Use `cursor: pointer` on handles ([trac-9371](https://bugs.jqueryui.com/ticket/9371), [c6e2b52d7](https://github.com/jquery/jquery-ui/commit/c6e2b52d70b8caf920f382402aba9f04de7e32b2)) + +### Spinner + +* Spinner: Ignore `mousewheel` events when not focused ([trac-15139](https://bugs.jqueryui.com/ticket/15139), [a3b9129be](https://github.com/jquery/jquery-ui/commit/a3b9129be19afabb3fa6b2fb913b85aab43f4652)) +* Spinner: Fix typo ([863a49f95](https://github.com/jquery/jquery-ui/commit/863a49f95b181adaf76cbaf268e4ecf5485dbcf1)) + +### Tabs + +* Fixed: Don't blur focused tab on sort ([trac-14627](https://bugs.jqueryui.com/ticket/14627), [f1fa076f6](https://github.com/jquery/jquery-ui/commit/f1fa076f62e99089257f6f8159cb2ce503f0abc2)) +* Fixed: Remove presentation role ([trac-10122](https://bugs.jqueryui.com/ticket/10122), [b9ffc3471](https://github.com/jquery/jquery-ui/commit/b9ffc34710212fd910717ab735818ef265c9372e)) + +### Tooltip + +* Fixed: Clear interval for delayed tracking tooltips on remove ([trac-15099](https://bugs.jqueryui.com/ticket/15099), [9a4c05715](https://github.com/jquery/jquery-ui/commit/9a4c0571577e20795c19796594747f0f8beb476a)) + +## Interactions + +### Droppable + +* Fixed: Use `$.ui.intersect()` ([trac-14963](https://bugs.jqueryui.com/ticket/14963), [fd30534b7](https://github.com/jquery/jquery-ui/commit/fd30534b73eaf9c076f93a349dbe0c7a77efc209)) + +### Focusable + +* Fixed: Handling of `visibility: collapse` ([f5d38e2e0](https://github.com/jquery/jquery-ui/commit/f5d38e2e05bd54073c2bf8e8210b78b2cf2637d8)) + +### Position + +* Fixed: Make sure `of` is treated as a CSS selector ([CVE-2021-41184](https://github.com/jquery/jquery-ui/security/advisories/GHSA-gpqq-952q-5327), [effa323f1](https://github.com/jquery/jquery-ui/commit/effa323f1505f2ce7a324e4f429fa9032c72f280)) +* Fixed: Increase scrollbar test div to handle larger scrollbars ([trac-15106](https://bugs.jqueryui.com/ticket/15106), [efb1fee02](https://github.com/jquery/jquery-ui/commit/efb1fee02b53c8fc17c3ffe68162f51b583e75f0)) + +### Resizable + +* Fixed: CSP violation (style `unsafe-inline`) ([dadde722a](https://github.com/jquery/jquery-ui/commit/dadde722a40ee41bd721e7d4609ee190815055c2)) +* Fixed: Keep user-provided handles on destroy ([c426b9a20](https://github.com/jquery/jquery-ui/commit/c426b9a203271ab5e5e5f165a1d686c8281164bf)) +* Fixed: Keep user defined handles on `_setOption` ([trac-15084](https://bugs.jqueryui.com/ticket/15084), [278d1e110](https://github.com/jquery/jquery-ui/commit/278d1e1108e6c12d35be9edce2a9efcab1946229)) +* Fixed: `aspectRatio` cannot be changed after initialization. ([trac-4186](https://bugs.jqueryui.com/ticket/4186), [c481400f2](https://github.com/jquery/jquery-ui/commit/c481400f222c871ba5853bc2930a3b8b4375d08b)) + +### Sortable + +* Sortable: Remove reference to .disableSelection() from demos ([d193d0ba8](https://github.com/jquery/jquery-ui/commit/d193d0ba8532206763b666bcc62665b357aef021)) +* Sortable: Fix various scrolling issues ([trac-3173](https://bugs.jqueryui.com/ticket/3173), [trac-15165](https://bugs.jqueryui.com/ticket/15165), [trac-15166](https://bugs.jqueryui.com/ticket/15166), [trac-15167](https://bugs.jqueryui.com/ticket/15167), [trac-15168](https://bugs.jqueryui.com/ticket/15168), [trac-15169](https://bugs.jqueryui.com/ticket/15169), [trac-15170](https://bugs.jqueryui.com/ticket/15170), [c866e4553](https://github.com/jquery/jquery-ui/commit/c866e455373028a62a0956455a229fef63e91fac)) +* Sortable: Fix `z-index` switching from `auto` to `0` ([trac-14683](https://bugs.jqueryui.com/ticket/14683), [9c5ce4c3e](https://github.com/jquery/jquery-ui/commit/9c5ce4c3e986136b8dce14b6b1ccd5296d932f01)) +* Sortable: Setting table row placeholder height to be same as sorted row ([trac-13662](https://bugs.jqueryui.com/ticket/13662), [87eab46a5](https://github.com/jquery/jquery-ui/commit/87eab46a589031d781299937f95f22bf61b5ef27)) +* Sortable: Fix parent offset detection ([trac-15021](https://bugs.jqueryui.com/ticket/15021), [1d409528a](https://github.com/jquery/jquery-ui/commit/1d409528a164c550e4e167c367f33ab3b7ad0e66)) + +## CSS + +* Fixed: Resolve csslint issues with the IE filter property ([b15e45a45](https://github.com/jquery/jquery-ui/commit/b15e45a45100ad8e64ef0d362380d9aa27fe6862)) +* Fixed: Don't load the image sprite for 'ui-icon-blank' ([43254468d](https://github.com/jquery/jquery-ui/commit/43254468de7d69b5422e667ba7ebbe864fc34a63), [87656cdf5](https://github.com/jquery/jquery-ui/commit/87656cdf576f1b56dbd6cd731d3830a993c42d26)) +* Changed: Optimize images ([d85c68f6c](https://github.com/jquery/jquery-ui/commit/d85c68f6cdc02266ab8972e5c4159514b4d2598f)) +* Changed: Optimize PNG files with zopflipng ([cc37fe76a](https://github.com/jquery/jquery-ui/commit/cc37fe76aac4a09c37de83178e2c818c4400dff6)) + +## Build + +* Changed: Update npm dependencies ([491ecc1bd](https://github.com/jquery/jquery-ui/commit/491ecc1bd5c48a24d8a4bcff6f74ca368b37fdf3), [91b6fc3f0](https://github.com/jquery/jquery-ui/commit/91b6fc3f08a6256ebb8006f96661db163aa8b5bc), [a22361dbe](https://github.com/jquery/jquery-ui/commit/a22361dbe491c494a87f38600d9c1f91aa07d3e0)) +* Changed: Don't publish `dist/cdn` to npm ([74af51279](https://github.com/jquery/jquery-ui/commit/74af51279419b2f901cfbacbbecd47136b3d7569)) +* Changed: Update dependencies passed to `jquery-release` ([399c81e07](https://github.com/jquery/jquery-ui/commit/399c81e077823f83faf18d9366e5a09d1c0734a2)) +* Changed: Migrate from JSHint & JSCS to ESLint ([trac-15393](https://bugs.jqueryui.com/ticket/15393), [70dae67b7](https://github.com/jquery/jquery-ui/commit/70dae67b73dfea9126f126f516fe8286f1e73417)) +* Changed: Rename the primary branch `master` to `main` ([19c628675](https://github.com/jquery/jquery-ui/commit/19c628675dadc714616af975969694267f3840df)) +* Changed: Rename `jquery-1-7` to `jquery-patch` ([7caf8f61d](https://github.com/jquery/jquery-ui/commit/7caf8f61df7840fb3de2478a75aec229d9f84f15)) +* Changed: Require jQuery `>=1.8.0 <4.0.0`, not `>=1.6` in bower.json ([b0ed787d1](https://github.com/jquery/jquery-ui/commit/b0ed787d18e606afd81f941065ba35f291ffb245)) +* Changed: Update jQuery used for demos to 3.6.0 ([f381ec051](https://github.com/jquery/jquery-ui/commit/f381ec0513a896332a2bcfc1b53b77353adae9cc)) + diff --git a/page/changelog/1.13.1.md b/page/changelog/1.13.1.md new file mode 100644 index 0000000..a26b997 --- /dev/null +++ b/page/changelog/1.13.1.md @@ -0,0 +1,34 @@ + + +Released on January 20, 2022 + +## Core & Utilities + +### Widget factory + +* Fixed: Optimize attachment of the _untrackClassesElement listener ([#2014](https://github.com/jquery/jquery-ui/issues/2014), [0c5becce0](https://github.com/jquery/jquery-ui/commit/0c5becce0e395b89de0f526e857e7ca2717d4ab2)) +* Fixed: Make contextless widget construction work ([#2015](https://github.com/jquery/jquery-ui/issues/2015), [ed637b04d](https://github.com/jquery/jquery-ui/commit/ed637b04d75e4ebd6ea523f23e6dee7f64b68145)) + +## Widgets + +### Autocomplete + +* Fixed: Rewrite with a delay instead of appending the live region ([#2002](https://github.com/jquery/jquery-ui/issues/2002), [933ce5d77](https://github.com/jquery/jquery-ui/commit/933ce5d779135ad04734f14c50b38f9a8d8564f5)) + +### Tooltip + +* Fixed: Don't crash on empty content ([#1990](https://github.com/jquery/jquery-ui/issues/1990), [85fba3f10](https://github.com/jquery/jquery-ui/commit/85fba3f107a4a03bdac43f06c81ab2f2a3c2fea5)) + +## Interactions + +### Sortable + +* Fixed: Fix positioning when moving a Draggable item into a Sortable ([#2001](https://github.com/jquery/jquery-ui/issues/2001), [b52ee4012](https://github.com/jquery/jquery-ui/commit/b52ee4012d13e2f531a39fe0a53366e119dd1501)) +* Fixed: Allow 0-height containers to be sortable as in 1.12.1 ([#1998](https://github.com/jquery/jquery-ui/issues/1998), [efe3b2251](https://github.com/jquery/jquery-ui/commit/efe3b225179f8f2f3f2c05484f7757f90bc5a27b)) + +## Build + +* Changed: Update the bug tracker from bugs.jqueryui.com to GitHub ([1f0851b53](https://github.com/jquery/jquery-ui/commit/1f0851b5381143e78d4ded1877b2a0e4d2aec5ca)) +* Changed: Switch from Travis to GitHub actions ([e0a78d440](https://github.com/jquery/jquery-ui/commit/e0a78d440048c9a192713c1dac0529cfbacbe993)) diff --git a/page/changelog/1.13.2.md b/page/changelog/1.13.2.md new file mode 100644 index 0000000..5b91c0b --- /dev/null +++ b/page/changelog/1.13.2.md @@ -0,0 +1,30 @@ + + +Released on July 14, 2022 + +## Widgets + +### Checkboxradio + +* Fixed: Don't re-evaluate text labels as HTML ([#2101](https://github.com/jquery/jquery-ui/issues/2101), [8cc5bae1c](https://github.com/jquery/jquery-ui/commit/8cc5bae1caa1fcf96bf5862c5646c787020ba3f9)) + +### Datepicker + +* Fixed: Capitalize some Indonesian words ([9d1fc97b4](https://github.com/jquery/jquery-ui/commit/9d1fc97b4ea5c364b8f1c7d9ab2a3c28f8c594e7)) +* Fixed: Add missing localization for prevText and nextText ([#2048](https://github.com/jquery/jquery-ui/issues/2048), [395aa7d05](https://github.com/jquery/jquery-ui/commit/395aa7d05601aa1f2ebeae272f81f0014c0cae90)) +* Fixed: Remove symbols in localization ([#2048](https://github.com/jquery/jquery-ui/issues/2048), [218c6af95](https://github.com/jquery/jquery-ui/commit/218c6af95a5d72134c1b32220995b161c56a1453), [3126e1286](https://github.com/jquery/jquery-ui/commit/3126e128691fd9fa78f33930ba9cb37609d0a64f)) + +### Selectmenu + +* Fixed: Remove a call to the deprecated .focus() method ([1f467baaa](https://github.com/jquery/jquery-ui/commit/1f467baaacf0f9927cb73482a9f3ac0253739c4a)) + +### All + +* Fixed: Remove deprecated .click() usage in demos/tests ([b53e7beb6](https://github.com/jquery/jquery-ui/commit/b53e7beb6884a8de7710146112bc48aecd8737b4)) + +## Build + +* Changed: Add dependabot.yml config (GitHub Actions) ([d66fdd5c9](https://github.com/jquery/jquery-ui/commit/d66fdd5c9a1afac13138c7f48b068c36236b9358)) +* Changed: Include all the files published to the CDN in npm/Bower packages ([#2011](https://github.com/jquery/jquery-ui/issues/2011), [e21a2543b](https://github.com/jquery/jquery-ui/commit/e21a2543b55680f23aaa7efa38f3288b8e767e7d)) diff --git a/page/changelog/1.13.3.md b/page/changelog/1.13.3.md new file mode 100644 index 0000000..e7fe48b --- /dev/null +++ b/page/changelog/1.13.3.md @@ -0,0 +1,45 @@ + + +Released on April 26, 2024 + +## Core & Utilities + +### UI Core + +* Fixed: Fix dependencies in ui/core.js ([#2107](https://github.com/jquery/jquery-ui/issues/2107), [5fa0db48d](https://github.com/jquery/jquery-ui/commit/5fa0db48d73887facf891eb05b43c443b5baeca3)) +* Fixed: Fix IE `-ms-filter` property values ([#2190](https://github.com/jquery/jquery-ui/issues/2190), [jquery/jquery-ui-themeroller#19](https://github.com/jquery/jquery-ui-themeroller/pull/19), [jquery/download.jqueryui.com#612](https://github.com/jquery/download.jqueryui.com/pull/612)) + +## Widgets + +### Dialog + +* Fixed: Fix IE dialog focus handling with jQuery <3.7 ([7adb13ac7](https://github.com/jquery/jquery-ui/commit/7adb13ac7c30a7ba33f1db256952be77b9e7a310)) + +### Selectmenu + +* Fixed: Fix selecting options following hidden ones via the `hidden` attribute ([#2082](https://github.com/jquery/jquery-ui/issues/2082), [020828e7f](https://github.com/jquery/jquery-ui/commit/020828e7ffd5e7830d979b4c5cf8412f04223973)) + +## Interactions + +### Resizable + +* Fixed: Fix resizing of elems with `box-sizing: border-box` ([#1979](https://github.com/jquery/jquery-ui/issues/1979), [#2083](https://github.com/jquery/jquery-ui/issues/2083), [62f2ccc56](https://github.com/jquery/jquery-ui/commit/62f2ccc5678a8b09df85afd006eb623ac38af189)) + +## Build + +* Added: Add a maintenance mode info to README ([988b73d20](https://github.com/jquery/jquery-ui/commit/988b73d20fb555131827e4585a7fcfbaf1ae15d9)) +* Added: Add a security policy in SECURITY.md ([4bae79d53](https://github.com/jquery/jquery-ui/commit/4bae79d534aa62a6383d12cbfbeb1d0eea4afe8b)) +* Added: Align test runner with other repos ([4af5caed7](https://github.com/jquery/jquery-ui/commit/4af5caed7a16cc0aca6b8f2b65ab0d697df139eb)), ([91df20be6](https://github.com/jquery/jquery-ui/commit/91df20be6b488ac6cf4da291d7ee3aa5d6feac73)) +* Fixed: Replace search.php with $.ajaxTransport() mock in demos ([604aae1a5](https://github.com/jquery/jquery-ui/commit/604aae1a5739f4b1980959ceed024e44619f6c7e)) +* Fixed: Avoid self-closing HTML tags in demos/tests ([0977ea1b4](https://github.com/jquery/jquery-ui/commit/0977ea1b48355bfddc98cb16673ea8b627904dab)) +* Fixed: remove a duplicated "be" in an accordion demo ([4da7a30ff](https://github.com/jquery/jquery-ui/commit/4da7a30ff4d3ebd733fa538a0253d114ca0fc348)) +* Changed: Update JS Foundation mentions to OpenJS Foundation ([0df6e6583](https://github.com/jquery/jquery-ui/commit/0df6e658307f8936a477deb9674d643d18a2469b)) +* Changed: Change Node tested versions from 10/16/18 to 10/18/20 ([2de8604b6](https://github.com/jquery/jquery-ui/commit/2de8604b67983a53fd42b24610a59e140a1425e9)) +* Changed: Fork vendors to remove QUnit deprecated API usage ([546214e86](https://github.com/jquery/jquery-ui/commit/546214e86956804a1b02da173a4c6c5ddea11454)) +* Changed: Update dependencies, including QUnit 1 -> 2 ([f68d655af](https://github.com/jquery/jquery-ui/commit/f68d655aff81273d431d5e58bc8af775fc9bd231)) +* Changed: Optimize PNG files in selectmenu demos ([827abdfcc](https://github.com/jquery/jquery-ui/commit/827abdfccd13033a7cd0c5d83b213d38f20a4fa2)) +* Changed: Better wording for the purposefully broken tab demo ([455884470](https://github.com/jquery/jquery-ui/commit/455884470c269939411d1704949a89f7e8d9ec7c)) +* Changed: Update HTTP URLs to HTTPS ([8e34aa615](https://github.com/jquery/jquery-ui/commit/8e34aa6155d2c0770962c42d49a696183fe6d80f)), ([4966aea38](https://github.com/jquery/jquery-ui/commit/4966aea381403ce368c17bcf4b2ecd836c82487d)) +* Changed: Switch from QUnit.jsDump to QUnit.dump ([f36fe9e50](https://github.com/jquery/jquery-ui/commit/f36fe9e50d2a83a9bc5c4eb18fdfd5abe754e300)) diff --git a/page/changelog/1.14.0-beta.1.md b/page/changelog/1.14.0-beta.1.md new file mode 100644 index 0000000..cb23b2c --- /dev/null +++ b/page/changelog/1.14.0-beta.1.md @@ -0,0 +1,35 @@ + + +Released on May 15, 2024 + +## General + +* Removed: Support for IE & other legacy browsers ([bb49bd794](https://github.com/jquery/jquery-ui/commit/bb49bd794bc8ea4238162725b518fb46234f3cf9)) +* Removed: Support for jQueries different from the latest for each major ([daa6fb55b](https://github.com/jquery/jquery-ui/commit/daa6fb55b35065c49c0ffc879c94627bbf85404c), [ec3edb687](https://github.com/jquery/jquery-ui/commit/ec3edb687609af9677317dfd2ec80a5bec7b35c5)) +* Changed: Stop relying on `jquery-patch.js` internally, add tests ([9887579b6](https://github.com/jquery/jquery-ui/commit/9887579b61972647f1478e64c5d7987f9d9cb039)) + +## Core & Utilities + +### UI Core + +* Removed: The deprecated `ui/core.js` file ([03cde342c](https://github.com/jquery/jquery-ui/commit/03cde342cd360793a2439fa8dc93e441bbf73333)) +* Changed: Make back compat disabled by default ([ac8b1e4ee](https://github.com/jquery/jquery-ui/commit/ac8b1e4eee8682e6825730c4823036a90031edad)) +* Changed: Fix form-reset-mixin test module name, add to the tests HTML ([5f615c275](https://github.com/jquery/jquery-ui/commit/5f615c275d2c88305dd0733a12de3915a7c501af)) + +## Interactions + +### Sortable + +* Changed: Rename `storedStylesheet` to `_storedStylesheet` ([f90eab84b](https://github.com/jquery/jquery-ui/commit/f90eab84b5e9a65ce62f18106e3db0ee316913f6)) + +## Effects + +* Changed: Update jQuery Color from `2.2.0` to `3.0.0` ([#2240](https://github.com/jquery/jquery-ui/issues/2240), [68fda5beb](https://github.com/jquery/jquery-ui/commit/68fda5beb2035faa1e30f26722417206705f3746)) + +## Build + +* Added: Add `/.github`, `/build` & `/external` to `.npmignore` ([#2075](https://github.com/jquery/jquery-ui/issues/2075), [f849c50db](https://github.com/jquery/jquery-ui/commit/f849c50db11039c01e299b56c4f65dc6bd1e5fc0)) +* Removed: Support for Node 10 ([99250fe51](https://github.com/jquery/jquery-ui/commit/99250fe517bf70a8d190b4a32a6633e4776e87fe)) +* Removed: Unused `build/themes` ([448df32bb](https://github.com/jquery/jquery-ui/commit/448df32bb1fd468fc367fe82555b484a1405d554)) diff --git a/page/changelog/1.14.0-beta.2.md b/page/changelog/1.14.0-beta.2.md new file mode 100644 index 0000000..8e68b6e --- /dev/null +++ b/page/changelog/1.14.0-beta.2.md @@ -0,0 +1,26 @@ + + +Released on June 14, 2024 + +## Supported jQuery versions + +This release was tested against jQuery 1.12, 2.2, 3.6 & 3.7. Since jQuery follows semver, newer jQuery <4 versions should work as well. + +## General + +* Changed: Update compatible jQuery versions ([ec3edb687](https://github.com/jquery/jquery-ui/commit/ec3edb687609af9677317dfd2ec80a5bec7b35c5)) + +## Widgets + +### Dialog + +* Added: `aria-modal` support ([#2246](https://github.com/jquery/jquery-ui/issues/2246), [376f142b9](https://github.com/jquery/jquery-ui/commit/376f142b9de42241a20efa9c89644ff5425da174)) + +## Build + +* Added: Test on more jQuery Core versions ([aa06be981](https://github.com/jquery/jquery-ui/commit/aa06be9813abeea148738ed3bae0ec638a535545)) +* Removed: `testswarm` Grunt task ([1f251ca39](https://github.com/jquery/jquery-ui/commit/1f251ca399ec01c75d24293e49ac767938a547e2)) +* Removed: Code supporting Jenkins and TestSwarm ([f47c7fe44](https://github.com/jquery/jquery-ui/commit/f47c7fe44d41d6af9b6f00c7201d991b01b93035)) +* Changed: Consolidate GH actions runs; separate git & stable jQuery versions ([d45638abf](https://github.com/jquery/jquery-ui/commit/d45638abfacbe58a134fd301e163420f742e8fba)) diff --git a/page/changelog/1.14.0.md b/page/changelog/1.14.0.md new file mode 100644 index 0000000..97834ca --- /dev/null +++ b/page/changelog/1.14.0.md @@ -0,0 +1,55 @@ + + +Released on August 5, 2024 + +## Supported jQuery versions + +This release has been tested against **jQuery 1.12.4, 2.2.4, 3.6.4 & 3.7.1**. Since jQuery follows semver, newer jQuery <4 versions within each major version line should generally work as well. + +jQuery UI 1.14.0 triggers no jQuery Migrate warnings when running its test suite against jQuery 3.7.1 with jQuery Migrate 3.5.2, i.e. the latest versions at the time of this release. + +## General + +* Removed: Support for IE & other legacy browsers; APIs `$.fn._form`, `$.ui.ie`, `$.ui.safeActiveElement` & `$.ui.safeBlur` ([bb49bd794](https://github.com/jquery/jquery-ui/commit/bb49bd794bc8ea4238162725b518fb46234f3cf9)) +* Removed: Support for older jQueries within each major line ([daa6fb55b](https://github.com/jquery/jquery-ui/commit/daa6fb55b35065c49c0ffc879c94627bbf85404c), [ec3edb687](https://github.com/jquery/jquery-ui/commit/ec3edb687609af9677317dfd2ec80a5bec7b35c5), [aa06be981](https://github.com/jquery/jquery-ui/commit/aa06be9813abeea148738ed3bae0ec638a535545), [ec3edb687](https://github.com/jquery/jquery-ui/commit/ec3edb687609af9677317dfd2ec80a5bec7b35c5)) +* Changed: Stop relying on `jquery-patch.js` internally, add tests ([9887579b6](https://github.com/jquery/jquery-ui/commit/9887579b61972647f1478e64c5d7987f9d9cb039)) +* Fixed: Opacity of the `ui-widget-overlay` class in root-level files `jquery-ui.css` & `jquery-ui.theme.css` in `jquery-ui-1.14.0.zip` & `jquery-ui-themes-1.14.0.zip` - as well as their minified versions - is now correctly `.3` instead of `.003` ([jquery/download.jqueryui.com@f4c9d83](https://github.com/jquery/download.jqueryui.com/commit/f4c9d8311a181e08bd02b6530e51cb400484794c)) + +## Core & Utilities + +### UI Core + +* Removed: The deprecated `ui/core.js` file ([03cde342c](https://github.com/jquery/jquery-ui/commit/03cde342cd360793a2439fa8dc93e441bbf73333)) +* Changed: Make back compat disabled by default ([ac8b1e4ee](https://github.com/jquery/jquery-ui/commit/ac8b1e4eee8682e6825730c4823036a90031edad)) +* Changed: Fix form-reset-mixin test module name, add to the tests HTML ([5f615c275](https://github.com/jquery/jquery-ui/commit/5f615c275d2c88305dd0733a12de3915a7c501af)) + +## Interactions + +### Sortable + +* Changed: Rename `storedStylesheet` to `_storedStylesheet` ([f90eab84b](https://github.com/jquery/jquery-ui/commit/f90eab84b5e9a65ce62f18106e3db0ee316913f6)) + +## Widgets + +### Datepicker + +* Fixed: Hide the UI on destroy ([#2178](https://github.com/jquery/jquery-ui/issues/2178), [02a6e6bcb](https://github.com/jquery/jquery-ui/commit/02a6e6bcb004696b21324ef14c07374a56d7cd02)) + +### Dialog + +* Add: `aria-modal` support ([#2246](https://github.com/jquery/jquery-ui/issues/2246), [376f142b9](https://github.com/jquery/jquery-ui/commit/376f142b9de42241a20efa9c89644ff5425da174)) + +## Effects + +* Changed: Update jQuery Color from `2.2.0` to `3.0.0` ([#2240](https://github.com/jquery/jquery-ui/issues/2240), [68fda5beb](https://github.com/jquery/jquery-ui/commit/68fda5beb2035faa1e30f26722417206705f3746)) + +## Build + +* Added: Add `/.github`, `/build` & `/external` to `.npmignore` ([#2075](https://github.com/jquery/jquery-ui/issues/2075), [f849c50db](https://github.com/jquery/jquery-ui/commit/f849c50db11039c01e299b56c4f65dc6bd1e5fc0)) +* Removed: Support for Node 10 ([99250fe51](https://github.com/jquery/jquery-ui/commit/99250fe517bf70a8d190b4a32a6633e4776e87fe)) +* Removed: Unused `build/themes` ([448df32bb](https://github.com/jquery/jquery-ui/commit/448df32bb1fd468fc367fe82555b484a1405d554)) +* Removed: `testswarm` Grunt task ([1f251ca39](https://github.com/jquery/jquery-ui/commit/1f251ca399ec01c75d24293e49ac767938a547e2)) +* Removed: Code supporting Jenkins and TestSwarm ([f47c7fe44](https://github.com/jquery/jquery-ui/commit/f47c7fe44d41d6af9b6f00c7201d991b01b93035)) +* Changed: Consolidate GH actions runs; separate git & stable jQuery versions ([d45638abf](https://github.com/jquery/jquery-ui/commit/d45638abfacbe58a134fd301e163420f742e8fba)) diff --git a/page/changelog/1.14.1.md b/page/changelog/1.14.1.md new file mode 100644 index 0000000..df56535 --- /dev/null +++ b/page/changelog/1.14.1.md @@ -0,0 +1,46 @@ + + +Released on October 30, 2024 + +## Supported jQuery versions + +This release has been tested against **jQuery 1.12.4, 2.2.4, 3.6.4 & 3.7.1**. Since jQuery follows semver, newer jQuery <4 versions within each major version line should generally work as well. + +jQuery UI 1.14.1 triggers no jQuery Migrate warnings when running its test suite against jQuery 3.7.1 with jQuery Migrate 3.5.2, i.e. the latest versions at the time of this release. + +## Core & Utilities + +### Widget Factory + +* Fixed: Don't let widget name affect `$.ui` prototype & constructor ([d591bdd49](https://github.com/jquery/jquery-ui/commit/d591bdd494cf28a399ea7d7ae7ccbae3a5cab020)) + +## Widgets + +### Dialog + +* Added: An option to put the dialog title in a header element ([#2271](https://github.com/jquery/jquery-ui/issues/2271), [d564731f2](https://github.com/jquery/jquery-ui/commit/d564731f20a5eee6c6e373344a2bd6fc9d047e63)) + +### Tabs + +* Fixed: Use `CSS.escape` for sanitizing selectors ([af8adca54](https://github.com/jquery/jquery-ui/commit/af8adca5481d0ac5db0865032b6c4c7e21421be7)) + +## Interactions + +### Resizable + +* Fixed: Content shrink on resize ([#2277](https://github.com/jquery/jquery-ui/issues/2277), [c934995ef](https://github.com/jquery/jquery-ui/commit/c934995efa431efe0b15b6f9a6b614e6b8e88399)) + +## Demos + +* Fixed: Removed 404 scripts from removeClass demo ([f068bf450](https://github.com/jquery/jquery-ui/commit/f068bf4509d11d781512874e18e9506525ad6dcc)) +* Fixed: Remove usage of deprecated button APIs ([#2295](https://github.com/jquery/jquery-ui/issues/2295), [b8fff16dc](https://github.com/jquery/jquery-ui/commit/b8fff16dc4580187d26a8468ee9dc31387a3b225)) +* Removed: Demos & visual tests of the transfer effect ([#2278](https://github.com/jquery/jquery-ui/issues/2278), [36ed9fc3b](https://github.com/jquery/jquery-ui/commit/36ed9fc3b0f0ce348a360e8a10500475337368b3)) + +## Build + +* Added: A CodeQL non-mandatory check ([e399092c3](https://github.com/jquery/jquery-ui/commit/e399092c3ef6ea29443e879695268fc09c6ea9bf)) +* Fixed: A potential XSS in the test server HTML serving logic ([85bed8ddd](https://github.com/jquery/jquery-ui/commit/85bed8ddd893390fd41bd7e93d2a44a1b5d9b885)) +* Fixed: Titles of `jquery-patch.js` tests ([ebdcd0d86](https://github.com/jquery/jquery-ui/commit/ebdcd0d866a5d318c5255c2d6404867878d06d47)) +* Fixed: Properly check `$.uiBackCompat` in common widget tests ([fd1b8a03b](https://github.com/jquery/jquery-ui/commit/fd1b8a03b22411e68e703426fb85a2566318623d)) diff --git a/page/changelog/1.14.2.md b/page/changelog/1.14.2.md new file mode 100644 index 0000000..77c93c0 --- /dev/null +++ b/page/changelog/1.14.2.md @@ -0,0 +1,36 @@ + + +Released on January 29, 2026 + +## Supported jQuery versions + +This release has been tested against **jQuery 1.12.4, 2.2.4, 3.6.4, 3.7.1 & 4.0.0**. Since jQuery follows semver, newer jQuery <5 versions within each major version line should generally work as well. + +jQuery UI 1.14.2 triggers no jQuery Migrate messages except for its initialization one when running its test suite against jQuery 4.0.0 with jQuery Migrate 4.0.2 or jQuery 3.7.1 with jQuery Migrate 3.6.0, i.e. the latest versions at the time of this release. + +## Widgets + +### Spinner + +* Removed: The dependency on jQuery Mousewheel ([6843ced12](https://github.com/jquery/jquery-ui/commit/6843ced12e4051aefbee47cf87fa79794737eb8a), [44de3d325](https://github.com/jquery/jquery-ui/commit/44de3d325c1ac0c4a841deff0ec03265a0b670f7)) + +### Tabs + +* Tabs: Properly handle decoded/encoded anchor hashes & panel IDs ([#2344](https://github.com/jquery/jquery-ui/issues/2344), [89b0ecaaa](https://github.com/jquery/jquery-ui/commit/89b0ecaaa3fc1f78e6b9f3d3b95de66f6bd22a2d)) +* Tabs: Support URL-based credentials ([#2213](https://github.com/jquery/jquery-ui/issues/2213), [53129e9cc](https://github.com/jquery/jquery-ui/commit/53129e9cc7eb1c4f55b44a14adc91da23c7be85b)) + +## Demos + +* Fixed: Make all easing demos work ([0be13b57c](https://github.com/jquery/jquery-ui/commit/0be13b57cad253dbb5dc7fd3860239b4474d4b26)) + +## Build + +* Changed: Update ESLint to v9, migrate to flat config, lint dist files ([1da395de2](https://github.com/jquery/jquery-ui/commit/1da395de2e6759dfe9a7a199b03a39365e30f16c)) +* Changed: Switch from UglifyJS to SWC minify, make the minified file ES5 ([302b488b9](https://github.com/jquery/jquery-ui/commit/302b488b9214e14830496578f7cf0aebcc33c132)) + +## Tests + +* Fixed: Make tests not trigger Migrate 4.x warnings ([a7ac08100](https://github.com/jquery/jquery-ui/commit/a7ac0810095fe41405170dc85e36c55a57b09f02)) +* Changed: Migrate test runner to jquery-test-runner ([b68575366](https://github.com/jquery/jquery-ui/commit/b6857536606d5d0dd1b07ada519f845cdac5c96e)) diff --git a/page/changelog/1.5.1.md b/page/changelog/1.5.1.md index 6e6b91c..df59499 100644 --- a/page/changelog/1.5.1.md +++ b/page/changelog/1.5.1.md @@ -8,87 +8,87 @@ Released on June 26, 2008 ### Draggable -* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](http://bugs.jqueryui.com/ticket/3016)) -* Fixed issue when placeholder didn't exist ([#3018](http://bugs.jqueryui.com/ticket/3018)) +* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](https://bugs.jqueryui.com/ticket/3016)) +* Fixed issue when placeholder didn't exist ([#3018](https://bugs.jqueryui.com/ticket/3018)) ### Droppable -* Disabling droppables does not prevent adding the hoverclass under some circumstances ([#3010](http://bugs.jqueryui.com/ticket/3010)) +* Disabling droppables does not prevent adding the hoverclass under some circumstances ([#3010](https://bugs.jqueryui.com/ticket/3010)) ### Resizable -* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](http://bugs.jqueryui.com/ticket/3016)) -* Fixed exception when using containment: document option ([#2988](http://bugs.jqueryui.com/ticket/2988)) -* Renamed autohide option to autoHide (camelCase) for consistency ([#2990](http://bugs.jqueryui.com/ticket/2990)) -* Renamed proxy option to helper for consistency ([#2996](http://bugs.jqueryui.com/ticket/2996)) +* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](https://bugs.jqueryui.com/ticket/3016)) +* Fixed exception when using containment: document option ([#2988](https://bugs.jqueryui.com/ticket/2988)) +* Renamed autohide option to autoHide (camelCase) for consistency ([#2990](https://bugs.jqueryui.com/ticket/2990)) +* Renamed proxy option to helper for consistency ([#2996](https://bugs.jqueryui.com/ticket/2996)) * Fixed issues with alsoResize option ### Selectable -* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](http://bugs.jqueryui.com/ticket/3016)) -* Resize callback being called too early (before element resized) ([#3026](http://bugs.jqueryui.com/ticket/3026)) +* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](https://bugs.jqueryui.com/ticket/3016)) +* Resize callback being called too early (before element resized) ([#3026](https://bugs.jqueryui.com/ticket/3026)) ### Sortable -* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](http://bugs.jqueryui.com/ticket/3016)) -* Unexpected behavior with sortables, when items contain wrapped lines ([#3000](http://bugs.jqueryui.com/ticket/3000)) +* Distance option now defaults to 1 instead of 0, allowing for click events ([#3016](https://bugs.jqueryui.com/ticket/3016)) +* Unexpected behavior with sortables, when items contain wrapped lines ([#3000](https://bugs.jqueryui.com/ticket/3000)) * Corrected items callback to receive standard args: event, ui -* Stop being fired too early ([#3019](http://bugs.jqueryui.com/ticket/3019)) -* Placeholder displays above dragged element ([#2951](http://bugs.jqueryui.com/ticket/2951)) -* Placeholder positioning issues; hierarchical sortable issues ([#2976](http://bugs.jqueryui.com/ticket/2976)) +* Stop being fired too early ([#3019](https://bugs.jqueryui.com/ticket/3019)) +* Placeholder displays above dragged element ([#2951](https://bugs.jqueryui.com/ticket/2951)) +* Placeholder positioning issues; hierarchical sortable issues ([#2976](https://bugs.jqueryui.com/ticket/2976)) * Connected lists items are not refreshed until you actually move into the connected list - this improves performance for connected lists * Extreme performance increase * Fixed serialize issue when a key was specified as option, but no custom expression -* update callback was not called every time ([#3028](http://bugs.jqueryui.com/ticket/3028)) +* update callback was not called every time ([#3028](https://bugs.jqueryui.com/ticket/3028)) ## Widgets ### Accordion * Various internal optimizations -* Consistent parameters for dispatched events and callbacks. ([#2340](http://bugs.jqueryui.com/ticket/2340)) +* Consistent parameters for dispatched events and callbacks. ([#2340](https://bugs.jqueryui.com/ticket/2340)) ### Datepicker * Various language file corrections * Allow setting of cell title via beforeShowDay -* Fire event on change of month/year ([#2876](http://bugs.jqueryui.com/ticket/2876)) +* Fire event on change of month/year ([#2876](https://bugs.jqueryui.com/ticket/2876)) * onClose bug for ranges in IE; wrapper span bug in IE; remove attribute bug in IE * Allow relative dates with multiple periods -* Next link shows \> when hideIfNoPrevNext is true ([#2658](http://bugs.jqueryui.com/ticket/2658)) -* Datepicker does not allow manual entry of alphabetic characters ([#2700](http://bugs.jqueryui.com/ticket/2700)) -* Date range + restricting allows invalid range ([#2724](http://bugs.jqueryui.com/ticket/2724)) -* Date formatting characters can be used within the prev/current/next texts. ([#2593](http://bugs.jqueryui.com/ticket/2593)) -* Week row hover styling ([#2641](http://bugs.jqueryui.com/ticket/2641)) -* When showing "off page" behaves strangely ([#2371](http://bugs.jqueryui.com/ticket/2371)) +* Next link shows \> when hideIfNoPrevNext is true ([#2658](https://bugs.jqueryui.com/ticket/2658)) +* Datepicker does not allow manual entry of alphabetic characters ([#2700](https://bugs.jqueryui.com/ticket/2700)) +* Date range + restricting allows invalid range ([#2724](https://bugs.jqueryui.com/ticket/2724)) +* Date formatting characters can be used within the prev/current/next texts. ([#2593](https://bugs.jqueryui.com/ticket/2593)) +* Week row hover styling ([#2641](https://bugs.jqueryui.com/ticket/2641)) +* When showing "off page" behaves strangely ([#2371](https://bugs.jqueryui.com/ticket/2371)) * Correct datepicker placement when used in static areas; Correct select coverage in IE 6 -* Split out display date and date value formats ([#2038](http://bugs.jqueryui.com/ticket/2038)) +* Split out display date and date value formats ([#2038](https://bugs.jqueryui.com/ticket/2038)) ### Dialog -* The opening and closing of a dialog can now be animated with any jQuery UI effects, using two new options: show, hide. Currently no animation options can be supplied, only a string (the name of the effect). This issue is still in progress. ([#2358](http://bugs.jqueryui.com/ticket/2358)) +* The opening and closing of a dialog can now be animated with any jQuery UI effects, using two new options: show, hide. Currently no animation options can be supplied, only a string (the name of the effect). This issue is still in progress. ([#2358](https://bugs.jqueryui.com/ticket/2358)) * Added resizeHelper * Added dragHelper -* Corrected context (thisArg) for callbacks: dragStart, drag, dragStop, resizeStart, resize, resizeStop ([#3017](http://bugs.jqueryui.com/ticket/3017)) -* Added autoResize option; default value: true ([#3025](http://bugs.jqueryui.com/ticket/3025)) +* Corrected context (thisArg) for callbacks: dragStart, drag, dragStop, resizeStart, resize, resizeStop ([#3017](https://bugs.jqueryui.com/ticket/3017)) +* Added autoResize option; default value: true ([#3025](https://bugs.jqueryui.com/ticket/3025)) * Fixed buttons so they can be changed after init using .data("buttons.dialog", ... ) * Fixed stacking problem with modal dialogs. -* Calling open on an already open dialog no longer causes problems ([#3032](http://bugs.jqueryui.com/ticket/3032)) +* Calling open on an already open dialog no longer causes problems ([#3032](https://bugs.jqueryui.com/ticket/3032)) ### Slider -* Bug on destroy ([#2987](http://bugs.jqueryui.com/ticket/2987)) -* Range can now be toggled on-the-fly ([#3004](http://bugs.jqueryui.com/ticket/3004)) +* Bug on destroy ([#2987](https://bugs.jqueryui.com/ticket/2987)) +* Range can now be toggled on-the-fly ([#3004](https://bugs.jqueryui.com/ticket/3004)) ### Tabs -* Consistent parameters for dispatched events and callbacks. ([#2340](http://bugs.jqueryui.com/ticket/2340)) Note: This is an API change. The order of parameters for callbacks is different than previous version. Now the first parameter is Event, the second - ui interface object. +* Consistent parameters for dispatched events and callbacks. ([#2340](https://bugs.jqueryui.com/ticket/2340)) Note: This is an API change. The order of parameters for callbacks is different than previous version. Now the first parameter is Event, the second - ui interface object. ### Effects ## Core -* Typo in createWrapper ([#2974](http://bugs.jqueryui.com/ticket/2974), [#2975](http://bugs.jqueryui.com/ticket/2975)) +* Typo in createWrapper ([#2974](https://bugs.jqueryui.com/ticket/2974), [#2975](https://bugs.jqueryui.com/ticket/2975)) ### Clip @@ -102,8 +102,8 @@ Released on June 26, 2008 ### Scale -* Easing doesn't work for effects.scale ([#2967](http://bugs.jqueryui.com/ticket/2967)) +* Easing doesn't work for effects.scale ([#2967](https://bugs.jqueryui.com/ticket/2967)) ### Transfer -* Transfer effect transfers to the wrong place in Safari 3.1.1 ([#2983](http://bugs.jqueryui.com/ticket/2983)) +* Transfer effect transfers to the wrong place in Safari 3.1.1 ([#2983](https://bugs.jqueryui.com/ticket/2983)) diff --git a/page/changelog/1.5.2.md b/page/changelog/1.5.2.md index 9b7989a..e7668c0 100644 --- a/page/changelog/1.5.2.md +++ b/page/changelog/1.5.2.md @@ -8,83 +8,83 @@ Released on July 9, 2008 ### Draggable -* Add revert as a method ([#2914](http://bugs.jqueryui.com/ticket/2914)) -* Add an event to the droppable system ([#2436](http://bugs.jqueryui.com/ticket/2436)) -* Fixed ui.absolutePosition not updated when snapping is enabled ([#3002](http://bugs.jqueryui.com/ticket/3002)) -* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](http://bugs.jqueryui.com/ticket/3037)) +* Add revert as a method ([#2914](https://bugs.jqueryui.com/ticket/2914)) +* Add an event to the droppable system ([#2436](https://bugs.jqueryui.com/ticket/2436)) +* Fixed ui.absolutePosition not updated when snapping is enabled ([#3002](https://bugs.jqueryui.com/ticket/3002)) +* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037)) ### Droppable -* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](http://bugs.jqueryui.com/ticket/3037)) +* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037)) ### Resizable -* Fixed resizable jumps when in scrolled container ([#3074](http://bugs.jqueryui.com/ticket/3074)) -* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](http://bugs.jqueryui.com/ticket/3037)) +* Fixed resizable jumps when in scrolled container ([#3074](https://bugs.jqueryui.com/ticket/3074)) +* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037)) ### Selectable -* Fixed parameters be consistent in callbacks/event ([#2545](http://bugs.jqueryui.com/ticket/2545)) -* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](http://bugs.jqueryui.com/ticket/3037)) +* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545)) +* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037)) ### Sortable -* Add a hook in sortables to generate the list of sortables ([#2729](http://bugs.jqueryui.com/ticket/2729)) -* Fixed sortable element disappear after drag and double click ([#2945](http://bugs.jqueryui.com/ticket/2945)) -* Fixed parameters be consistent in callbacks/event ([#2545](http://bugs.jqueryui.com/ticket/2545)) -* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](http://bugs.jqueryui.com/ticket/3037)) +* Add a hook in sortables to generate the list of sortables ([#2729](https://bugs.jqueryui.com/ticket/2729)) +* Fixed sortable element disappear after drag and double click ([#2945](https://bugs.jqueryui.com/ticket/2945)) +* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545)) +* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037)) ## Widgets ### Accordion -* Fixed dispatched events have incorrect parameters ([#3036](http://bugs.jqueryui.com/ticket/3036)) -* Fixed parameters be consistent in callbacks/event ([#2545](http://bugs.jqueryui.com/ticket/2545)) -* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](http://bugs.jqueryui.com/ticket/3037)) +* Fixed dispatched events have incorrect parameters ([#3036](https://bugs.jqueryui.com/ticket/3036)) +* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545)) +* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037)) ### Datepicker -* Add support unicode.org date formats ([#2044](http://bugs.jqueryui.com/ticket/2044)) -* Add custom cell renderer ([#2538](http://bugs.jqueryui.com/ticket/2538)) -* Add support to use UI effects on show/hide ([#3050](http://bugs.jqueryui.com/ticket/3050)) -* Change *speed* option to *duration* ([#3050](http://bugs.jqueryui.com/ticket/3050)) -* Fixed reduplicate days ([#3072](http://bugs.jqueryui.com/ticket/3072)) -* Fixed catalan localisation ([#3041](http://bugs.jqueryui.com/ticket/3041)) -* Fixed firstDay for swedish locale ([#3033](http://bugs.jqueryui.com/ticket/3033)) -* Fixed does not cancel button click ([#3047](http://bugs.jqueryui.com/ticket/3047)) -* Fixed parameters be consistent in callbacks/event ([#2545](http://bugs.jqueryui.com/ticket/2545)) -* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](http://bugs.jqueryui.com/ticket/3037)) +* Add support unicode.org date formats ([#2044](https://bugs.jqueryui.com/ticket/2044)) +* Add custom cell renderer ([#2538](https://bugs.jqueryui.com/ticket/2538)) +* Add support to use UI effects on show/hide ([#3050](https://bugs.jqueryui.com/ticket/3050)) +* Change *speed* option to *duration* ([#3050](https://bugs.jqueryui.com/ticket/3050)) +* Fixed reduplicate days ([#3072](https://bugs.jqueryui.com/ticket/3072)) +* Fixed catalan localisation ([#3041](https://bugs.jqueryui.com/ticket/3041)) +* Fixed firstDay for Swedish locale ([#3033](https://bugs.jqueryui.com/ticket/3033)) +* Fixed does not cancel button click ([#3047](https://bugs.jqueryui.com/ticket/3047)) +* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545)) +* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037)) ### Dialog -* Add activate() in dialog public ([#2728](http://bugs.jqueryui.com/ticket/2728)) -* Fixed wrong cursor in dialog title when draggable is false ([#3066](http://bugs.jqueryui.com/ticket/3066)) -* Fixed dialog buttons not visible without a theme file ([#3061](http://bugs.jqueryui.com/ticket/3061)) -* Fixed cannot select text in dialog content ([#3059](http://bugs.jqueryui.com/ticket/3059)) -* Fixed causing iframe load event to fire in Firefox 2 ([#3012](http://bugs.jqueryui.com/ticket/3012)) -* Fixed parameters be consistent in callbacks/event ([#2545](http://bugs.jqueryui.com/ticket/2545)) -* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](http://bugs.jqueryui.com/ticket/3037)) +* Add activate() in dialog public ([#2728](https://bugs.jqueryui.com/ticket/2728)) +* Fixed wrong cursor in dialog title when draggable is false ([#3066](https://bugs.jqueryui.com/ticket/3066)) +* Fixed dialog buttons not visible without a theme file ([#3061](https://bugs.jqueryui.com/ticket/3061)) +* Fixed cannot select text in dialog content ([#3059](https://bugs.jqueryui.com/ticket/3059)) +* Fixed causing iframe load event to fire in Firefox 2 ([#3012](https://bugs.jqueryui.com/ticket/3012)) +* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545)) +* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037)) ### Slider -* Add animation in slider ([#2978](http://bugs.jqueryui.com/ticket/2978)) -* Add allow cursor to be changed while dragging slider ([#2854](http://bugs.jqueryui.com/ticket/2854)) -* Fixed blue dot on ui-slider (Firefox 3) ([#3029](http://bugs.jqueryui.com/ticket/3029)) -* Fixed slider handle focus border ([#2949](http://bugs.jqueryui.com/ticket/2949)) -* Fixed parameters be consistent in callbacks/event ([#2545](http://bugs.jqueryui.com/ticket/2545)) -* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](http://bugs.jqueryui.com/ticket/3037)) +* Add animation in slider ([#2978](https://bugs.jqueryui.com/ticket/2978)) +* Add allow cursor to be changed while dragging slider ([#2854](https://bugs.jqueryui.com/ticket/2854)) +* Fixed blue dot on ui-slider (Firefox 3) ([#3029](https://bugs.jqueryui.com/ticket/3029)) +* Fixed slider handle focus border ([#2949](https://bugs.jqueryui.com/ticket/2949)) +* Fixed parameters be consistent in callbacks/event ([#2545](https://bugs.jqueryui.com/ticket/2545)) +* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037)) ### Tabs -* Fixed dispatched events have incorrect parameters ([#3035](http://bugs.jqueryui.com/ticket/3035)) -* Fixed handler to 'tabsselect' has incorrect parameters ([#3063](http://bugs.jqueryui.com/ticket/3063)) -* Fixed parameters be consistent in callbacks/events ([#2545](http://bugs.jqueryui.com/ticket/2545)) -* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](http://bugs.jqueryui.com/ticket/3037)) +* Fixed dispatched events have incorrect parameters ([#3035](https://bugs.jqueryui.com/ticket/3035)) +* Fixed handler to 'tabsselect' has incorrect parameters ([#3063](https://bugs.jqueryui.com/ticket/3063)) +* Fixed parameters be consistent in callbacks/events ([#2545](https://bugs.jqueryui.com/ticket/2545)) +* Fixed jQuery.remove() losing select options in Safari 3.1.1 ([#3037](https://bugs.jqueryui.com/ticket/3037)) ## Effects ### Slide -* Fixed slide up/down at wrong position in IE7 ([#2952](http://bugs.jqueryui.com/ticket/2952)) +* Fixed slide up/down at wrong position in IE7 ([#2952](https://bugs.jqueryui.com/ticket/2952)) diff --git a/page/changelog/1.5.md b/page/changelog/1.5.md index b5df022..36922ab 100644 --- a/page/changelog/1.5.md +++ b/page/changelog/1.5.md @@ -32,12 +32,12 @@ Released on June 8, 2008 ## New bugtracker and SVN project -* Dedicated bugtracker with version targeting and categories on [http://ui.jquery.com/bugs](http://ui.jquery.com/bugs) -* Dedicated project on google code, restructured and cleaner SVN trunk and branches ([http://code.google.com/p/jquery-ui](http://code.google.com/p/jquery-ui)) +* Dedicated bugtracker with version targeting and categories on [https://ui.jquery.com/bugs](https://ui.jquery.com/bugs) +* Dedicated project on google code, restructured and cleaner SVN trunk and branches ([https://code.google.com/p/jquery-ui](https://code.google.com/p/jquery-ui)) ## New features and API changes * Hundreds of bugfixes, enhancements and performance improvements with many components completely rewritten -* Unified API for all plugins (see [http://jquery.com/blog/2008/02/12/jquery-ui-15b-new-api-more-features-huge-performance-boost/](http://jquery.com/blog/2008/02/12/jquery-ui-15b-new-api-more-features-huge-performance-boost/)) +* Unified API for all plugins (see [https://jquery.com/blog/2008/02/12/jquery-ui-15b-new-api-more-features-huge-performance-boost/](https://jquery.com/blog/2008/02/12/jquery-ui-15b-new-api-more-features-huge-performance-boost/)) * New unit tests using a UI event-testing plugin called simulate * Exposed defaults for every plugin * Retrieve and change individual options during plugin runtime diff --git a/page/changelog/1.6.md b/page/changelog/1.6.md index 0d276a2..eb0ece2 100644 --- a/page/changelog/1.6.md +++ b/page/changelog/1.6.md @@ -12,17 +12,17 @@ What was originally planned as the 1.6 release was moved over to the 1.7 release * Widget factory: Added trigger method for triggering callbacks and events. * cleaned up $.ui.hasScroll(). -* Fixed: UI plugins should support metadata ([#3187](http://bugs.jqueryui.com/ticket/3187)) -* Fixed: prevent exposure of internal methods ([#3188](http://bugs.jqueryui.com/ticket/3188)) -* Fixed: define key constants in ui.core.js ([#3233](http://bugs.jqueryui.com/ticket/3233)) -* Fixed: Add option method to widgets ([#3257](http://bugs.jqueryui.com/ticket/3257)) -* Fixed: drop is invoked as many times as droppable has been invoked ([#3275](http://bugs.jqueryui.com/ticket/3275)) -* Fixed: Return on enableSelection and disableSelection ([#3174](http://bugs.jqueryui.com/ticket/3174)) -* Fixed: .remove() doesn't call the plugin's destroy method ([#3457](http://bugs.jqueryui.com/ticket/3457)) -* Fixed: Remove .ariaRole() and .ariaState() ([#3529](http://bugs.jqueryui.com/ticket/3529)) -* Fixed: .removeAttr() needs to support ARIA properties ([#3562](http://bugs.jqueryui.com/ticket/3562)) -* Fixed: document elements can't retrieve mouse down/up event whendragging layer ([#3552](http://bugs.jqueryui.com/ticket/3552)) -* Removed names from ui.core.js as all contribution credit is given in AUTHORS.txt and http://jqueryui.com/about/. +* Fixed: UI plugins should support metadata ([#3187](https://bugs.jqueryui.com/ticket/3187)) +* Fixed: prevent exposure of internal methods ([#3188](https://bugs.jqueryui.com/ticket/3188)) +* Fixed: define key constants in ui.core.js ([#3233](https://bugs.jqueryui.com/ticket/3233)) +* Fixed: Add option method to widgets ([#3257](https://bugs.jqueryui.com/ticket/3257)) +* Fixed: drop is invoked as many times as droppable has been invoked ([#3275](https://bugs.jqueryui.com/ticket/3275)) +* Fixed: Return on enableSelection and disableSelection ([#3174](https://bugs.jqueryui.com/ticket/3174)) +* Fixed: .remove() doesn't call the plugin's destroy method ([#3457](https://bugs.jqueryui.com/ticket/3457)) +* Fixed: Remove .ariaRole() and .ariaState() ([#3529](https://bugs.jqueryui.com/ticket/3529)) +* Fixed: .removeAttr() needs to support ARIA properties ([#3562](https://bugs.jqueryui.com/ticket/3562)) +* Fixed: document elements can't retrieve mouse down/up event whendragging layer ([#3552](https://bugs.jqueryui.com/ticket/3552)) +* Removed names from ui.core.js as all contribution credit is given in AUTHORS.txt and https://jqueryui.com/about/. ## Interactions @@ -34,51 +34,51 @@ What was originally planned as the 1.6 release was moved over to the 1.7 release * fixed: overflow calculation in the positioning methods * fixed: issue when scroll was set to true, and therefore droppablesinside changed their position as well * fixed: IE scrolling but with overflowing containers and appendTobeing used -* Fixed: iframeFix in draggable([#3161](http://bugs.jqueryui.com/ticket/3161)) -* Fixed: Put version numbers inside of individual files ([#3284](http://bugs.jqueryui.com/ticket/3284)) -* Fixed: Containment (resizable and draggable) not working whencontainer has overflow:hidden ([#3328](http://bugs.jqueryui.com/ticket/3328)) -* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](http://bugs.jqueryui.com/ticket/3164)) -* Fixed: Draggable revert: option can be a callback ([#3175](http://bugs.jqueryui.com/ticket/3175)) -* Fixed: iframeFix in draggable ([#3161](http://bugs.jqueryui.com/ticket/3161)) -* Fixed: Containment (resizable and draggable) not working whencontainer has overflow:hidden ([#3328](http://bugs.jqueryui.com/ticket/3328)) -* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](http://bugs.jqueryui.com/ticket/3164)) -* Fixed: Draggable revert: option can be a callback ([#3175](http://bugs.jqueryui.com/ticket/3175)) +* Fixed: iframeFix in draggable([#3161](https://bugs.jqueryui.com/ticket/3161)) +* Fixed: Put version numbers inside of individual files ([#3284](https://bugs.jqueryui.com/ticket/3284)) +* Fixed: Containment (resizable and draggable) not working whencontainer has overflow:hidden ([#3328](https://bugs.jqueryui.com/ticket/3328)) +* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](https://bugs.jqueryui.com/ticket/3164)) +* Fixed: Draggable revert: option can be a callback ([#3175](https://bugs.jqueryui.com/ticket/3175)) +* Fixed: iframeFix in draggable ([#3161](https://bugs.jqueryui.com/ticket/3161)) +* Fixed: Containment (resizable and draggable) not working whencontainer has overflow:hidden ([#3328](https://bugs.jqueryui.com/ticket/3328)) +* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](https://bugs.jqueryui.com/ticket/3164)) +* Fixed: Draggable revert: option can be a callback ([#3175](https://bugs.jqueryui.com/ticket/3175)) * changed default for scroll option to true * made connectToSortable work fine with helper: 'original' (byremoving top/left properties at sort end) * fixed positioning issue with relative positioned elements relativeto the body during scroll -* containment doesn't respect margins anymore, Sortable elements notstaying inside container ([#3538](http://bugs.jqueryui.com/ticket/3538) -* Fixed: Draggable revert: option can be a callback ([#3175](http://bugs.jqueryui.com/ticket/3175)) +* containment doesn't respect margins anymore, Sortable elements notstaying inside container ([#3538](https://bugs.jqueryui.com/ticket/3538) +* Fixed: Draggable revert: option can be a callback ([#3175](https://bugs.jqueryui.com/ticket/3175)) ### Droppable * added: cssNamespace option, if set to false/null, it won't add aclass to the element -* Fixed: accept.droppable not an option ([#3386](http://bugs.jqueryui.com/ticket/3386)) +* Fixed: accept.droppable not an option ([#3386](https://bugs.jqueryui.com/ticket/3386)) * fixed missing default for option 'accept' (set to "\*" = everything) ### Resizable -* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](http://bugs.jqueryui.com/ticket/3164)) -* Fixed: Resizable aspectRatio is switched. Should be width/height ([#3450](http://bugs.jqueryui.com/ticket/3450)) -* Fixed: Resizable css cursor not getting applied ([#3480](http://bugs.jqueryui.com/ticket/3480)) -* Fixed: Resizable errors when alsoResize option is a jQuery object ([#3693](http://bugs.jqueryui.com/ticket/3693)) -* Fixed: Resizable: all classes added should have 'ui-' prefix,'proxy' should be 'ui-resizable-helper' ([#3708](http://bugs.jqueryui.com/ticket/3708)) -* Fixed: Resizable containment fix ([#3714](http://bugs.jqueryui.com/ticket/3714)) +* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](https://bugs.jqueryui.com/ticket/3164)) +* Fixed: Resizable aspectRatio is switched. Should be width/height ([#3450](https://bugs.jqueryui.com/ticket/3450)) +* Fixed: Resizable css cursor not getting applied ([#3480](https://bugs.jqueryui.com/ticket/3480)) +* Fixed: Resizable errors when alsoResize option is a jQuery object ([#3693](https://bugs.jqueryui.com/ticket/3693)) +* Fixed: Resizable: all classes added should have 'ui-' prefix,'proxy' should be 'ui-resizable-helper' ([#3708](https://bugs.jqueryui.com/ticket/3708)) +* Fixed: Resizable containment fix ([#3714](https://bugs.jqueryui.com/ticket/3714)) ### Selectable -* Fixed: Ctrl-Select should use Cmd key on Mac ([#3169](http://bugs.jqueryui.com/ticket/3169)) -* Fixed: prevent exposure of internal methods ([#3205](http://bugs.jqueryui.com/ticket/3205)) +* Fixed: Ctrl-Select should use Cmd key on Mac ([#3169](https://bugs.jqueryui.com/ticket/3169)) +* Fixed: prevent exposure of internal methods ([#3205](https://bugs.jqueryui.com/ticket/3205)) ### Sortable -* Fixed: prevent exposure of internal methods ([#3209](http://bugs.jqueryui.com/ticket/3209)) -* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](http://bugs.jqueryui.com/ticket/3164)) -* Fixed: createHelper is not passing the event object ([#3454](http://bugs.jqueryui.com/ticket/3454)) -* Fixed: ui.sortable - IE6+ doesn't fire click-event after sorting ([#3488](http://bugs.jqueryui.com/ticket/3488)) -* Fixed: sortable with default radio (prev ticket 2930) ([#3466](http://bugs.jqueryui.com/ticket/3466)) -* Fixed: a way to cancel a sort in sortable ([#3283](http://bugs.jqueryui.com/ticket/3283)) -* Added: Method to cancel a sortable attempt ([#3402](http://bugs.jqueryui.com/ticket/3402)) -* Fixed: Events removed on sortable elements ([#3541](http://bugs.jqueryui.com/ticket/3541)) +* Fixed: prevent exposure of internal methods ([#3209](https://bugs.jqueryui.com/ticket/3209)) +* Fixed: Sortables do not work on sorted elements that are alsoresizable ([#3164](https://bugs.jqueryui.com/ticket/3164)) +* Fixed: createHelper is not passing the event object ([#3454](https://bugs.jqueryui.com/ticket/3454)) +* Fixed: ui.sortable - IE6+ doesn't fire click-event after sorting ([#3488](https://bugs.jqueryui.com/ticket/3488)) +* Fixed: sortable with default radio (prev ticket 2930) ([#3466](https://bugs.jqueryui.com/ticket/3466)) +* Fixed: a way to cancel a sort in sortable ([#3283](https://bugs.jqueryui.com/ticket/3283)) +* Added: Method to cancel a sortable attempt ([#3402](https://bugs.jqueryui.com/ticket/3402)) +* Fixed: Events removed on sortable elements ([#3541](https://bugs.jqueryui.com/ticket/3541)) * fixed containment issue (with 'parent', height was miscalculated dueto wrong append order) * fixed issues with \_convertPositionTo, missed from latest re-factor,miscalculated the absolute position including scroll * fixed connectToSortable option, wasn't working with Arrays asdescribed in the documentation @@ -90,13 +90,13 @@ What was originally planned as the 1.6 release was moved over to the 1.7 release ### Accordion -* Fixed: prevent exposure of internal methods ([#3194](http://bugs.jqueryui.com/ticket/3194)) +* Fixed: prevent exposure of internal methods ([#3194](https://bugs.jqueryui.com/ticket/3194)) ### Datepicker * Add day-of-year to format and parse date routines. Correct statusdisplay -* Fixed: Datepicker Italian localization ([#3167](http://bugs.jqueryui.com/ticket/3167)) -* Fixed: invalid increment operand ([#3434](http://bugs.jqueryui.com/ticket/3434)) +* Fixed: Datepicker Italian localization ([#3167](https://bugs.jqueryui.com/ticket/3167)) +* Fixed: invalid increment operand ([#3434](https://bugs.jqueryui.com/ticket/3434)) * Fixed #3610. Error in French l18n file. * Fixed #3598. Datepicker Japanese translation replacement * Escape text to prevent date info substitution @@ -105,20 +105,20 @@ What was originally planned as the 1.6 release was moved over to the 1.7 release ### Dialog -* Fixed: problem with auto margins in IE. ([3086](http://bugs.jqueryui.com/ticket/3086)) -* Fixed: Force dialog titlebars to have a full line height when notitle is provided. ([3013](http://bugs.jqueryui.com/ticket/3013)) -* Fixed: Modal dialog not working correctly on Opera 9.51 ([#3076](http://bugs.jqueryui.com/ticket/3076)) -* Fixed: prevent exposure of internal methods ([#3198](http://bugs.jqueryui.com/ticket/3198)) -* Fixed: closeOnEscape doesn't work on modal dialogs ([#3253](http://bugs.jqueryui.com/ticket/3253)) -* Fixed: Title of dialogs ([#3259](http://bugs.jqueryui.com/ticket/3259)) -* Fixed: Tabbing stops in modal dialog ([#3123](http://bugs.jqueryui.com/ticket/3123)) -* Fixed: Focus not going to Modal Dialog ([#3327](http://bugs.jqueryui.com/ticket/3327)) -* Fixed: fixed-size dialogs still have resizable border ([#3220](http://bugs.jqueryui.com/ticket/3220)) -* Fixed: fix handling on non-draggable dialgos ([#3389](http://bugs.jqueryui.com/ticket/3389)) -* Fixed: add beforeClose option ([#3087](http://bugs.jqueryui.com/ticket/3087)) -* Fixed: modal dialogs aren't greedy enough with element focus ([#3350](http://bugs.jqueryui.com/ticket/3350)) -* Fixed: Cannot select scrollbars inside dialog in Opera 9.51 ([#3193](http://bugs.jqueryui.com/ticket/3193)) -* Fixed: Remove .ariaRole() and .ariaState() ([#3529](http://bugs.jqueryui.com/ticket/3529)) +* Fixed: problem with auto margins in IE. ([3086](https://bugs.jqueryui.com/ticket/3086)) +* Fixed: Force dialog titlebars to have a full line height when notitle is provided. ([3013](https://bugs.jqueryui.com/ticket/3013)) +* Fixed: Modal dialog not working correctly on Opera 9.51 ([#3076](https://bugs.jqueryui.com/ticket/3076)) +* Fixed: prevent exposure of internal methods ([#3198](https://bugs.jqueryui.com/ticket/3198)) +* Fixed: closeOnEscape doesn't work on modal dialogs ([#3253](https://bugs.jqueryui.com/ticket/3253)) +* Fixed: Title of dialogs ([#3259](https://bugs.jqueryui.com/ticket/3259)) +* Fixed: Tabbing stops in modal dialog ([#3123](https://bugs.jqueryui.com/ticket/3123)) +* Fixed: Focus not going to Modal Dialog ([#3327](https://bugs.jqueryui.com/ticket/3327)) +* Fixed: fixed-size dialogs still have resizable border ([#3220](https://bugs.jqueryui.com/ticket/3220)) +* Fixed: fix handling on non-draggable dialgos ([#3389](https://bugs.jqueryui.com/ticket/3389)) +* Fixed: add beforeClose option ([#3087](https://bugs.jqueryui.com/ticket/3087)) +* Fixed: modal dialogs aren't greedy enough with element focus ([#3350](https://bugs.jqueryui.com/ticket/3350)) +* Fixed: Cannot select scrollbars inside dialog in Opera 9.51 ([#3193](https://bugs.jqueryui.com/ticket/3193)) +* Fixed: Remove .ariaRole() and .ariaState() ([#3529](https://bugs.jqueryui.com/ticket/3529)) * Fixed #3637: Added role of button to close link. * Fixed #3638: Added closeText option (default 'close'). * Fixed #3564: Proper positioning in Opera. @@ -126,26 +126,26 @@ What was originally planned as the 1.6 release was moved over to the 1.7 release ### Slider -* Fixed: fix for arrow key operation ([#3801](http://bugs.jqueryui.com/ticket/3801)) -* Fixed: prevent exposure of internal methods ([#3206](http://bugs.jqueryui.com/ticket/3206)) -* Fixed: prevent exposure of internal methods ([#3188](http://bugs.jqueryui.com/ticket/3188)) -* Fixed: Slider: keyboard event not swalled, causes scrolling ([#3342](http://bugs.jqueryui.com/ticket/3342)) -* Fixed: Slider fire beforeunload event ([#3228](http://bugs.jqueryui.com/ticket/3228)) -* Fixed: Callbacks in Slider ([#3465](http://bugs.jqueryui.com/ticket/3465)) +* Fixed: fix for arrow key operation ([#3801](https://bugs.jqueryui.com/ticket/3801)) +* Fixed: prevent exposure of internal methods ([#3206](https://bugs.jqueryui.com/ticket/3206)) +* Fixed: prevent exposure of internal methods ([#3188](https://bugs.jqueryui.com/ticket/3188)) +* Fixed: Slider: keyboard event not swalled, causes scrolling ([#3342](https://bugs.jqueryui.com/ticket/3342)) +* Fixed: Slider fire beforeunload event ([#3228](https://bugs.jqueryui.com/ticket/3228)) +* Fixed: Callbacks in Slider ([#3465](https://bugs.jqueryui.com/ticket/3465)) ### Tabs -* Fixed: Selected index becomes off by one when removing tabs ([#3065](http://bugs.jqueryui.com/ticket/3065)) -* Fixed: prevent exposure of internal methods ([#3208](http://bugs.jqueryui.com/ticket/3208)) -* Fixed: cookie value is not checked on init + selected tab is notstored in cookie on init ([#3015](http://bugs.jqueryui.com/ticket/3015)) +* Fixed: Selected index becomes off by one when removing tabs ([#3065](https://bugs.jqueryui.com/ticket/3065)) +* Fixed: prevent exposure of internal methods ([#3208](https://bugs.jqueryui.com/ticket/3208)) +* Fixed: cookie value is not checked on init + selected tab is notstored in cookie on init ([#3015](https://bugs.jqueryui.com/ticket/3015)) ## Effects ### Core -* Fixed: Replace global jQuery with dollar sign ([#3596](http://bugs.jqueryui.com/ticket/3596)) +* Fixed: Replace global jQuery with dollar sign ([#3596](https://bugs.jqueryui.com/ticket/3596)) ### Highlight -* Fixed: Replace global jQuery with dollar sign ([#3596](http://bugs.jqueryui.com/ticket/3596)) +* Fixed: Replace global jQuery with dollar sign ([#3596](https://bugs.jqueryui.com/ticket/3596)) diff --git a/page/changelog/1.7.1.md b/page/changelog/1.7.1.md index 2fbbd8a..8fb6988 100644 --- a/page/changelog/1.7.1.md +++ b/page/changelog/1.7.1.md @@ -12,41 +12,41 @@ This is a maintenance release for [jQuery UI 1.7](/changelog/1.7). It changes on ### Droppable -* Fixed: Droppable: option accept setter .droppable('option', 'accept', selector) fails ([#4278](http://bugs.jqueryui.com/ticket/4278)) +* Fixed: Droppable: option accept setter .droppable('option', 'accept', selector) fails ([#4278](https://bugs.jqueryui.com/ticket/4278)) ### Resizable -* Fixed: Resizable with containment boundary - aspectRatio breaks ([#4199](http://bugs.jqueryui.com/ticket/4199)) +* Fixed: Resizable with containment boundary - aspectRatio breaks ([#4199](https://bugs.jqueryui.com/ticket/4199)) ### Selectable -* Fixed: Selectable: option appendTo is ignored, helper always appends to body ([#4341](http://bugs.jqueryui.com/ticket/4341)) +* Fixed: Selectable: option appendTo is ignored, helper always appends to body ([#4341](https://bugs.jqueryui.com/ticket/4341)) ## Widgets ### Accordion -* Fixed: Accordion requires theme CSS to function in IE ([#4331](http://bugs.jqueryui.com/ticket/4331)) +* Fixed: Accordion requires theme CSS to function in IE ([#4331](https://bugs.jqueryui.com/ticket/4331)) ### Datepicker -* Fixed: Datepicker: Update Romanian Localization ([#4294](http://bugs.jqueryui.com/ticket/4294)) -* Fixed: Datepicker: Update Ukrainian Localization ([#4298](http://bugs.jqueryui.com/ticket/4298)) -* Fixed: Datepicker: destroy, disable, and enable methods affect sibling datepickers ([#4240](http://bugs.jqueryui.com/ticket/4240)) -* Fixed: Datepicker: Update Albanian Localization ([#4313](http://bugs.jqueryui.com/ticket/4313)) +* Fixed: Datepicker: Update Romanian Localization ([#4294](https://bugs.jqueryui.com/ticket/4294)) +* Fixed: Datepicker: Update Ukrainian Localization ([#4298](https://bugs.jqueryui.com/ticket/4298)) +* Fixed: Datepicker: destroy, disable, and enable methods affect sibling datepickers ([#4240](https://bugs.jqueryui.com/ticket/4240)) +* Fixed: Datepicker: Update Albanian Localization ([#4313](https://bugs.jqueryui.com/ticket/4313)) ### Slider -* Fixed: Slider: ui.value incorrect in slide event if handle at value 0 ([#4292](http://bugs.jqueryui.com/ticket/4292)) -* Fixed: Slider: clicking on slider with negative values causes error 'closestHandle is undefined' ([#4315](http://bugs.jqueryui.com/ticket/4315)) -* Fixed: Slider: method destroy does not remove ui-slider-range ([#4318](http://bugs.jqueryui.com/ticket/4318)) +* Fixed: Slider: ui.value incorrect in slide event if handle at value 0 ([#4292](https://bugs.jqueryui.com/ticket/4292)) +* Fixed: Slider: clicking on slider with negative values causes error 'closestHandle is undefined' ([#4315](https://bugs.jqueryui.com/ticket/4315)) +* Fixed: Slider: method destroy does not remove ui-slider-range ([#4318](https://bugs.jqueryui.com/ticket/4318)) ## Website ### Download builder -* Fixed: Invalid archive file from download builder ([#4010](http://bugs.jqueryui.com/ticket/4010)) -* Fixed: Generated styles are repeated many many times ([#4296](http://bugs.jqueryui.com/ticket/4296)) +* Fixed: Invalid archive file from download builder ([#4010](https://bugs.jqueryui.com/ticket/4010)) +* Fixed: Generated styles are repeated many many times ([#4296](https://bugs.jqueryui.com/ticket/4296)) ### Demos & Documents diff --git a/page/changelog/1.7.2.md b/page/changelog/1.7.2.md index 47455b6..0cfc0ad 100644 --- a/page/changelog/1.7.2.md +++ b/page/changelog/1.7.2.md @@ -12,58 +12,58 @@ This is a maintenance release for [jQuery UI 1.7](/changelog/1.7/). It changes o ### Accordion -* Fixed: changestart event not documented ([#4471](http://bugs.jqueryui.com/ticket/4471)) +* Fixed: changestart event not documented ([#4471](https://bugs.jqueryui.com/ticket/4471)) ### Datepicker -* Fixed: Datepicker: Datepicker: destroy, disable, and enable methods affect sibling datepickers ([#4240](http://bugs.jqueryui.com/ticket/4240)) -* Fixed: Datepicker: Datepicker: option dateFormat getter does not return same value as setter ([#4301](http://bugs.jqueryui.com/ticket/4301)) +* Fixed: Datepicker: Datepicker: destroy, disable, and enable methods affect sibling datepickers ([#4240](https://bugs.jqueryui.com/ticket/4240)) +* Fixed: Datepicker: Datepicker: option dateFormat getter does not return same value as setter ([#4301](https://bugs.jqueryui.com/ticket/4301)) ### Dialog -* Fixed: modal dialog + button locks page ([#4065](http://bugs.jqueryui.com/ticket/4065)) -* Fixed: Opening multiple modal dialogs causes access problems to inputs ([#4309](http://bugs.jqueryui.com/ticket/4309)) +* Fixed: modal dialog + button locks page ([#4065](https://bugs.jqueryui.com/ticket/4065)) +* Fixed: Opening multiple modal dialogs causes access problems to inputs ([#4309](https://bugs.jqueryui.com/ticket/4309)) ### Progressbar -* Fixed: progressbar('value') returns a reference to this instead of the value ([#4427](http://bugs.jqueryui.com/ticket/4427)) +* Fixed: progressbar('value') returns a reference to this instead of the value ([#4427](https://bugs.jqueryui.com/ticket/4427)) ### Slider -* Fixed: ui-state-hover, ui-state-active and disabled sliders ([#4391](http://bugs.jqueryui.com/ticket/4391)) -* Fixed: some handles get stuck when using two or more handles ([#3736](http://bugs.jqueryui.com/ticket/3736)) -* Fixed: Slider code doesn't pack, due to missing semicolons ([#4492](http://bugs.jqueryui.com/ticket/4492)) +* Fixed: ui-state-hover, ui-state-active and disabled sliders ([#4391](https://bugs.jqueryui.com/ticket/4391)) +* Fixed: some handles get stuck when using two or more handles ([#3736](https://bugs.jqueryui.com/ticket/3736)) +* Fixed: Slider code doesn't pack, due to missing semicolons ([#4492](https://bugs.jqueryui.com/ticket/4492)) ## Effects -* Fixed: effects.core corrupts jQuery toggle functionality ([#4473](http://bugs.jqueryui.com/ticket/4473)) +* Fixed: effects.core corrupts jQuery toggle functionality ([#4473](https://bugs.jqueryui.com/ticket/4473)) ## CSS Framework -* Fixed: UI Icons are not even, causes misaligned buttons ([#4447](http://bugs.jqueryui.com/ticket/4447)) +* Fixed: UI Icons are not even, causes misaligned buttons ([#4447](https://bugs.jqueryui.com/ticket/4447)) * Fixed: added a rule for widget embedding font size. Resets ui-widget class font-size to 1em when inside another ui-widget. -* Fixed: Update Google CDN with @import-less CSS ([#4463](http://bugs.jqueryui.com/ticket/4463)) -* Themes: minor changes to Blitzer, South Street, Cupertino, Mint Choc, Excite Bike ([#4517](http://bugs.jqueryui.com/ticket/4517)) -* Themes: Added new gallery themes: Sunny, Overcast, Le Frog, Flick, Pepper Grinder, Eggplant and Dark Hive ([#4517](http://bugs.jqueryui.com/ticket/4517)) +* Fixed: Update Google CDN with @import-less CSS ([#4463](https://bugs.jqueryui.com/ticket/4463)) +* Themes: minor changes to Blitzer, South Street, Cupertino, Mint Choc, Excite Bike ([#4517](https://bugs.jqueryui.com/ticket/4517)) +* Themes: Added new gallery themes: Sunny, Overcast, Le Frog, Flick, Pepper Grinder, Eggplant and Dark Hive ([#4517](https://bugs.jqueryui.com/ticket/4517)) ## Website ### Download builder -* Fixed: Redmond theme not included in latest build ([#4302](http://bugs.jqueryui.com/ticket/4302)) -* Fixed: 1.7 download fails WinZip Vista 64bit ([#4340](http://bugs.jqueryui.com/ticket/4340)) -* Fixed: Zip file containing CSS theme files does not unzip ([#4503](http://bugs.jqueryui.com/ticket/4503)) -* Fixed: Download Page Corrupt Zip File ([#4505](http://bugs.jqueryui.com/ticket/4505)) -* Fixed: Cannot download jQuery UI 1.7.1 custom theme ([#4507](http://bugs.jqueryui.com/ticket/4507)) -* Fixed: an issue with IE and the downloadbuilder ([#4291](http://bugs.jqueryui.com/ticket/4291)) -* Fixed: Custom theme generator produces buggy file ([#4496](http://bugs.jqueryui.com/ticket/4496)) -* Fixed: The Compressed (zipped) Folder is invalid or corrupted. ([#4574](http://bugs.jqueryui.com/ticket/4574)) -* Fixed: Themes Not Downloading ([#4283](http://bugs.jqueryui.com/ticket/4283)) -* Fixed: Invalid Zip Files when downloading ([#4323](http://bugs.jqueryui.com/ticket/4323)) -* Fixed: unable to download the UI themes ([#4384](http://bugs.jqueryui.com/ticket/4384)) -* Fixed: downloadbuilder - bung zip file ([#4426](http://bugs.jqueryui.com/ticket/4426)) -* Fixed: themeroller download outputs corrupted zip file ([#4543](http://bugs.jqueryui.com/ticket/4543)) -* Fixed: Theme roller does not seem to be working ([#4546](http://bugs.jqueryui.com/ticket/4546)) -* Fixed: Custom JQuery UI - created with theme roller is producing a corrupt zip file ([#4552](http://bugs.jqueryui.com/ticket/4552)) -* Fixed: Files for custom theme are not generated - default theme is downloaded instead ([#4594](http://bugs.jqueryui.com/ticket/4594)) +* Fixed: Redmond theme not included in latest build ([#4302](https://bugs.jqueryui.com/ticket/4302)) +* Fixed: 1.7 download fails WinZip Vista 64bit ([#4340](https://bugs.jqueryui.com/ticket/4340)) +* Fixed: Zip file containing CSS theme files does not unzip ([#4503](https://bugs.jqueryui.com/ticket/4503)) +* Fixed: Download Page Corrupt Zip File ([#4505](https://bugs.jqueryui.com/ticket/4505)) +* Fixed: Cannot download jQuery UI 1.7.1 custom theme ([#4507](https://bugs.jqueryui.com/ticket/4507)) +* Fixed: an issue with IE and the downloadbuilder ([#4291](https://bugs.jqueryui.com/ticket/4291)) +* Fixed: Custom theme generator produces buggy file ([#4496](https://bugs.jqueryui.com/ticket/4496)) +* Fixed: The Compressed (zipped) Folder is invalid or corrupted. ([#4574](https://bugs.jqueryui.com/ticket/4574)) +* Fixed: Themes Not Downloading ([#4283](https://bugs.jqueryui.com/ticket/4283)) +* Fixed: Invalid Zip Files when downloading ([#4323](https://bugs.jqueryui.com/ticket/4323)) +* Fixed: unable to download the UI themes ([#4384](https://bugs.jqueryui.com/ticket/4384)) +* Fixed: downloadbuilder - bung zip file ([#4426](https://bugs.jqueryui.com/ticket/4426)) +* Fixed: themeroller download outputs corrupted zip file ([#4543](https://bugs.jqueryui.com/ticket/4543)) +* Fixed: Theme roller does not seem to be working ([#4546](https://bugs.jqueryui.com/ticket/4546)) +* Fixed: Custom JQuery UI - created with theme roller is producing a corrupt zip file ([#4552](https://bugs.jqueryui.com/ticket/4552)) +* Fixed: Files for custom theme are not generated - default theme is downloaded instead ([#4594](https://bugs.jqueryui.com/ticket/4594)) diff --git a/page/changelog/1.7.md b/page/changelog/1.7.md index cb7bbd0..822ed7c 100644 --- a/page/changelog/1.7.md +++ b/page/changelog/1.7.md @@ -10,30 +10,30 @@ This release adds one new widget: Progressbar. It also modifies other widgets to ## Core -* Added: metadata support to the widget factory. ([#3187](http://bugs.jqueryui.com/ticket/3187)) +* Added: metadata support to the widget factory. ([#3187](https://bugs.jqueryui.com/ticket/3187)) * Added: trigger method for triggering callbacks and events in widget factory. * Added: :data selector that matches elements that have data for a given key. -* Added: :enableSelection/disableSelection now returns the chain ([#3174](http://bugs.jqueryui.com/ticket/3174)) -* Added: Made enableSelection/disableSelection standard jQuery methods ([#3459](http://bugs.jqueryui.com/ticket/3459)) +* Added: :enableSelection/disableSelection now returns the chain ([#3174](https://bugs.jqueryui.com/ticket/3174)) +* Added: Made enableSelection/disableSelection standard jQuery methods ([#3459](https://bugs.jqueryui.com/ticket/3459)) * Added: a namespace to the selectstart event handler in $.ui.disableSelection() so we don't remove other event handlers in $.ui.disableSelection(). -* Added: constants for key codes. ([#3233](http://bugs.jqueryui.com/ticket/3233)) -* Added: option method to widgets ([#3257](http://bugs.jqueryui.com/ticket/3257)) -* Added: Let mouse events propagate ([#3552](http://bugs.jqueryui.com/ticket/3552)) -* Added: All files now have version numbers in the header ([#3284](http://bugs.jqueryui.com/ticket/3284)) +* Added: constants for key codes. ([#3233](https://bugs.jqueryui.com/ticket/3233)) +* Added: option method to widgets ([#3257](https://bugs.jqueryui.com/ticket/3257)) +* Added: Let mouse events propagate ([#3552](https://bugs.jqueryui.com/ticket/3552)) +* Added: All files now have version numbers in the header ([#3284](https://bugs.jqueryui.com/ticket/3284)) * Added: :tabbable selector to find elements that participate in the tabbing order. -* Fixed: Don't prevent click event if mouseup occurs on a different element than mousedown ([#4146](http://bugs.jqueryui.com/ticket/4146)) -* Fixed: Too much recurson with double include ([#4130](http://bugs.jqueryui.com/ticket/4130)) -* Fixed: Error triggering mousedown on elements that use $.ui.mouse ([#4061](http://bugs.jqueryui.com/ticket/4061)) -* Fixed: triggered events are missing properties from the original events ([#3965](http://bugs.jqueryui.com/ticket/3965)) -* Fixed: Components should use this.widgetName on internal methods ([#3838](http://bugs.jqueryui.com/ticket/3838)) -* Fixed: Mouse: Cancel drags in