Add fieldsets

This commit is contained in:
Mister Rajoy
2020-12-20 13:02:11 +01:00
parent 0605248f2f
commit 80b9b3e651

View File

@@ -193,7 +193,9 @@
function getSection(option){
var html = "";
var name = option.name;
html += html += '<h2 class="sectionTitle" >'+ name +'</h2>';
html += '</fieldset>';
html += '<fieldset class="verticalSection verticalSection-extrabottompadding">';
html += '<legend>'+ name +'</legend>';
return html;
}