updated by GasGit automation

This commit is contained in:
Bruce McPherson 2016-06-24 18:10:44 +01:00
parent 89f6d30e05
commit 873700d72e

View file

@ -244,6 +244,15 @@ var Home = (function (home) {
}); });
},false); },false);
// this one is about whether to apply filters
var elem = Process.control.sankey.elementer.getElements().controls.applyFilters;
Process.control.watching.watcher.getWatching().domain.applyFilters = elem.checked;
elem.addEventListener('change', function () {
var w = Process.control.watching.watcher;
w.getWatching().domain.applyFilters = elem.checked;
w.poke()
});
}; };