[Frontend] Manual re-do of collapse/expand panes

open #90
Renamed BrowseTreeController to PaneController;
Ensuring mobile functionality parity;
This commit is contained in:
Charles Hacskaylo
2015-10-22 13:33:43 -07:00
parent 3080861764
commit b98c1cdfe8
11 changed files with 247 additions and 275 deletions

View File

@ -154,6 +154,11 @@ define(
navigationService.removeListener(setNavigation);
});
// Models for panes
$scope.paneModelTree = {};
$scope.paneModelInspect = {};
}
return BrowseController;

View File

@ -63,6 +63,7 @@ define(
*/
BrowseTreeController.prototype.toggle = function () {
this.state = !this.state;
console.log('tree toggled: ' + this.state);
};
/**