Skip to content

Commit

Permalink
New Build
Browse files Browse the repository at this point in the history
  • Loading branch information
bseth99 committed Dec 15, 2013
1 parent 1835574 commit e9aef05
Show file tree
Hide file tree
Showing 20 changed files with 50 additions and 40 deletions.
2 changes: 1 addition & 1 deletion dist/ext-jquery-ui.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Ben's jQuery UI Extensions - v1.0.10 - 2013-12-14
/*! Ben's jQuery UI Extensions - v1.0.11 - 2013-12-14
* https://github.com/bseth99/jquery-ui-extensions
* Includes: jquery.ui.spinner.css, jquery.ui.slidespinner.css, jquery.ui.labeledslider.css, jquery.ui.combobox.css, jquery.ui.waitbutton.css
* Copyright 2013 Ben Olson; Licensed MIT */
Expand Down
21 changes: 13 additions & 8 deletions dist/ext-jquery-ui.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Ben's jQuery UI Extensions - v1.0.10 - 2013-12-14
/*! Ben's jQuery UI Extensions - v1.0.11 - 2013-12-14
* https://github.com/bseth99/jquery-ui-extensions
* Includes: jquery.ui.spinner.js, jquery.ui.combobox.js, jquery.ui.labeledslider.js, jquery.ui.slidespinner.js, jquery.ui.waitbutton.js
* Copyright 2013 Ben Olson; Licensed MIT */
Expand All @@ -16,7 +16,7 @@ function modifier( fn ) {
}

$.widget( "ui.spinner", {
version: "1.0.10",
version: "1.0.11",
defaultElement: "<input>",
widgetEventPrefix: "spin",
options: {
Expand Down Expand Up @@ -526,7 +526,7 @@ $.widget( "ui.spinner", {

$.widget( "ui.combobox", {

version: "1.0.10",
version: "1.0.11",

widgetEventPrefix: "combobox",

Expand Down Expand Up @@ -637,9 +637,14 @@ $.widget( "ui.spinner", {
if ( !valid ) {

// remove invalid value, as it didn't match anything
$el.val( "" );
$el.val( '' );

// Internally, term must change before another search is performed
// if the same search is performed again, the menu won't be shown
// because the value didn't actually change via a keyboard event
$el.data( 'ui-autocomplete' ).term = '';

this.element.prop('selectedIndex', -1);
//return false;

}
}
Expand Down Expand Up @@ -739,7 +744,7 @@ $.widget( "ui.spinner", {

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

version: "1.0.10",
version: "1.0.11",

options: {
tickInterval: 0,
Expand Down Expand Up @@ -869,7 +874,7 @@ $.widget( "ui.spinner", {

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

version: "1.0.10",
version: "1.0.11",

widgetEventPrefix: "slidespinner",

Expand Down Expand Up @@ -962,7 +967,7 @@ $.widget( "ui.slidespinner", $.ui.spinner, {
(function ( $, undefined ) {
$.widget( "ui.waitbutton", $.ui.button, {

version: "1.0.10",
version: "1.0.11",

// Keep button prefix instead of waitbutton
// otherwise waiting event is waitbuttonwaiting
Expand Down
2 changes: 1 addition & 1 deletion dist/ext-jquery-ui.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e9aef05

Please sign in to comment.