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

Commit 5623109

Browse files
release 3.6.3
1 parent 19f9cb0 commit 5623109

File tree

9 files changed

+13
-17
lines changed

9 files changed

+13
-17
lines changed

DETAILS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Fuel UX can be applied to a section of your your HTML or the entire page by addi
3030
## Downloading code
3131
Fuel UX can be obtained in any of the following ways:
3232

33-
* Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.6.2/)
33+
* Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.6.3/)
3434
* Using [Bower](https://github.com/bower/bower) (ensures you get all the [dependencies](#dependencies)):
3535

3636
```
@@ -53,7 +53,7 @@ Fuel UX can be obtained in any of the following ways:
5353

5454
Cloning the repository ensures you can apply future updates to Fuel UX easily, but requires to you manage its [dependencies](#dependencies) on your own.
5555

56-
* Download a .zip archive of the [latest release](http://www.fuelcdn.com/fuelux/3.6.2/fuelux.zip).
56+
* Download a .zip archive of the [latest release](http://www.fuelcdn.com/fuelux/3.6.3/fuelux.zip).
5757

5858
## AMD support
5959

@@ -63,7 +63,7 @@ If using AMD (such as [RequireJS](http://requirejs.org)), reference the FuelUX d
6363
```javascript
6464
require.config({
6565
paths: {
66-
'fuelux': 'http://www.fuelcdn.com/fuelux/3.6.2/'
66+
'fuelux': 'http://www.fuelcdn.com/fuelux/3.6.3/'
6767
//...
6868
}
6969
});

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ Add `fuelux` class to the portion of the page using Fuel UX as seen [here](https
3131
Ensure all the dependencies are included on the page (eg, such as using the CDN as shown below).
3232
```
3333
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
34-
<link href="//www.fuelcdn.com/fuelux/3.6.2/css/fuelux.min.css" rel="stylesheet">
34+
<link href="//www.fuelcdn.com/fuelux/3.6.3/css/fuelux.min.css" rel="stylesheet">
3535
3636
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
3737
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.1/js/bootstrap.min.js"></script>
38-
<script src="//www.fuelcdn.com/fuelux/3.6.2/js/fuelux.min.js"></script>
38+
<script src="//www.fuelcdn.com/fuelux/3.6.3/js/fuelux.min.js"></script>
3939
4040
```
4141

4242
### Install
4343
A few ways available to install.
4444

45-
- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.6.2/)
45+
- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.6.3/)
4646
- [Download the latest release](https://github.com/exacttarget/fuelux/archive/3.4.0.zip).
4747
- Clone the repo: `git clone https://github.com/exacttarget/fuelux.git`.
4848
- Install with [Bower](http://bower.io): `bower install fuelux`.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fuelux",
33
"description": "Extending Bootstrap with additional lightweight JavaScript controls.",
4-
"version": "3.6.2",
4+
"version": "3.6.3",
55
"keywords": [
66
"application",
77
"bootstrap",

dist/css/fuelux.css

Lines changed: 1 addition & 2 deletions
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 & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/fuelux.zip

-191 Bytes
Binary file not shown.

dist/js/fuelux.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*!
2-
* Fuel UX EDGE - Built 2015/02/25, 5:07:13 PM
3-
* Previous release: v3.6.2
2+
* Fuel UX v3.6.3
43
* Copyright 2012-2015 ExactTarget
54
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
65
*/
@@ -3078,7 +3077,7 @@
30783077
// the "name" attribute is also supported but is deprecated for "text".
30793078

30803079
// add attributes to tree-branch or tree-item
3081-
var attr = value[ 'attr' ] || value.dataAttributes || [];
3080+
var attr = value.attr || value.dataAttributes || [];
30823081
$.each( attr, function( key, value ) {
30833082
switch ( key ) {
30843083
case 'cssClass':

dist/js/fuelux.min.js

Lines changed: 1 addition & 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
@@ -76,7 +76,7 @@
7676
"test": "grunt travisci --verbose"
7777
},
7878
"title": "Fuel UX",
79-
"version": "3.6.2",
79+
"version": "3.6.3",
8080
"volo": {
8181
"baseDir": "lib",
8282
"dependencies": {

0 commit comments

Comments
 (0)