web/data/cubicweb.facets.js
changeset 10074 ab956b780d4e
parent 9819 95902c0b991b
parent 10029 832a2a0b7bd2
child 10279 d7479a5ac553
equal deleted inserted replaced
10068:1b0cb3c6c95e 10074:ab956b780d4e
    33             values.push(this.value);
    33             values.push(this.value);
    34         });
    34         });
    35     });
    35     });
    36     // pick up hidden inputs (required metadata inputs such as 'facets'
    36     // pick up hidden inputs (required metadata inputs such as 'facets'
    37     // but also RangeWidgets)
    37     // but also RangeWidgets)
    38     $form.find('input:hidden').each(function() {
    38     $form.find('input[type="hidden"]').each(function() {
    39         names.push(this.name);
    39         names.push(this.name);
    40         values.push(this.value);
    40         values.push(this.value);
    41     });
    41     });
    42     // And / Or operators
    42     // And / Or operators
    43     $form.find('select option[selected]').each(function() {
    43     $form.find('select option[selected]').each(function() {