web/data/cubicweb.log.js
author Katia Saurfelt <katia.saurfelt@logilab.fr>
Fri, 02 Mar 2012 15:15:20 +0100
branchstable
changeset 8295 302dcb3c6858
parent 7995 9a9f35ef418c
permissions -rw-r--r--
[js] fix $.fullCalendar.regional call (closes #2232028)

// 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]();
    }
}