diff options
author | Kristian Lyngstol <kristian@bohemians.org> | 2016-05-22 14:17:56 +0200 |
---|---|---|
committer | Kristian Lyngstol <kristian@bohemians.org> | 2016-05-22 14:17:56 +0200 |
commit | 3225c2af46dd164f01b52243021336fd249119d8 (patch) | |
tree | 516b4f234dc2cc69d70d78e37ebc0474ee20eed7 /web/js/nms-oplog.js | |
parent | acfb9a7a84f133d5e1e2fd549f575c13a1d324a0 (diff) |
Front: Separate searching from the info-box
Diffstat (limited to 'web/js/nms-oplog.js')
-rw-r--r-- | web/js/nms-oplog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/js/nms-oplog.js b/web/js/nms-oplog.js index 5da7893..674b87a 100644 --- a/web/js/nms-oplog.js +++ b/web/js/nms-oplog.js @@ -39,7 +39,7 @@ nmsOplog.getSwitchLogs = function(sw) { var logs = []; for (var v in nmsData['oplog']['oplog']) { var log = nmsData['oplog']['oplog'][v]; - if (nmsInfoBox.searchSmart(log['systems'],sw)) { + if (nmsSearch.searchTest(log['systems'],sw)) { logs.push(log); } } |