mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-04-19 20:09:14 +03:00
10 lines
193 B
JavaScript
10 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" );
|
|
|
|
} );
|