mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 12:49:27 +00:00
f1a346c545
- new fields: beginnzeit, endezeit, Prüfungsantritt - Einverständniserklärung: if not checked no save possible - can be saved and freigegeben - added phrases
16 lines
436 B
JavaScript
16 lines
436 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() {
|
|
Bootstrapper.bootstraphtml();
|
|
});
|
|
|
|
var Bootstrapper = {
|
|
bootstraphtml: function ()
|
|
{
|
|
$("input[type=text], select, textarea").addClass("form-control");
|
|
$("button, input[type=button]").addClass("btn btn-default");
|
|
$("table").addClass("table-condensed");
|
|
}
|
|
}; |