release 3.17.2

This commit is contained in:
Bobby Wilkes
2019-08-14 11:11:39 -04:00
parent 77a4198bf2
commit f519b85915
7 changed files with 16 additions and 16 deletions

View File

@@ -64,7 +64,7 @@ You can also use on of the following methods:
- [Volo](https://github.com/volojs/volo) `volo add fuelux` (update with `volo add -f fuelux`).
- Clone via git `git clone https://github.com/ExactTarget/fuelux/`
- Cloning the repository ensures you can apply future updates to Fuel UX easily, but requires to you manage its [dependencies](#dependencies) on your own.
- Download a [.zip archive](http://www.fuelcdn.com/fuelux/3.17.0/fuelux.zip).
- Download a [.zip archive](http://www.fuelcdn.com/fuelux/3.17.1/fuelux.zip).
# Using Fuel UX
@@ -89,11 +89,11 @@ For other methods of managing dependencies consider [AMD support via require](#a
Ensure all the dependencies are included on the page (eg, such as using the CDN as shown below).
```
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="//www.fuelcdn.com/fuelux/3.17.0/css/fuelux.min.css" rel="stylesheet">
<link href="//www.fuelcdn.com/fuelux/3.17.1/css/fuelux.min.css" rel="stylesheet">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.1/js/bootstrap.min.js"></script>
<script src="//www.fuelcdn.com/fuelux/3.17.0/js/fuelux.min.js"></script>
<script src="//www.fuelcdn.com/fuelux/3.17.1/js/fuelux.min.js"></script>
```
@@ -124,7 +124,7 @@ If using AMD (such as [RequireJS](http://requirejs.org)), reference the FuelUX d
```javascript
require.config({
paths: {
'fuelux': 'http://www.fuelcdn.com/fuelux/3.17.0/'
'fuelux': 'http://www.fuelcdn.com/fuelux/3.17.1/'
//...
}
});

2
dist/css/fuelux.css vendored
View File

@@ -1,5 +1,5 @@
/*!
* Fuel UX v3.17.1
* Fuel UX v3.17.2
* Copyright 2012-2019 ExactTarget
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
*/

View File

@@ -1,5 +1,5 @@
/*!
* Fuel UX v3.17.1
* Fuel UX v3.17.2
* Copyright 2012-2019 ExactTarget
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
*/

BIN
dist/fuelux.zip vendored

Binary file not shown.

14
dist/js/fuelux.js vendored
View File

@@ -1,5 +1,5 @@
/*!
* Fuel UX v3.17.1
* Fuel UX v3.17.2
* Copyright 2012-2019 ExactTarget
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
*/
@@ -5956,7 +5956,7 @@
delete options.end;
this.infiniteScrollingOptions = options;
viewport.css( {
height: viewport.height() + footer.outerHeight()
height: viewport.height() + ( footer.outerHeight() || 0 )
} );
footer.hide();
} else {
@@ -5971,7 +5971,7 @@
this.infiniteScrollingEnd = null;
this.infiniteScrollingOptions = {};
viewport.css( {
height: viewport.height() - footer.outerHeight()
height: viewport.height() - ( footer.outerHeight() || 0 )
} );
footer.show();
}
@@ -6232,8 +6232,8 @@
};
var staticHeightValue = ( staticHeight === 'true' || staticHeight === true ) ? this.$element.height() : parseInt( staticHeight, 10 );
var headerHeight = this.$element.find( '.repeater-header' ).outerHeight();
var footerHeight = this.$element.find( '.repeater-footer' ).outerHeight();
var headerHeight = this.$element.find( '.repeater-header' ).outerHeight() || 0;
var footerHeight = this.$element.find( '.repeater-footer' ).outerHeight() || 0;
var bottomMargin = ( viewportMargins.bottom === 'auto' ) ? 0 : parseInt( viewportMargins.bottom, 10 );
var topMargin = ( viewportMargins.top === 'auto' ) ? 0 : parseInt( viewportMargins.top, 10 );
@@ -6245,8 +6245,8 @@
if ( viewTypeObj.resize ) {
viewTypeObj.resize.call( this, {
height: this.$element.outerHeight(),
width: this.$element.outerWidth()
height: this.$element.outerHeight() || 0,
width: this.$element.outerWidth() || 0
} );
}

File diff suppressed because one or more lines are too long

View File

@@ -102,7 +102,7 @@
"url": "git://github.com/ExactTarget/fuelux.git"
},
"title": "Fuel UX",
"version": "3.17.1",
"version": "3.17.2",
"volo": {
"baseDir": "lib",
"dependencies": {