mirror of
https://github.com/kennethreitz-archive/wp-krtheme.git
synced 2026-06-05 23:40:16 +00:00
17 lines
378 B
JavaScript
17 lines
378 B
JavaScript
$(function(){
|
|
$('header nav a').markCurrentLocation();
|
|
$('form.sitesearch :text').initInput('Enter some keyword');
|
|
$('#darth_vader').initInput('It\'s empty!')
|
|
$('.contentBody .date, .contentBody cite').orderedFigure();
|
|
$('article a').addFileInfo();
|
|
|
|
|
|
if($.browser.mobile){
|
|
iaMobileNavInit();
|
|
}
|
|
|
|
if($.browser.msie){
|
|
$('.lu:first-child').addClass('first-child')
|
|
}
|
|
|
|
}) |