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

Commit aad5eef

Browse files
Release 3.16.3
1 parent f3b95ea commit aad5eef

File tree

8 files changed

+20
-13
lines changed

8 files changed

+20
-13
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ You can also use on of the following methods:
5656
- [Volo](https://github.com/volojs/volo) `volo add fuelux` (update with `volo add -f fuelux`).
5757
- Clone via git `git clone https://github.com/ExactTarget/fuelux/`
5858
- Cloning the repository ensures you can apply future updates to Fuel UX easily, but requires to you manage its [dependencies](#dependencies) on your own.
59-
- Download a [.zip archive](http://www.fuelcdn.com/fuelux/3.16.1/fuelux.zip).
59+
- Download a [.zip archive](http://www.fuelcdn.com/fuelux/3.16.3/fuelux.zip).
6060

6161
# Using Fuel UX
6262

@@ -81,11 +81,11 @@ For other methods of managing dependencies consider [AMD support via require](#a
8181
Ensure all the dependencies are included on the page (eg, such as using the CDN as shown below).
8282
```
8383
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
84-
<link href="//www.fuelcdn.com/fuelux/3.16.1/css/fuelux.min.css" rel="stylesheet">
84+
<link href="//www.fuelcdn.com/fuelux/3.16.3/css/fuelux.min.css" rel="stylesheet">
8585
8686
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
8787
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.1/js/bootstrap.min.js"></script>
88-
<script src="//www.fuelcdn.com/fuelux/3.16.1/js/fuelux.min.js"></script>
88+
<script src="//www.fuelcdn.com/fuelux/3.16.3/js/fuelux.min.js"></script>
8989
9090
```
9191

@@ -116,7 +116,7 @@ If using AMD (such as [RequireJS](http://requirejs.org)), reference the FuelUX d
116116
```javascript
117117
require.config({
118118
paths: {
119-
'fuelux': 'http://www.fuelcdn.com/fuelux/3.16.1/'
119+
'fuelux': 'http://www.fuelcdn.com/fuelux/3.16.3/'
120120
//...
121121
}
122122
});

dist/css/fuelux.css

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

dist/fuelux.zip

379 Bytes
Binary file not shown.

dist/js/fuelux.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*!
2-
* Fuel UX v3.16.2
2+
* Fuel UX EDGE - Built 2017/10/25, 12:50:00 PM
3+
* Previous release: v3.16.3
34
* Copyright 2012-2017 ExactTarget
45
* Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE)
56
*/
@@ -5109,7 +5110,7 @@
51095110
// ignore comma and make sure text that has been entered (protects against " ,". https://github.com/ExactTarget/fuelux/issues/593), unless allowEmptyPills is true.
51105111
if ( text.replace( /[ ]*\,[ ]*/, '' ).match( /\S/ ) || ( this.options.allowEmptyPills && text.length ) ) {
51115112
this._closeSuggestions();
5112-
this.$addItem.hide().val( '' );
5113+
this.$addItem.val( '' ).hide();
51135114

51145115
if ( attr ) {
51155116
this.addItems( {

dist/js/fuelux.min.js

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

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Package.describe({
77
name: 'exacttarget:fuelux', // http://atmospherejs.com/exacttarget/fuelux
88
summary: 'Base Fuel UX styles and controls',
9-
version: '3.16.1',
9+
version: '3.16.3',
1010
git: 'https://github.com/ExactTarget/fuelux.git'
1111
});
1212

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"url": "git://github.com/ExactTarget/fuelux.git"
103103
},
104104
"title": "Fuel UX",
105-
"version": "3.16.2",
105+
"version": "3.16.3",
106106
"volo": {
107107
"baseDir": "lib",
108108
"dependencies": {

0 commit comments

Comments
 (0)