This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function fa_icons() { | |
| return array ( | |
| 'fab fa-500px' => __( '500px', 'buildr' ), | |
| 'fab fa-accessible-icon' => __( 'accessible-icon', 'buildr' ), | |
| 'fab fa-accusoft' => __( 'accusoft', 'buildr' ), | |
| 'fas fa-address-book' => __( 'address-book', 'buildr' ), | |
| 'far fa-address-book' => __( 'address-book', 'buildr' ), | |
| 'fas fa-address-card' => __( 'address-card', 'buildr' ), | |
| 'far fa-address-card' => __( 'address-card', 'buildr' ), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var icons="" | |
| $('ul.icon-list > li').each( function() { | |
| icons += "'" + $('i', this ).attr('class') + "' => __('" + $('span', this ).html() + "', 'buildr' ),"; | |
| /* console.log( $('i', this ).attr('class') ) */ | |
| }) | |
| console.log( icons ) |
OlderNewer