summaryrefslogtreecommitdiffstats
path: root/js/public/app.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-03-08 21:53:54 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-03-08 21:54:06 +0100
commit69ba0a6f92795483c8e7f75c4c71d146a4d7d2a0 (patch)
tree93a49950bfd9ebdd3b6f4c9ddedf66d2525759e7 /js/public/app.js
parent9d323d22e1e4fb7305766fcd308c56b279146833 (diff)
dont collapse old item when opening a new one, fix #453
Diffstat (limited to 'js/public/app.js')
-rw-r--r--js/public/app.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/js/public/app.js b/js/public/app.js
index 789ab42e8..d77220b72 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -877,16 +877,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
this._$scope.isCompactView = function() {
return _this._compact.isCompact();
};
- this._$scope.is = {
- active: 0
- };
- this._$scope.toggleOpen = function(id) {
- if (id === _this._$scope.is.active) {
- return _this._$scope.is.active = 0;
- } else {
- return _this._$scope.is.active = id;
- }
- };
}
return ItemController;