Skip to content

Commit 07fe004

Browse files
committed
New Build
1 parent 0de8af6 commit 07fe004

21 files changed

+42
-40
lines changed

CONTRIBUTORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
* cltrudeau / ([@cltrudeau](https://github.com/cltrudeau))
55
* tickArray option
66

7+
* Gremlyn / ([@Gremlyn](https://github.com/Gremlyn))
8+
* fix sizing issues inside parent with a set size

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.9 - 2013-11-03
1+
/*! Ben's jQuery UI Extensions - v1.0.10 - 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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Ben's jQuery UI Extensions - v1.0.9 - 2013-11-03
1+
/*! Ben's jQuery UI Extensions - v1.0.10 - 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.9",
19+
version: "1.0.10",
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.9",
529+
version: "1.0.10",
530530

531531
widgetEventPrefix: "combobox",
532532

@@ -739,7 +739,7 @@ $.widget( "ui.spinner", {
739739

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

742-
version: "1.0.9",
742+
version: "1.0.10",
743743

744744
options: {
745745
tickInterval: 0,
@@ -772,10 +772,10 @@ $.widget( "ui.spinner", {
772772

773773
if ( this.orientation == 'horizontal' ) {
774774
this.uiSlider
775-
.width( this.element.width() );
775+
.width( this.element.css('width') );
776776
} else {
777777
this.uiSlider
778-
.height( this.element.height() );
778+
.height( this.element.css('height') );
779779
}
780780

781781
this._drawLabels();
@@ -869,7 +869,7 @@ $.widget( "ui.spinner", {
869869

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

872-
version: "1.0.9",
872+
version: "1.0.10",
873873

874874
widgetEventPrefix: "slidespinner",
875875

@@ -962,7 +962,7 @@ $.widget( "ui.slidespinner", $.ui.spinner, {
962962
(function ( $, undefined ) {
963963
$.widget( "ui.waitbutton", $.ui.button, {
964964

965-
version: "1.0.9",
965+
version: "1.0.10",
966966

967967
// Keep button prefix instead of waitbutton
968968
// 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)