mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-03 05:09:28 +00:00
12 lines
276 B
JavaScript
12 lines
276 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").addClass("btn btn-default");
|
|
}
|
|
);
|