mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 02:17:36 +01:00
6 lines
118 B
JavaScript
6 lines
118 B
JavaScript
|
$(function(){
|
||
|
$("[class*='font-family']").each(function () {
|
||
|
$(this).html($(this).css('font-family'))
|
||
|
});
|
||
|
});
|