mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 18:38:12 +01:00
19 lines
403 B
JavaScript
19 lines
403 B
JavaScript
$(function() {
|
|
$( "#topic-2" ).tabs();
|
|
$( "#topic-3" ).tabs();
|
|
$( "#topic-5" ).tabs();
|
|
$( "#topic-6" ).tabs();
|
|
$( "#topic-7" ).tabs();
|
|
$( "#topic-8" ).tabs();
|
|
|
|
// Hover states on the static widgets
|
|
$( "#dialog-link, #icons li" ).hover(
|
|
function() {
|
|
$( this ).addClass( "ui-state-hover" );
|
|
},
|
|
function() {
|
|
$( this ).removeClass( "ui-state-hover" );
|
|
}
|
|
);
|
|
});
|