Refactor Qsupplier.App to App

This commit is contained in:
2014-08-10 08:50:20 +02:00
parent 1a0f9b4ae5
commit 3451604dff
77 changed files with 200 additions and 197 deletions
@@ -1,7 +1,7 @@
.section-tabs-container
link-to 'sections' class="goto-sections-index-tab-header": span
each section in sections
Qsupplier.App.SectionTabHeaderView context=section
App.SectionTabHeaderView context=section
a.add-section{action "addSection"}: span
.section-manage-tables.pull-right
if editmode
@@ -17,7 +17,7 @@
/button.btn.dropdown-toggle data-toggle="dropdown"
span Action
span.caret
Qsupplier.App.DropdownLink title="Action"
App.DropdownLink title="Action"
ul
li
a{action "addTables"}: span.section-add-tables-icon=t 'section.add_tables.button_label'
@@ -28,10 +28,10 @@
li
a.section-destroy{action "destroySection"}: span.section-remove-icon=t 'helpers.links.destroy'
Ember.TextField valueBinding="title" class="section-edit-title-field"
Qsupplier.App.NumberField valueBinding="width" class="dimension section-edit-width-field"
App.NumberField valueBinding="width" class="dimension section-edit-width-field"
span.fa.fa-lg.fa-times
Qsupplier.App.NumberField valueBinding="height" class="dimension section-edit-height-field"
App.NumberField valueBinding="height" class="dimension section-edit-height-field"
a.section-normal-mode-button{ action "finishEditable" }: span
else
a.section-edit-mode-button{ action "makeEditable" }: span
Qsupplier.App.SectionTablesView contentBinding="tables"
App.SectionTablesView contentBinding="tables"