summaryrefslogtreecommitdiff
path: root/www/js/app.js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-01-30 11:25:13 +0530
committerPliable Pixels <pliablepixels@gmail.com>2017-01-30 11:25:13 +0530
commit79abd405ca4366593b2456e4c5d9aab220d288a1 (patch)
treeb73d07c197701dec340cbcb114d32a7374c9a4bc /www/js/app.js
parent035a5123833d6d26bbc1957ebd2481d4bea4dcd6 (diff)
updated files with code that got deleted when I merged the PR #433
Diffstat (limited to 'www/js/app.js')
-rwxr-xr-xwww/js/app.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/www/js/app.js b/www/js/app.js
index 52b25185..f7bc5e69 100755
--- a/www/js/app.js
+++ b/www/js/app.js
@@ -102,6 +102,24 @@ angular.module('zmApp', [
})
+
+// for events view
+.filter ('eventListFilter', function(NVRDataModel)
+{
+ return function (input) {
+ var ld = NVRDataModel.getLogin();
+ var out = [];
+ angular.forEach (input, function (item)
+ {
+ if (item.Event.Archived == '0' || !ld.hideArchived) {
+ out.push(item);
+ }
+ });
+ return out;
+ };
+
+})
+
// filter for montage iteration
.filter('onlyEnabled', function()
{