Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
release 3.16.7
Browse files Browse the repository at this point in the history
Bobby Wilkes committed Apr 17, 2018
1 parent dcef25c commit 5f96ade
Showing 7 changed files with 20 additions and 15 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -56,7 +56,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.16.5/fuelux.zip).
- Download a [.zip archive](http://www.fuelcdn.com/fuelux/3.16.6/fuelux.zip).

# Using Fuel UX

@@ -81,11 +81,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.16.5/css/fuelux.min.css" rel="stylesheet">
<link href="//www.fuelcdn.com/fuelux/3.16.6/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.16.5/js/fuelux.min.js"></script>
<script src="//www.fuelcdn.com/fuelux/3.16.6/js/fuelux.min.js"></script>
```

@@ -116,7 +116,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.16.5/'
'fuelux': 'http://www.fuelcdn.com/fuelux/3.16.6/'
//...
}
});
2 changes: 1 addition & 1 deletion dist/css/fuelux.css

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

2 changes: 1 addition & 1 deletion dist/css/fuelux.min.css

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

Binary file modified dist/fuelux.zip
Binary file not shown.
7 changes: 6 additions & 1 deletion dist/js/fuelux.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Fuel UX v3.16.6
* Fuel UX v3.16.7
* Copyright 2012-2018 ExactTarget
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
*/
@@ -4644,6 +4644,11 @@
getPercentage: function() {
var height = ( this.$element.css( 'box-sizing' ) === 'border-box' ) ? this.$element.outerHeight() : this.$element.height();
var scrollHeight = this.$element.get( 0 ).scrollHeight;
// If we cannot compute the height, then we end up fetching all pages (ends up #/0 = Infinity).
// This can happen if the repeater is loaded, but is not in the dom
if ( scrollHeight === 0 || scrollHeight - this.curScrollTop === 0 ) {
return 0;
}
return ( height / ( scrollHeight - this.curScrollTop ) ) * 100;
},

4 changes: 2 additions & 2 deletions dist/js/fuelux.min.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -30,15 +30,15 @@
"babel-eslint": "^8.2.1",
"bower": "1.8.0",
"chai": "^4.0.1",
"co-mocha": "^1.2.0",
"co-mocha": "^1.2.2",
"connect": "3.6.2",
"eslint": "^4.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-es5": "^1.0.9",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-requirejs": "^3.0.0",
"express": "^4.15.3",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"grunt": "^1.0.1",
"grunt": "^1.0.2",
"grunt-banner": "0.6.0",
"grunt-blanket-qunit": "^0.2.0",
"grunt-browserify": "5.0.0",
@@ -102,7 +102,7 @@
"url": "git://github.com/ExactTarget/fuelux.git"
},
"title": "Fuel UX",
"version": "3.16.6",
"version": "3.16.7",
"volo": {
"baseDir": "lib",
"dependencies": {

0 comments on commit 5f96ade

Please sign in to comment.