web/data/cubicweb.log.js
author David Douard <david.douard@logilab.fr>
Tue, 06 Aug 2013 11:49:33 +0200
branchstable
changeset 9215 5b9fedf67a29
parent 7995 9a9f35ef418c
permissions -rw-r--r--
[pkg] prepare 3.17.6

// This contains template-specific javascript

function filterLog(domid, thresholdLevel) {
    var logLevels = ["Debug", "Info", "Warning", "Error", "Fatal"]
    var action = "hide";
    for (var idx = 0; idx < logLevels.length; idx++){
        var level = logLevels[idx];
        if (level === thresholdLevel){
            action = "show";
        }
        $('#'+domid+' .log' + level)[action]();
    }
}