diff options
| author | pliablepixels <pliablepixels@gmail.com> | 2016-03-27 07:49:57 -0400 |
|---|---|---|
| committer | pliablepixels <pliablepixels@gmail.com> | 2016-03-27 07:49:57 -0400 |
| commit | a6978ecc04f36575a57c43fa4078979bedb2dd67 (patch) | |
| tree | d80801165eafd07a8d64d14dc0bfa8c461c78904 | |
| parent | 8bb3c321711e2d526b7fe98a9b6d0ccd14a3eb36 (diff) | |
#213 - ignore noshow in count
Former-commit-id: 9b73b71b8ae603249da23601d21a4b6754d39f57
| -rw-r--r-- | www/js/MontageCtrl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/MontageCtrl.js b/www/js/MontageCtrl.js index 957d61f3..2179a347 100644 --- a/www/js/MontageCtrl.js +++ b/www/js/MontageCtrl.js @@ -220,7 +220,7 @@ function initPackery() var cnt=0; $scope.MontageMonitors.forEach(function(elem) { - if ((elem.Monitor.Enabled!='0') && (elem.Monitor.Function!='None') && (elem.Monitor.listDisplay!="noshow")) + if ((elem.Monitor.Enabled!='0') && (elem.Monitor.Function!='None') ) cnt++; }); |
