Upgrade Font Awesome to 5.6.3

This commit is contained in:
2019-01-26 18:52:13 +01:00
parent e138f2ca41
commit 571eb0d241
51 changed files with 20807 additions and 2756 deletions

View File

@@ -226,10 +226,11 @@ function setElem(aoAnchor, asPath, oValue)
}
}
$.prototype.addIcon = function(sIcon, bMargin)
$.prototype.addIcon = function(sIcon, bMargin, sStyle)
{
bMargin = bMargin || false;
return $(this).prepend($('<i>', {'class':'fa '+sIcon+(bMargin?' push':'')}));
sStyle = sStyle || '';
return $(this).prepend($('<i>', {'class':'fa'+sStyle+' '+sIcon+(bMargin?' push':'')}));
};
$.prototype.defaultVal = function(sDefaultValue)