mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
13 lines
338 B
JavaScript
13 lines
338 B
JavaScript
/*
|
|
file for adding bootstrap classes, e.g. in case usage of non-bootstrap widgets in a bootstrap page
|
|
AVOID USING THIS IF POSSIBLE
|
|
*/
|
|
$(document).ready(
|
|
function()
|
|
{
|
|
$("input[type=text], select").addClass("form-control");
|
|
$("button, input[type=button]").addClass("btn btn-default");
|
|
$("table").addClass("table-condensed");
|
|
}
|
|
);
|