diff options
| author | pliablepixels <pliablepixels@gmail.com> | 2016-03-27 07:30:22 -0400 |
|---|---|---|
| committer | pliablepixels <pliablepixels@gmail.com> | 2016-03-27 07:30:22 -0400 |
| commit | f1de2ec8b72b32bd00f9271fc2c2e063a6bddf32 (patch) | |
| tree | 542d8b326c71a7435089ddd98ffa0f5019d05156 /www/templates/reorder-modal.html | |
| parent | 56a79c13ce6b10b28c8b65b60592524755bc3c71 (diff) | |
#213 - initial code
Former-commit-id: 530cf1d0e786d83cd138272cc6fad80335c0e99f
Diffstat (limited to 'www/templates/reorder-modal.html')
| -rw-r--r-- | www/templates/reorder-modal.html | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/www/templates/reorder-modal.html b/www/templates/reorder-modal.html index 589cca5a..4e3ce82d 100644 --- a/www/templates/reorder-modal.html +++ b/www/templates/reorder-modal.html @@ -2,18 +2,11 @@ <ion-modal-view cache-view="false" style="width: 90%; height: 90%; top: 5%; left: 5%; right: 5%; bottom: 5%;" > <ion-header-bar class="bar-stable"> - <div class="buttons"> - <button class="button button-icon icon ion-ios-minus-outline" - ng-click="deleteList();"></button> - <button class="button button-icon icon ion-ios-drag" ng-click="reorderList();"> - - </button> - </div> + <h1 class="title"></h1> <div class="buttons"> - <button class="button button-icon icon ion-refresh" ng-click="reloadReorder()"></button> <button class="button button-icon icon ion-checkmark" ng-click="saveReorder()"></button> @@ -24,13 +17,15 @@ <ion-content > - <ion-list show-delete="data.showDelete" show-reorder="data.showReorder"> - <ion-item ng-repeat="item in MontageMonitors"> - {{item.Monitor.Name}}<ion-delete-button ng-class="{'ion-eye':item.Monitor.listDisplay=='show','ion-eye-disabled':item.Monitor.listDisplay!='show'}" ng-click="deleteItem($index)"></ion-delete-button> - - <ion-reorder-button class="ion-navicon" on-reorder="reorderItem(item,$fromIndex, $toIndex)"></ion-reorder-button> - </ion-item> - </ion-list> + <div class="list"> + <span ng-repeat="item in copyMontage"> + <a class="item item-icon-left" ng-click="toggleDelete($index)" href=""> + <i ng-class="{'icon ion-eye':item.Monitor.listDisplay=='show','icon ion-eye-disabled':item.Monitor.listDisplay!='show'}"> </i> + {{item.Monitor.Name}} + </a> + + </span> + </div> </ion-content> |
