mirror of
https://github.com/ExactTarget/fuelux.git
synced 2026-01-09 14:37:54 -05:00
release 3.17.2
This commit is contained in:
@@ -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
2
dist/css/fuelux.css
vendored
@@ -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)
|
||||
*/
|
||||
|
||||
2
dist/css/fuelux.min.css
vendored
2
dist/css/fuelux.min.css
vendored
@@ -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
BIN
dist/fuelux.zip
vendored
Binary file not shown.
14
dist/js/fuelux.js
vendored
14
dist/js/fuelux.js
vendored
@@ -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
|
||||
} );
|
||||
}
|
||||
|
||||
|
||||
4
dist/js/fuelux.min.js
vendored
4
dist/js/fuelux.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -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": {
|
||||
|
||||
Reference in New Issue
Block a user