mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 09:52:32 +00:00
11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
|
function show_javascript_widgets() {
|
||
|
$('.pagination').show();
|
||
|
$('#search').show();
|
||
|
};
|
||
|
|
||
|
function webkit_search_tweak() {
|
||
|
if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0) {
|
||
|
$('#search input').css('paddingTop', 0);
|
||
|
}
|
||
|
};
|