Fixed all known bugs; Modified the menu to hide; Fixed the tables to scroll with a fixed header.

This commit is contained in:
Wynne Crisman
2017-10-20 14:54:58 -07:00
parent 83e8268375
commit f848ea9a8f
34 changed files with 1019 additions and 821 deletions

View File

@@ -15,7 +15,7 @@
<label style="margin-right: 10px">Selected Sheet</label>
<select name="sheetSelection" class="form-control">
{{#each sheets}}
<option value="{{_id}}" {{sheetsSelectIsSelected this isFirst}}>{{name}}</option>
<option value="{{_id}}" {{isSheetSelected}}>{{name}}</option>
{{/each}}
</select>
<i class="fa fa-wrench editSheet noselect clickable {{#if disableButtons}}disabled{{/if}} {{#if isEditingSheet}}selected{{/if}}" aria-hidden="true">
@@ -27,8 +27,8 @@
<div class="separator" style="width: 50%; opacity: .25"></div>
</section>
<section class="tabSection verticalStack vscExpand">
{{#if isSheetSelected}}
{{>Template.dynamic template=tab data=tabData}}
{{#if hasSelectedSheet}}
{{>Template.dynamic template=activeTemplateName data=selectedSheetId}}
{{/if}}
</section>
</template>