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

Commit 5f96ade

Browse files
author
Bobby Wilkes
committed
release 3.16.7
1 parent dcef25c commit 5f96ade

File tree

7 files changed

+20
-15
lines changed

7 files changed

+20
-15
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ You can also use on of the following methods:
5656
- [Volo](https://github.com/volojs/volo) `volo add fuelux` (update with `volo add -f fuelux`).
5757
- Clone via git `git clone https://github.com/ExactTarget/fuelux/`
5858
- Cloning the repository ensures you can apply future updates to Fuel UX easily, but requires to you manage its [dependencies](#dependencies) on your own.
59-
- Download a [.zip archive](http://www.fuelcdn.com/fuelux/3.16.5/fuelux.zip).
59+
- Download a [.zip archive](http://www.fuelcdn.com/fuelux/3.16.6/fuelux.zip).
6060

6161
# Using Fuel UX
6262

@@ -81,11 +81,11 @@ For other methods of managing dependencies consider [AMD support via require](#a
8181
Ensure all the dependencies are included on the page (eg, such as using the CDN as shown below).
8282
```
8383
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
84-
<link href="//www.fuelcdn.com/fuelux/3.16.5/css/fuelux.min.css" rel="stylesheet">
84+
<link href="//www.fuelcdn.com/fuelux/3.16.6/css/fuelux.min.css" rel="stylesheet">
8585
8686
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
8787
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.1/js/bootstrap.min.js"></script>
88-
<script src="//www.fuelcdn.com/fuelux/3.16.5/js/fuelux.min.js"></script>
88+
<script src="//www.fuelcdn.com/fuelux/3.16.6/js/fuelux.min.js"></script>
8989
9090
```
9191

@@ -116,7 +116,7 @@ If using AMD (such as [RequireJS](http://requirejs.org)), reference the FuelUX d
116116
```javascript
117117
require.config({
118118
paths: {
119-
'fuelux': 'http://www.fuelcdn.com/fuelux/3.16.5/'
119+
'fuelux': 'http://www.fuelcdn.com/fuelux/3.16.6/'
120120
//...
121121
}
122122
});

dist/css/fuelux.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.

dist/css/fuelux.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.

dist/fuelux.zip

112 Bytes
Binary file not shown.

dist/js/fuelux.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Fuel UX v3.16.6
2+
* Fuel UX v3.16.7
33
* Copyright 2012-2018 ExactTarget
44
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
55
*/
@@ -4644,6 +4644,11 @@
46444644
getPercentage: function() {
46454645
var height = ( this.$element.css( 'box-sizing' ) === 'border-box' ) ? this.$element.outerHeight() : this.$element.height();
46464646
var scrollHeight = this.$element.get( 0 ).scrollHeight;
4647+
// If we cannot compute the height, then we end up fetching all pages (ends up #/0 = Infinity).
4648+
// This can happen if the repeater is loaded, but is not in the dom
4649+
if ( scrollHeight === 0 || scrollHeight - this.curScrollTop === 0 ) {
4650+
return 0;
4651+
}
46474652
return ( height / ( scrollHeight - this.curScrollTop ) ) * 100;
46484653
},
46494654

dist/js/fuelux.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
"babel-eslint": "^8.2.1",
3131
"bower": "1.8.0",
3232
"chai": "^4.0.1",
33-
"co-mocha": "^1.2.0",
33+
"co-mocha": "^1.2.2",
3434
"connect": "3.6.2",
35-
"eslint": "^4.1.0",
35+
"eslint": "^4.19.1",
3636
"eslint-config-airbnb-es5": "^1.0.9",
37-
"eslint-plugin-react": "^7.6.1",
37+
"eslint-plugin-react": "^7.7.0",
3838
"eslint-plugin-requirejs": "^3.0.0",
39-
"express": "^4.15.3",
39+
"express": "^4.16.3",
4040
"express-handlebars": "^3.0.0",
41-
"grunt": "^1.0.1",
41+
"grunt": "^1.0.2",
4242
"grunt-banner": "0.6.0",
4343
"grunt-blanket-qunit": "^0.2.0",
4444
"grunt-browserify": "5.0.0",
@@ -102,7 +102,7 @@
102102
"url": "git://github.com/ExactTarget/fuelux.git"
103103
},
104104
"title": "Fuel UX",
105-
"version": "3.16.6",
105+
"version": "3.16.7",
106106
"volo": {
107107
"baseDir": "lib",
108108
"dependencies": {

0 commit comments

Comments
 (0)