mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-12 22:21:06 +01:00
12 lines
443 B
JavaScript
12 lines
443 B
JavaScript
jQuery(function($){
|
|
$( 'table' ).addClass( 'table table-striped table-hover' );
|
|
$( '#submit' ).addClass( 'btn btn-primary btn-large' );
|
|
$( '#wp-calendar' ).addClass( 'table table-striped table-bordered' );
|
|
|
|
// Bootstrap plugins
|
|
$( '#content [rel="tooltip"]' ).tooltip();
|
|
$( '#content [rel="popover"]' ).popover();
|
|
$( '.alert' ).alert();
|
|
$( '.carousel-inner figure:first-child' ).addClass( 'active' );
|
|
$( '.carousel' ).carousel();
|
|
}); |