Cloudlog/js/global.js

20 wiersze
502 B
JavaScript
Czysty Zwykły widok Historia

2011-10-05 17:04:47 +00:00
$(function(){
2011-10-18 21:29:50 +00:00
/* Load Tabs */
//$("#tabs").tabs();
$('#topbar').dropdown()
$('.tabs').tabs();
$('.qsos').tabs();
2011-10-18 21:29:50 +00:00
/* Theme buttons */
2011-10-05 17:04:47 +00:00
$( "button, input:submit", ".wrap_content" ).button();
2011-11-05 22:16:28 +00:00
$( "button, input:reset", ".wrap_content" ).button();
2011-10-05 17:04:47 +00:00
$( "button, input:submit", ".contest_wrap" ).button();
2011-10-18 21:29:50 +00:00
/* Subnav options */
2011-10-05 17:04:47 +00:00
$( "#admin" ).click(function() {
$( "#submenu" ).toggle( 'blinds', null, 500 );
$( "#clear" ).toggle( 'blinds', null, 500 );
return false;
});
});