Minification fix hide features (#8544)

* Added minification fix

* Hid settings for features we will not release yet

* Hid repeatables UI

* Removed extra file

* Removed repeats every from weekly

* Added start date back

* Hid counter reset when advance is collpased
This commit is contained in:
Keith Holliday
2017-03-08 18:50:57 -07:00
committed by GitHub
parent 1082359f2c
commit 11c8f2a775
5 changed files with 22 additions and 25 deletions

View File

@@ -43,9 +43,9 @@ habitrpg.controller("TasksCtrl", ['$scope', '$rootScope', '$location', 'User','N
$modal.open({
templateUrl: 'modals/task-notes.html',
controller: function ($scope, task) {
controller: ['$scope', 'task', function ($scope, task) {
$scope.task = task;
},
}],
resolve: {
task: function() {
return task;