mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-11 17:34:58 +00:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
$( function() {
|
|
|
|
$( "#main" )
|
|
.addClass( "ui-widget" )
|
|
.find( "h1, h2" )
|
|
.addClass( "ui-widget-header ui-corner-top" )
|
|
.next()
|
|
.addClass( "ui-widget-content ui-corner-bottom" );
|
|
|
|
} );
|