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

Commit

Permalink
release 3.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
interactivellama committed Feb 26, 2015
1 parent 19f9cb0 commit 5623109
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 17 deletions.
6 changes: 3 additions & 3 deletions DETAILS.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Fuel UX can be applied to a section of your your HTML or the entire page by addi
## Downloading code
Fuel UX can be obtained in any of the following ways:

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

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

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 of the [latest release](http://www.fuelcdn.com/fuelux/3.6.2/fuelux.zip).
* Download a .zip archive of the [latest release](http://www.fuelcdn.com/fuelux/3.6.3/fuelux.zip).

## AMD support

Expand All @@ -63,7 +63,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.6.2/'
'fuelux': 'http://www.fuelcdn.com/fuelux/3.6.3/'
//...
}
});
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@ Add `fuelux` class to the portion of the page using Fuel UX as seen [here](https
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.6.2/css/fuelux.min.css" rel="stylesheet">
<link href="//www.fuelcdn.com/fuelux/3.6.3/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.6.2/js/fuelux.min.js"></script>
<script src="//www.fuelcdn.com/fuelux/3.6.3/js/fuelux.min.js"></script>
```

### Install
A few ways available to install.

- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.6.2/)
- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.6.3/)
- [Download the latest release](https://github.com/exacttarget/fuelux/archive/3.4.0.zip).
- Clone the repo: `git clone https://github.com/exacttarget/fuelux.git`.
- Install with [Bower](http://bower.io): `bower install fuelux`.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fuelux",
"description": "Extending Bootstrap with additional lightweight JavaScript controls.",
"version": "3.6.2",
"version": "3.6.3",
"keywords": [
"application",
"bootstrap",
Expand Down
3 changes: 1 addition & 2 deletions dist/css/fuelux.css

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

3 changes: 1 addition & 2 deletions 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.
5 changes: 2 additions & 3 deletions dist/js/fuelux.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/*!
* Fuel UX EDGE - Built 2015/02/25, 5:07:13 PM
* Previous release: v3.6.2
* Fuel UX v3.6.3
* Copyright 2012-2015 ExactTarget
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
*/
Expand Down Expand Up @@ -3078,7 +3077,7 @@
// the "name" attribute is also supported but is deprecated for "text".

// add attributes to tree-branch or tree-item
var attr = value[ 'attr' ] || value.dataAttributes || [];
var attr = value.attr || value.dataAttributes || [];
$.each( attr, function( key, value ) {
switch ( key ) {
case 'cssClass':
Expand Down
3 changes: 1 addition & 2 deletions dist/js/fuelux.min.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"test": "grunt travisci --verbose"
},
"title": "Fuel UX",
"version": "3.6.2",
"version": "3.6.3",
"volo": {
"baseDir": "lib",
"dependencies": {
Expand Down

0 comments on commit 5623109

Please sign in to comment.