[Mobile] Clean-Up

Removed unused menu button and
cleaned up treeCl to be treeClass.
This commit is contained in:
Dave 2015-07-09 15:14:36 -07:00
parent 40d53f941f
commit 635e1eda69
3 changed files with 4 additions and 8 deletions

View File

@ -20,7 +20,7 @@
at runtime from the About dialog for additional information.
-->
<div ng-controller="BrowseController">
<div content="jquery-wrapper" class="abs holder-all browse-mode holder-hide" ng-class="treeCl ? 'holder-show' : 'holder-hide'">
<div content="jquery-wrapper" class="abs holder-all browse-mode holder-hide" ng-class="treeClass ? 'holder-show' : 'holder-hide'">
<mct-include key="'topbar-browse'"></mct-include>
<div class="holder browse-area s-browse-area abs">
<mct-split-pane class='contents abs' anchor='left'>
@ -42,7 +42,7 @@
</div>
</div>
</mct-split-pane>
<div class="s-very-subtle key-properties ui-symbol mobile-menu-icon button-hide" ng-class="treeCl ? 'button-show' : 'button-hide'"
<div class="s-very-subtle key-properties ui-symbol mobile-menu-icon button-hide" ng-class="treeClass ? 'button-show' : 'button-hide'"
ng-click="treeSlide()">m</div>
</div>
<mct-include key="'bottombar'"></mct-include>

View File

@ -142,7 +142,7 @@ define(
};
$scope.treeSlide = function () {
$scope.treeCl = !$scope.treeCl;
$scope.treeClass = !$scope.treeClass;
};
// Listen for changes in navigation state.

View File

@ -43,10 +43,6 @@
"key": "action-button",
"templateUrl": "templates/controls/action-button.html"
},
{
"key": "menu-button",
"templateUrl": "templates/controls/menu-button.html"
},
{
"key": "input-filter",
"templateUrl": "templates/controls/input-filter.html"
@ -84,7 +80,7 @@
"key": "ClickAwayController",
"implementation": "controllers/ClickAwayController.js",
"depends": [ "$scope", "$document" ]
},
},
{
"key": "ViewSwitcherController",
"implementation": "controllers/ViewSwitcherController.js",