This commit is contained in:
flaskfarm
2022-10-27 16:02:16 +09:00
parent d746de7e90
commit dbe4d852b2
6 changed files with 34 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ function j_button_group(h) {
}
// primary, secondary, success, danger, warning, info, light, dark, white
function j_button(id, text, data={}, color='success', outline=true, small=false) {
function j_button(id, text, data={}, color='primary', outline=true, small=false) {
var str = '<button id="'+id+'" name="'+id+'" class="btn btn-sm btn';
if (outline) {
str += '-outline';
@@ -28,7 +28,7 @@ function j_button(id, text, data={}, color='success', outline=true, small=false)
return str;
}
function j_button_small(id, text, data={}, color='success', outline=true) {
function j_button_small(id, text, data={}, color='primary', outline=true) {
return j_button(id, text, data, color, outline, true);
}

View File

@@ -1 +1 @@
VERSION="4.0.43"
VERSION="4.0.44"