mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-11 17:19:29 +00:00
a075cc26b3
- Added public/js/AjaxLib.js to perform Ajax calls via JS - Added public/css/AjaxLib.css to configure the veil used in AjaxLib via CSS - Added public/images/loader.gif to be used with the veil in AjaxLib - Added to FHC-Header the possibility to include the AjaxLib (ajaxlib = true)
11 lines
339 B
JavaScript
11 lines
339 B
JavaScript
/**
|
|
* To add bootstrap classes, e.g. in case usage of non-bootstrap widgets in a bootstrap page
|
|
* NOTE: 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");
|
|
}
|
|
);
|