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

Commit 034b6c5

Browse files
author
Bobby Wilkes
committed
release 3.17.0
1 parent 027725d commit 034b6c5

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
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.6/fuelux.zip).
59+
- Download a [.zip archive](http://www.fuelcdn.com/fuelux/3.16.7/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.6/css/fuelux.min.css" rel="stylesheet">
84+
<link href="//www.fuelcdn.com/fuelux/3.16.7/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.6/js/fuelux.min.js"></script>
88+
<script src="//www.fuelcdn.com/fuelux/3.16.7/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.6/'
119+
'fuelux': 'http://www.fuelcdn.com/fuelux/3.16.7/'
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

84 Bytes
Binary file not shown.

dist/js/fuelux.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Fuel UX v3.16.7
2+
* Fuel UX v3.17.0
33
* Copyright 2012-2018 ExactTarget
44
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
55
*/
@@ -3281,7 +3281,7 @@
32813281
.removeClass( 'hide hidden' ) // jQuery deprecated hide in 3.0. Use hidden instead. Leaving hide here to support previous markup
32823282
.removeData( 'template' )
32833283
.removeAttr( 'data-template' );
3284-
$entity.find( '.tree-' + nodeType + '-name > .tree-label' ).html( treeNode.text || treeNode.name );
3284+
$entity.find( '.tree-' + nodeType + '-name > .tree-label' )[ self.options.html ? 'html' : 'text' ]( treeNode.text || treeNode.name );
32853285
$entity.data( treeNode );
32863286

32873287

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"url": "git://github.com/ExactTarget/fuelux.git"
103103
},
104104
"title": "Fuel UX",
105-
"version": "3.16.7",
105+
"version": "3.17.0",
106106
"volo": {
107107
"baseDir": "lib",
108108
"dependencies": {

0 commit comments

Comments
 (0)