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

Commit 0a53328

Browse files
release 3.15.6
1 parent fce60b0 commit 0a53328

File tree

8 files changed

+13
-15
lines changed

8 files changed

+13
-15
lines changed

DETAILS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Additional details to supplement the brief nature of the README file.
2929

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

32-
* Download a .zip archive of the [latest release](http://www.fuelcdn.com/fuelux/3.15.4/fuelux.zip).
32+
* Download a .zip archive of the [latest release](http://www.fuelcdn.com/fuelux/3.15.5/fuelux.zip).
3333

3434
## AMD support
3535

@@ -39,7 +39,7 @@ If using AMD (such as [RequireJS](http://requirejs.org)), reference the FuelUX d
3939
```javascript
4040
require.config({
4141
paths: {
42-
'fuelux': 'http://www.fuelcdn.com/fuelux/3.15.4/'
42+
'fuelux': 'http://www.fuelcdn.com/fuelux/3.15.5/'
4343
//...
4444
}
4545
});

README.md

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

4545
#### The code you want is in `dist`
4646
A few ways available to install.
4747

48-
- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.15.4/)
48+
- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.15.5/)
4949
- Install with [NPM](https://www.npmjs.com/package/fuelux): `npm install fuelux`.
5050
- [Download the latest release](https://github.com/exacttarget/fuelux/archive/3.4.0.zip).
5151
- Clone the repo: `git clone https://github.com/exacttarget/fuelux.git`.

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

-81 Bytes
Binary file not shown.

dist/js/fuelux.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Fuel UX v3.15.5
2+
* Fuel UX v3.15.6
33
* Copyright 2012-2016 ExactTarget
44
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
55
*/
@@ -6188,10 +6188,8 @@
61886188

61896189
//this gets a little messy with all the cloning. We need to make sure the ID and FOR
61906190
//attribs are unique for the 'top most' cloned checkbox
6191-
var $checkbox = $frozenTheadWrapper.find( 'th input[type="checkbox"]' );
6192-
$checkbox.attr( 'id', $checkbox.attr( 'id' ) + '_cloned' );
6193-
var $label = $frozenTheadWrapper.find( 'th label' );
6194-
$label.attr( 'for', $label.attr( 'for' ) + '_cloned' );
6191+
var $checkboxLabel = $frozenTheadWrapper.find( 'th label.checkbox-custom.checkbox-inline' );
6192+
$checkboxLabel.attr( 'id', $checkboxLabel.attr( 'id' ) + '_cloned' );
61956193

61966194
$frozenColumnWrapper.append( $frozenColumn );
61976195
repeaterWrapper.append( $frozenTheadWrapper );

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
@@ -83,7 +83,7 @@
8383
"postinstall": "node postinstall.js"
8484
},
8585
"title": "Fuel UX",
86-
"version": "3.15.5",
86+
"version": "3.15.6",
8787
"volo": {
8888
"baseDir": "lib",
8989
"dependencies": {

0 commit comments

Comments
 (0)