web/data/cubicweb.log.js
author Celso FLORES <celso.flores@crealibre.com>
Tue, 04 Mar 2014 12:04:04 +0100
changeset 9544 59111c3bd02c
parent 7995 9a9f35ef418c
permissions -rw-r--r--
[i18n] es.po updated

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