From abed657fbdeffbd33fba2dfba313d176d32b742e Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Wed, 8 Dec 2010 00:40:00 +0100 Subject: [PATCH] browser: omit trailing commas in javascript arrays Not allowed by Internet Explorer :( --- searchlocal.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/searchlocal.js b/searchlocal.js index 0989971..a14c8c0 100644 --- a/searchlocal.js +++ b/searchlocal.js @@ -125,21 +125,21 @@ function prependsearch(target) { 'form', { id: 'search', 'class': 'aside', - onsubmit: "filtertable(this.q.value); this.q.value = ''; return false", + 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); } -- 2.30.0