Skip to content

Commit

Permalink
New Build
Browse files Browse the repository at this point in the history
  • Loading branch information
bseth99 committed Mar 22, 2014
1 parent 46dfffb commit 0a6ac0a
Show file tree
Hide file tree
Showing 17 changed files with 44 additions and 20 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.14 - 2014-03-21
/*! Ben's jQuery UI Extensions - v1.0.14 - 2014-03-22
* 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, jquery.ui.timepicker.css
* Copyright 2014 Ben Olson; Licensed MIT */
Expand Down
16 changes: 14 additions & 2 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.14 - 2014-03-21
/*! Ben's jQuery UI Extensions - v1.0.14 - 2014-03-22
* 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.timepicker.js, jquery.ui.waitbutton.js
* Copyright 2014 Ben Olson; Licensed MIT */
Expand Down Expand Up @@ -1137,10 +1137,11 @@ $.widget( "ui.slidespinner", $.ui.spinner, {
var val = +self.$minute.val();

if ( val == -1 || val == 60 ) {
self.$hour.val('')
self.$hour.val('');
}

self._ensureValue();

}
});

Expand All @@ -1152,6 +1153,17 @@ $.widget( "ui.slidespinner", $.ui.spinner, {
}
});

this._on( this._events );
},

_events: {

'click input': function( e ) {

var $target = $( e.currentTarget );

$target.select();
}
},

_destroy: function () {
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.

4 changes: 2 additions & 2 deletions dist/ext-jquery-ui.min.js

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion dist/full/jquery.ui.timepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,11 @@
var val = +self.$minute.val();

if ( val == -1 || val == 60 ) {
self.$hour.val('')
self.$hour.val('');
}

self._ensureValue();

}
});

Expand All @@ -189,6 +190,17 @@
}
});

this._on( this._events );
},

_events: {

'click input': function( e ) {

var $target = $( e.currentTarget );

$target.select();
}
},

_destroy: function () {
Expand Down
2 changes: 1 addition & 1 deletion dist/minified/jquery.ui.combobox.min.js

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

2 changes: 1 addition & 1 deletion dist/minified/jquery.ui.labeledslider.min.js

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

2 changes: 1 addition & 1 deletion dist/minified/jquery.ui.slidespinner.min.js

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

Loading

0 comments on commit 0a6ac0a

Please sign in to comment.