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

Commit f1e3fae

Browse files
release 3.9.1
1 parent 5f54f43 commit f1e3fae

File tree

8 files changed

+33
-31
lines changed

8 files changed

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ 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.9.0/css/fuelux.min.css" rel="stylesheet">
35+
<link href="//www.fuelcdn.com/fuelux/3.9.1/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.9.0/js/fuelux.min.js"></script>
39+
<script src="//www.fuelcdn.com/fuelux/3.9.1/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.9.0/)
46+
- Request files from [the Fuel UX CDN](http://www.fuelcdn.com/fuelux/3.9.1/)
4747
- [Download the latest release](https://github.com/exacttarget/fuelux/archive/3.4.0.zip).
4848
- Clone the repo: `git clone https://github.com/exacttarget/fuelux.git`.
4949
- Install with [Bower](http://bower.io): `bower install fuelux`.

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

65 Bytes
Binary file not shown.

dist/js/fuelux.js

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Fuel UX v3.9.0
2+
* Fuel UX v3.9.1
33
* Copyright 2012-2015 ExactTarget
44
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
55
*/
@@ -623,7 +623,7 @@
623623
if (
624624
( $.isFunction( window.moment ) || ( typeof moment !== 'undefined' && $.isFunction( moment ) ) ) &&
625625
$.isPlainObject( this.options.momentConfig ) &&
626-
this.options.momentConfig.culture && this.options.momentConfig.format
626+
( typeof this.options.momentConfig.culture === 'string' && typeof this.options.momentConfig.format === 'string' )
627627
) {
628628
return true;
629629
} else {
@@ -5540,7 +5540,7 @@
55405540
var opts = {};
55415541
var viewName = curView.split( '.' )[ 1 ];
55425542

5543-
if ( viewName && this.options.views ) {
5543+
if ( this.options.views ) {
55445544
opts = this.options.views[ viewName ] || this.options.views[ curView ] || {};
55455545
} else {
55465546
opts = {};
@@ -5899,12 +5899,9 @@
58995899
};
59005900

59015901
$.fn.repeater.Constructor.prototype.list_sizeActionsTable = function() {
5902-
var $table = this.$element.find( '.repeater-list table' );
5903-
$table.find( 'thead th' ).each( function() {
5904-
var $hr = $( this );
5905-
var $heading = $hr.find( '.repeater-list-heading' );
5906-
$heading.outerHeight( $hr.outerHeight() );
5907-
} );
5902+
var $table = this.$element.find( '.repeater-list-wrapper > table' );
5903+
var $actionsTableHeading = this.$element.find( '.repeater-list-wrapper .actions-column-wrapper thead th .repeater-list-heading' );
5904+
$actionsTableHeading.outerHeight( $table.find( 'thead th .repeater-list-heading' ).outerHeight() );
59085905
};
59095906

59105907
//ADDITIONAL DEFAULT OPTIONS
@@ -6210,7 +6207,8 @@
62106207

62116208
function renderThead( $table, data ) {
62126209
var columns = data.columns || [];
6213-
var i, j, l, $thead, $tr;
6210+
var $thead = $table.find( 'thead' );
6211+
var i, j, l, $tr;
62146212

62156213
function differentColumns( oldCols, newCols ) {
62166214
if ( !newCols ) {
@@ -6235,8 +6233,8 @@
62356233
return false;
62366234
}
62376235

6238-
if ( this.list_firstRender || differentColumns( this.list_columns, columns ) ) {
6239-
$table.find( 'thead' ).remove();
6236+
if ( this.list_firstRender || differentColumns( this.list_columns, columns ) || $thead.length === 0 ) {
6237+
$thead.remove();
62406238

62416239
this.list_columns = columns;
62426240
this.list_firstRender = false;
@@ -6853,8 +6851,8 @@
68536851
day = parseInt( this.$element.find( '.repeat-monthly-date .selectlist' ).selectlist( 'selectedItem' ).text, 10 );
68546852
pattern += 'BYMONTHDAY=' + day + ';';
68556853
} else if ( type === 'bysetpos' ) {
6856-
days = this.$element.find( '.month-days' ).selectlist( 'selectedItem' ).value;
6857-
pos = this.$element.find( '.month-day-pos' ).selectlist( 'selectedItem' ).value;
6854+
days = this.$element.find( '.repeat-monthly-day .month-days' ).selectlist( 'selectedItem' ).value;
6855+
pos = this.$element.find( '.repeat-monthly-day .month-day-pos' ).selectlist( 'selectedItem' ).value;
68586856
pattern += 'BYDAY=' + days + ';';
68596857
pattern += 'BYSETPOS=' + pos + ';';
68606858
}
@@ -6864,13 +6862,15 @@
68646862
type = this.$element.find( 'input[name=repeat-yearly]:checked' ).val();
68656863

68666864
if ( type === 'bymonthday' ) {
6865+
// there are multiple .year-month classed elements in scheduler markup
68676866
month = this.$element.find( '.repeat-yearly-date .year-month' ).selectlist( 'selectedItem' ).value;
6868-
day = this.$element.find( '.year-month-day' ).selectlist( 'selectedItem' ).text;
6867+
day = this.$element.find( '.repeat-yearly-date .year-month-day' ).selectlist( 'selectedItem' ).text;
68696868
pattern += 'BYMONTH=' + month + ';';
68706869
pattern += 'BYMONTHDAY=' + day + ';';
68716870
} else if ( type === 'bysetpos' ) {
6872-
days = this.$element.find( '.year-month-days' ).selectlist( 'selectedItem' ).value;
6873-
pos = this.$element.find( '.year-month-day-pos' ).selectlist( 'selectedItem' ).value;
6871+
days = this.$element.find( '.repeat-yearly-day .year-month-days' ).selectlist( 'selectedItem' ).value;
6872+
pos = this.$element.find( '.repeat-yearly-day .year-month-day-pos' ).selectlist( 'selectedItem' ).value;
6873+
// there are multiple .year-month classed elements in scheduler markup
68746874
month = this.$element.find( '.repeat-yearly-day .year-month' ).selectlist( 'selectedItem' ).value;
68756875

68766876
pattern += 'BYDAY=' + days + ';';

dist/js/fuelux.min.js

Lines changed: 7 additions & 5 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
@@ -75,7 +75,7 @@
7575
"test": "grunt travisci --verbose"
7676
},
7777
"title": "Fuel UX",
78-
"version": "3.9.0",
78+
"version": "3.9.1",
7979
"volo": {
8080
"baseDir": "lib",
8181
"dependencies": {

0 commit comments

Comments
 (0)