web/data/cubicweb.facets.js
changeset 10029 832a2a0b7bd2
parent 9379 b0b1148b6963
child 10074 ab956b780d4e
equal deleted inserted replaced
10028:326fbc5c92b0 10029:832a2a0b7bd2
    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() {