[Mobile] Override browse behavior

Override browse tree behavior such that tree collapses upon
navigation change in mobile.
This commit is contained in:
Victor Woeltjen
2015-09-17 17:54:01 -07:00
parent 733a282f3f
commit 6aba34dd5a
4 changed files with 68 additions and 9 deletions

View File

@@ -38,14 +38,6 @@ define(
this.state = !this.state;
};
BrowseTreeController.prototype.hide = function () {
this.state = false;
};
BrowseTreeController.prototype.show = function () {
this.state = true;
};
BrowseTreeController.prototype.visible = function () {
return this.state;
};