Added title toggle controls and data

This commit is contained in:
2020-03-27 22:40:37 -05:00
parent a39676b327
commit 8362e621e2
4 changed files with 74 additions and 22 deletions

View File

@@ -206,19 +206,25 @@
<!-- Templates -->
<template id="ulTemplate">
<h2 class="ulHeader">
<label for="selectAll" title="Select All">
<input type="checkbox" checked="true" />
<label class="selAllLbl" for="selectAll" title="Select All">
<input class="selAll" type="checkbox" checked="true" />
Select All
</label>
<label class="titleAllLbl" for="titleAll" title="Show Titles">
<input class="titleAll" type="checkbox" checked="true" />
Show Titles
</label>
</h2>
<ul class="collection">
</ul>
</template>
<template id="liTemplate">
<li>
<li class="toggleControls">
<input type="checkbox" id="" name="" checked="true" />
<label for="" title=""></label>
<label class="linkLbl" for="" title="" style="display:none;"></label>
<label class="titleLbl" for="" title=""></label>
</li>
</template>