Merge pull request #3 from danieladov/master

Add fieldsets
This commit is contained in:
Prayag
2020-12-21 13:57:05 +05:30
committed by GitHub

View File

@@ -193,7 +193,9 @@
function getSection(option){ function getSection(option){
var html = ""; var html = "";
var name = option.name; 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; return html;
} }