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

Commit

Permalink
release 3.15.5
Browse files Browse the repository at this point in the history
  • Loading branch information
interactivellama committed Jul 21, 2016
1 parent f8e749b commit 267e309
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 17 deletions.
4 changes: 2 additions & 2 deletions DETAILS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Additional details to supplement the brief nature of the README file.

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

## AMD support

Expand All @@ -39,7 +39,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.15.3/'
'fuelux': 'http://www.fuelcdn.com/fuelux/3.15.4/'
//...
}
});
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,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.15.3/css/fuelux.min.css" rel="stylesheet">
<link href="//www.fuelcdn.com/fuelux/3.15.4/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.15.3/js/fuelux.min.js"></script>
<script src="//www.fuelcdn.com/fuelux/3.15.4/js/fuelux.min.js"></script>
```

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

- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.15.3/)
- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.15.4/)
- Install with [NPM](https://www.npmjs.com/package/fuelux): `npm install fuelux`.
- [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`.
Expand Down
6 changes: 5 additions & 1 deletion dist/css/fuelux.css

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

2 changes: 1 addition & 1 deletion dist/css/fuelux.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/css/fuelux.min.css

Large diffs are not rendered by default.

Binary file modified dist/fuelux.zip
Binary file not shown.
14 changes: 11 additions & 3 deletions dist/js/fuelux.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Fuel UX v3.15.4
* Fuel UX v3.15.5
* Copyright 2012-2016 ExactTarget
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
*/
Expand Down Expand Up @@ -6392,6 +6392,7 @@

$.fn.repeater.Constructor.prototype.list_frozenOptionsInitialize = function() {
var $checkboxes = this.$element.find( '.frozen-column-wrapper .checkbox-inline' );
var $headerCheckbox = this.$element.find( '.header-checkbox .checkbox-custom' );
var $everyTable = this.$element.find( '.repeater-list table' );
var self = this;

Expand All @@ -6406,6 +6407,7 @@
}
} );

$headerCheckbox.checkbox();
$checkboxes.checkbox();

// Row checkboxes
Expand Down Expand Up @@ -6671,8 +6673,14 @@
var chevUp = 'glyphicon-chevron-up';
var $div = $( '<div class="repeater-list-heading"><span class="glyphicon rlc"></span></div>' );
var checkAllID = ( this.$element.attr( 'id' ) + '_' || '' ) + 'checkall';
var checkBoxMarkup = '<div class="repeater-list-heading header-checkbox"><div class="checkbox checkbox-inline"><input type="checkbox" id="' + checkAllID + '">' +
'<label for="' + checkAllID + '"></label></div></div>';

var checkBoxMarkup = '<div class="repeater-list-heading header-checkbox">' +
'<label id="' + checkAllID + '" class="checkbox-custom checkbox-inline">' +
'<input class="sr-only" type="checkbox" value="">' +
'<span class="checkbox-label">&nbsp;</span>' +
'</label>' +
'</div>';

var $header = $( '<th></th>' );
var self = this;
var $both, className, sortable, $span, $spans;
Expand Down
8 changes: 4 additions & 4 deletions dist/js/fuelux.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"postinstall": "node postinstall.js"
},
"title": "Fuel UX",
"version": "3.15.4",
"version": "3.15.5",
"volo": {
"baseDir": "lib",
"dependencies": {
Expand Down

0 comments on commit 267e309

Please sign in to comment.