2016-10-25 01:20:58 +08:00
|
|
|
|
$(function () {
|
2017-03-12 16:26:47 +08:00
|
|
|
|
var $iconList = $('div.fontawesome-icon-list').on('click', 'a', function () {
|
2016-10-25 01:20:58 +08:00
|
|
|
|
window.console.log($(this).children('i').attr('class'));
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
|
2016-11-21 00:33:07 +08:00
|
|
|
|
$iconList.find('ul li').addClass('col-md-3 col-sm-4 col-xs-6');
|
|
|
|
|
$iconList.find('div').addClass('col-xs-6');
|
2016-11-21 01:53:03 +08:00
|
|
|
|
|
2017-03-12 16:26:47 +08:00
|
|
|
|
$('#main-content').scrollspy({ offset: 150, target: '.fa-nav' });
|
2016-10-25 01:20:58 +08:00
|
|
|
|
});
|