Commit 6b9994a550246463fdfc0c85f08231b973b8f226
1 parent
7690724a
Exists in
master
and in
1 other branch
Fix boxes position
Showing
2 changed files
with
6 additions
and
1 deletions
Show diff stats
src/app/main/main.controller.js
src/app/main/main.html
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 | </div> |
6 | 6 | |
7 | 7 | <div class="row"> |
8 | - <ng-include ng-repeat="box in main.owner.boxes | orderBy: 'position'" src="'app/views/profile/box.html'"></ng-include> | |
8 | + <ng-include ng-repeat="box in main.owner.boxes | orderBy: main.boxesOrder" src="'app/views/profile/box.html'"></ng-include> | |
9 | 9 | </div> |
10 | 10 | |
11 | 11 | </div> | ... | ... |