9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
/* ------ custom js ------ */
|
|
|
|
/* ------ categories/index.ctp ------ */
|
|
$(function(){
|
|
$box = $('.square');
|
|
$boxWith = $box.width();
|
|
$('.square').css('font-size',$boxWith/7);
|
|
});
|