diff --git a/README.md b/README.md index ee7614d9c..a1bf4a37e 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ You can also use on of the following methods: - [Volo](https://github.com/volojs/volo) `volo add fuelux` (update with `volo add -f fuelux`). - Clone via git `git clone https://github.com/ExactTarget/fuelux/` - 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](http://www.fuelcdn.com/fuelux/3.16.6/fuelux.zip). +- Download a [.zip archive](http://www.fuelcdn.com/fuelux/3.16.7/fuelux.zip). # Using Fuel UX @@ -81,11 +81,11 @@ For other methods of managing dependencies consider [AMD support via require](#a Ensure all the dependencies are included on the page (eg, such as using the CDN as shown below). ``` - + - + ``` @@ -116,7 +116,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.16.6/' + 'fuelux': 'http://www.fuelcdn.com/fuelux/3.16.7/' //... } }); diff --git a/dist/css/fuelux.css b/dist/css/fuelux.css index 3f7e41681..6b8437efd 100644 --- a/dist/css/fuelux.css +++ b/dist/css/fuelux.css @@ -1,5 +1,5 @@ /*! - * Fuel UX v3.16.7 + * Fuel UX v3.17.0 * Copyright 2012-2018 ExactTarget * Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE) */ diff --git a/dist/css/fuelux.min.css b/dist/css/fuelux.min.css index 67b7be625..0457349ad 100644 --- a/dist/css/fuelux.min.css +++ b/dist/css/fuelux.min.css @@ -1,5 +1,5 @@ /*! - * Fuel UX v3.16.7 + * Fuel UX v3.17.0 * Copyright 2012-2018 ExactTarget * Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE) */ diff --git a/dist/fuelux.zip b/dist/fuelux.zip index d3440a064..863b3ab64 100644 Binary files a/dist/fuelux.zip and b/dist/fuelux.zip differ diff --git a/dist/js/fuelux.js b/dist/js/fuelux.js index 44f598a88..13ef2025b 100644 --- a/dist/js/fuelux.js +++ b/dist/js/fuelux.js @@ -1,5 +1,5 @@ /*! - * Fuel UX v3.16.7 + * Fuel UX v3.17.0 * Copyright 2012-2018 ExactTarget * Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE) */ @@ -3281,7 +3281,7 @@ .removeClass( 'hide hidden' ) // jQuery deprecated hide in 3.0. Use hidden instead. Leaving hide here to support previous markup .removeData( 'template' ) .removeAttr( 'data-template' ); - $entity.find( '.tree-' + nodeType + '-name > .tree-label' ).html( treeNode.text || treeNode.name ); + $entity.find( '.tree-' + nodeType + '-name > .tree-label' )[ self.options.html ? 'html' : 'text' ]( treeNode.text || treeNode.name ); $entity.data( treeNode ); diff --git a/dist/js/fuelux.min.js b/dist/js/fuelux.min.js index e34eeee5f..1770a87e4 100644 --- a/dist/js/fuelux.min.js +++ b/dist/js/fuelux.min.js @@ -1,7 +1,7 @@ /*! - * Fuel UX v3.16.7 + * Fuel UX v3.17.0 * Copyright 2012-2018 ExactTarget * Licensed under the BSD-3-Clause license (https://github.com/ExactTarget/fuelux/blob/master/LICENSE) */ -!function(e){"function"==typeof define&&define.amd?define(["jquery","bootstrap"],e):e(jQuery)}(function(e){if(void 0===e)throw new Error("Fuel UX's JavaScript requires jQuery");if(void 0===e.fn.dropdown||void 0===e.fn.collapse)throw new Error("Fuel UX's JavaScript requires Bootstrap");!function(e){var t=e.fn.checkbox,i=function(e){window&&window.console&&window.console.error&&window.console.error(e)},s=function(t,s){this.options=e.extend({},e.fn.checkbox.defaults,s);var n=e(t);if("label"===t.tagName.toLowerCase()){this.$label=n,this.$chk=this.$label.find('input[type="checkbox"]'),this.$container=n.parent(".checkbox"),!this.options.ignoreVisibilityCheck&&this.$chk.css("visibility").match(/hidden|collapse/)&&i("For accessibility reasons, in order for tab and space to function on checkbox, checkbox ``'s `visibility` must not be set to `hidden` or `collapse`. See https://github.com/ExactTarget/fuelux/pull/1996 for more details.");var a=this.$chk.attr("data-toggle");this.$toggleContainer=e(a),this.$chk.on("change",e.proxy(this.itemchecked,this)),this.setInitialState()}else i("Checkbox must be initialized on the `label` that wraps the `input` element. See https://github.com/ExactTarget/fuelux/blob/master/reference/markup/checkbox.html for example of proper markup. Call `.checkbox()` on the `