bootstrapped write message page, no error on showing first message in messageList

This commit is contained in:
alex
2018-02-07 09:59:02 +01:00
parent 82f5584385
commit 629d8446f8
4 changed files with 298 additions and 264 deletions
+11
View File
@@ -0,0 +1,11 @@
/*
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");
}
);