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

Commit 891a03f

Browse files
Release v3.3.0
1 parent 62f3474 commit 891a03f

File tree

10 files changed

+42
-35
lines changed

10 files changed

+42
-35
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.2.1/)
33+
* Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.3.0/)
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.2.1/fuelux.zip).
56+
* Download a .zip archive of the [latest release](http://www.fuelcdn.com/fuelux/3.3.0/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.2.1/'
66+
'fuelux': 'http://www.fuelcdn.com/fuelux/3.3.0/'
6767
//...
6868
}
6969
});

README.md

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

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

46-
- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.2.1/)
47-
- [Download the latest release](https://github.com/exacttarget/fuelux/archive/3.2.1.zip).
46+
- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.3.0/)
47+
- [Download the latest release](https://github.com/exacttarget/fuelux/archive/3.3.0.zip).
4848
- Clone the repo: `git clone https://github.com/exacttarget/fuelux.git`.
4949
- Install with [Bower](http://bower.io): `bower install fuelux`.
5050
- Install with [Volo](https://github.com/volojs/volo): `volo add 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.2.1",
4+
"version": "3.3.0",
55
"keywords": [
66
"application",
77
"bootstrap",

dist/css/fuelux.css

Lines changed: 22 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/fuelux.css.map

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

dist/fuelux.zip

672 Bytes
Binary file not shown.

dist/js/fuelux.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Fuel UX v3.2.1
2+
* Fuel UX v3.3.0
33
* Copyright 2012-2014 ExactTarget
44
* Licensed under the BSD-3-Clause license ()
55
*/
@@ -5769,12 +5769,12 @@
57695769

57705770
//ADDITIONAL METHODS
57715771
$.fn.repeater.Constructor.prototype.thumbnail_clearSelectedItems = function() {
5772-
this.$canvas.find( '.repeater-thumbnail-cont .repeater-thumbnail.selected' ).removeClass( 'selected' );
5772+
this.$canvas.find( '.repeater-thumbnail-cont .selectable.selected' ).removeClass( 'selected' );
57735773
};
57745774

57755775
$.fn.repeater.Constructor.prototype.thumbnail_getSelectedItems = function() {
57765776
var selected = [];
5777-
this.$canvas.find( '.repeater-thumbnail-cont .repeater-thumbnail.selected' ).each( function() {
5777+
this.$canvas.find( '.repeater-thumbnail-cont .selectable.selected' ).each( function() {
57785778
selected.push( $( this ) );
57795779
} );
57805780
return selected;
@@ -5816,12 +5816,12 @@
58165816
}
58175817
for ( i = 0; i < l; i++ ) {
58185818
if ( items[ i ].index !== undefined ) {
5819-
$item = this.$canvas.find( '.repeater-thumbnail-cont .repeater-thumbnail:nth-child(' + ( items[ i ].index + 1 ) + ')' );
5819+
$item = this.$canvas.find( '.repeater-thumbnail-cont .selectable:nth-child(' + ( items[ i ].index + 1 ) + ')' );
58205820
if ( $item.length > 0 ) {
58215821
selectItem( $item, items[ i ].selected );
58225822
}
58235823
} else if ( items[ i ].selector ) {
5824-
this.$canvas.find( '.repeater-thumbnail-cont .repeater-thumbnail' ).each( eachFunc );
5824+
this.$canvas.find( '.repeater-thumbnail-cont .selectable' ).each( eachFunc );
58255825
}
58265826
}
58275827
};
@@ -5884,7 +5884,7 @@
58845884
$item.on( 'click', function() {
58855885
if ( !$item.hasClass( selected ) ) {
58865886
if ( selectable !== 'multi' ) {
5887-
self.$canvas.find( '.repeater-thumbnail-cont .repeater-thumbnail.selected' ).each( function() {
5887+
self.$canvas.find( '.repeater-thumbnail-cont .selectable.selected' ).each( function() {
58885888
var $itm = $( this );
58895889
$itm.removeClass( selected );
58905890
self.$element.trigger( 'deselected.fu.repeaterThumbnail', $itm );

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
@@ -1,7 +1,7 @@
11
{
22
"name": "fuelux",
33
"title": "Fuel UX",
4-
"version": "3.2.1",
4+
"version": "3.3.0",
55
"description": "Base Fuel UX styles and controls",
66
"homepage": "https://github.com/ExactTarget/fuelux",
77
"author": {

0 commit comments

Comments
 (0)