implement users tokens sub list

This commit is contained in:
John Mitchell
2018-03-15 14:53:49 -04:00
parent 5c0a52df16
commit e7a0bbb5db
16 changed files with 533 additions and 14 deletions

View File

@@ -166,14 +166,18 @@ angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', listGenerat
// Also wraps mess of generated HTML in a .Panel
wrapPanel(html, ignorePanel){
if(ignorePanel) {
return `<div>
return `
<div ui-view="preFormView"></div>
<div>
${html}
<div ui-view="related"></div>
<div ui-view="modal"></div>
</div>`;
}
else {
return `<div class="Panel">
return `
<div ui-view="preFormView"></div>
<div class="Panel">
${html}
<div ui-view="related"></div>
<div ui-view="modal"></div>