I build app that will present a lot of icons so I need list of all Font-Awesome class name like
[\"fa-dropbox\",\"fa-rocket\",\"fa-globe\", ....]
so on is ther
In case someone would like to have Font awesome icons grouped just like in http://fontawesome.io/icons/. Paste this to JS console on icons screen of FA.
var allIcons = {};
$('#icons section:not(#new):not(#spinner)').each(function(key, item) {
var name = $(item).attr('id');
allIcons[name] = [];
$(item).find('div a i').each(function(iconKey, icon) {
allIcons[name].push($(icon).attr('class').substring(3));
})
});