Skip to content

Commit e9aef05

Browse files
committed
New Build
1 parent 1835574 commit e9aef05

20 files changed

+50
-40
lines changed

dist/ext-jquery-ui.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Ben's jQuery UI Extensions - v1.0.10 - 2013-12-14
1+
/*! Ben's jQuery UI Extensions - v1.0.11 - 2013-12-14
22
* https://github.com/bseth99/jquery-ui-extensions
33
* Includes: jquery.ui.spinner.css, jquery.ui.slidespinner.css, jquery.ui.labeledslider.css, jquery.ui.combobox.css, jquery.ui.waitbutton.css
44
* Copyright 2013 Ben Olson; Licensed MIT */

dist/ext-jquery-ui.js

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Ben's jQuery UI Extensions - v1.0.10 - 2013-12-14
1+
/*! Ben's jQuery UI Extensions - v1.0.11 - 2013-12-14
22
* https://github.com/bseth99/jquery-ui-extensions
33
* Includes: jquery.ui.spinner.js, jquery.ui.combobox.js, jquery.ui.labeledslider.js, jquery.ui.slidespinner.js, jquery.ui.waitbutton.js
44
* Copyright 2013 Ben Olson; Licensed MIT */
@@ -16,7 +16,7 @@ function modifier( fn ) {
1616
}
1717

1818
$.widget( "ui.spinner", {
19-
version: "1.0.10",
19+
version: "1.0.11",
2020
defaultElement: "<input>",
2121
widgetEventPrefix: "spin",
2222
options: {
@@ -526,7 +526,7 @@ $.widget( "ui.spinner", {
526526

527527
$.widget( "ui.combobox", {
528528

529-
version: "1.0.10",
529+
version: "1.0.11",
530530

531531
widgetEventPrefix: "combobox",
532532

@@ -637,9 +637,14 @@ $.widget( "ui.spinner", {
637637
if ( !valid ) {
638638

639639
// remove invalid value, as it didn't match anything
640-
$el.val( "" );
640+
$el.val( '' );
641+
642+
// Internally, term must change before another search is performed
643+
// if the same search is performed again, the menu won't be shown
644+
// because the value didn't actually change via a keyboard event
645+
$el.data( 'ui-autocomplete' ).term = '';
646+
641647
this.element.prop('selectedIndex', -1);
642-
//return false;
643648

644649
}
645650
}
@@ -739,7 +744,7 @@ $.widget( "ui.spinner", {
739744

740745
$.widget( "ui.labeledslider", $.ui.slider, {
741746

742-
version: "1.0.10",
747+
version: "1.0.11",
743748

744749
options: {
745750
tickInterval: 0,
@@ -869,7 +874,7 @@ $.widget( "ui.spinner", {
869874

870875
$.widget( "ui.slidespinner", $.ui.spinner, {
871876

872-
version: "1.0.10",
877+
version: "1.0.11",
873878

874879
widgetEventPrefix: "slidespinner",
875880

@@ -962,7 +967,7 @@ $.widget( "ui.slidespinner", $.ui.spinner, {
962967
(function ( $, undefined ) {
963968
$.widget( "ui.waitbutton", $.ui.button, {
964969

965-
version: "1.0.10",
970+
version: "1.0.11",
966971

967972
// Keep button prefix instead of waitbutton
968973
// otherwise waiting event is waitbuttonwaiting

dist/ext-jquery-ui.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)