alecpl
2009-09-22 bc1296f729365561975893f218bdf01319f67552
- don't change case of autocomplete search to lower (per discussion for #1485792)


1 files modified
4 ■■■■ changed files
program/js/app.js 4 ●●●● patch | view | raw | blame | history
program/js/app.js
@@ -2632,7 +2632,7 @@
      return;
    
    // get cursor pos
    var inp_value = this.ksearch_input.value.toLowerCase();
    var inp_value = this.ksearch_input.value;
    var cpos = this.get_caret_pos(this.ksearch_input);
    var p = inp_value.lastIndexOf(this.ksearch_value, cpos);
@@ -2664,7 +2664,7 @@
    var q = inp_value.substring(p+1, cpos);
    // trim query string
    q = q.replace(/(^\s+|\s+$)/g, '').toLowerCase();
    q = q.replace(/(^\s+|\s+$)/g, '');
    // Don't (re-)search if the last results are still active
    if (q == this.ksearch_value)