From 241fa3e227afa073510fdb07c34e2ca91cdaddf7 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Fri, 4 Nov 2011 18:11:45 +0000 Subject: [PATCH] enable filter on change --- source/Ox/js/Core.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/Ox/js/Core.js b/source/Ox/js/Core.js index 4d7687ad..9417bc32 100644 --- a/source/Ox/js/Core.js +++ b/source/Ox/js/Core.js @@ -121,6 +121,9 @@ Ox.load = function() { }); }; +/*@ +Ox.Log Logging module +@*/ Ox.Log = (function() { var log = localStorage && localStorage.OxLog ? JSON.parse(localStorage.OxLog) @@ -141,6 +144,7 @@ Ox.Log = (function() { } that.filter = function(val) { if (!Ox.isUndefined(val)) { + that.filter.enable(); log.filter = Ox.toArray(val); save(); }