9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
|
|
/**
|
||
|
|
* Javascript that applies to the whole site.
|
||
|
|
*
|
||
|
|
* Apply button() to buttons and submit buttons for jQuery UI styling.
|
||
|
|
*/
|
||
|
|
|
||
|
|
$(function() {
|
||
|
|
$("button, input:submit").button();
|
||
|
|
});
|