Release 5.0.7

This commit is contained in:
robmadole
2018-02-26 14:30:03 -06:00
parent a75113bfac
commit 7bef6853ca
716 changed files with 17136 additions and 3317 deletions

View File

@@ -1,6 +1,6 @@
/*!
* Font Awesome Pro 5.0.6 by @fontawesome - http://fontawesome.com
* License - http://fontawesome.com/license (Commercial License)
* Font Awesome Pro 5.0.7 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license (Commercial License)
*/
(function () {
'use strict';
@@ -606,7 +606,7 @@ function makeLayersTextAbstract(params) {
var noop$2 = function noop() {};
var p = config.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMANCE.measure ? PERFORMANCE : { mark: noop$2, measure: noop$2 };
var preamble = 'FA "5.0.6"';
var preamble = 'FA "5.0.7"';
var begin = function begin(name) {
p.mark(preamble + ' ' + name + ' begins');
@@ -888,6 +888,8 @@ function disableObservation(operation) {
disabled = false;
}
var mo = null;
function observe(options) {
if (!MUTATION_OBSERVER) return;
@@ -896,7 +898,7 @@ function observe(options) {
pseudoElementsCallback = options.pseudoElementsCallback;
var mo = new MUTATION_OBSERVER(function (objects) {
mo = new MUTATION_OBSERVER(function (objects) {
if (disabled) return;
toArray(objects).forEach(function (mutationRecord) {
@@ -934,6 +936,12 @@ function observe(options) {
});
}
function disconnect() {
if (!mo) return;
mo.disconnect();
}
var styleParser = function (node) {
var style = node.getAttribute('style');
@@ -1581,8 +1589,10 @@ function resolveIcons(next) {
}
var library = new Library();
var noAuto = function noAuto() {
return auto(false);
auto(false);
disconnect();
};
var dom = {
@@ -1711,7 +1721,7 @@ var layer = function layer(assembler) {
var children = [];
assembler(function (args) {
Array.isArray(args) ? children = args.map(function (a) {
Array.isArray(args) ? args.map(function (a) {
children = children.concat(a.abstract);
}) : children = children.concat(args.abstract);
});