keyboard: match transliterated letters
[sheet.git] / searchlocal.js
index 09899710cac5731d1276aa1ee538f4154a60985f..512f07b8482cf1bf293e16c09d385a6178fb014a 100644 (file)
@@ -69,6 +69,7 @@ function filtertable(query, action) {
                query = match[2];
        }
 
+if (document.querySelector !== undefined) {
        if (query == '' && action == 'add') {
                // restore all columns if explicitly adding all ("+")
                filtercols(table, function(){return true}, 'add');
@@ -82,6 +83,7 @@ function filtertable(query, action) {
                }
                return filtercols(table, match, action || 'toggle');
        }
+}
 
        if (/^[A-Z0-9 ]{2,}$/.test(query)) {
                // category title if all uppercase
@@ -125,21 +127,22 @@ function prependsearch(target) {
                'form', {
                        id: 'search',
                        'class': 'aside',
-                       onsubmit: "filtertable(this.q.value); this.q.value = ''; return false",
+                       'className': 'aside', // msie
+                       onsubmit: "filtertable(this.q.value); this.q.value = ''; return false"
                },
                [
                        newelement('input', {
                                type: 'search',
                                name: 'q',
                                onkeyup: "if (filtertoggles && !filterupdate) filterupdate = "
-                                       + "window.setTimeout(filtertable, 300, undefined, 'focus')",
+                                       + "window.setTimeout(filtertable, 300, undefined, 'focus')"
                        }),
                        filtertoggles && newelement('input', {
                                type: 'button',
                                value: 'toggle',
-                               onclick: "filtertable(this.form.q.value, 'target')",
+                               onclick: "filtertable(this.form.q.value, 'target')"
                        }),
-                       newelement('input', {type:'submit', value:'filter'}),
+                       newelement('input', {type:'submit', value:'filter'})
                ]
        ), target);
 }