From: senator Date: Wed, 14 Apr 2010 13:42:35 +0000 (+0000) Subject: Acq: fixing bug introduced in 16230 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a739a1f1e4c143db77d4f5aa3d2ec397cd44b643;p=contrib%2FConifer.git Acq: fixing bug introduced in 16230 git-svn-id: svn://svn.open-ils.org/ILS/trunk@16235 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/js/ui/default/acq/search/unified.js b/Open-ILS/web/js/ui/default/acq/search/unified.js index 67114c1c73..49ebda2fbf 100644 --- a/Open-ILS/web/js/ui/default/acq/search/unified.js +++ b/Open-ILS/web/js/ui/default/acq/search/unified.js @@ -115,7 +115,7 @@ function TermSelectorFactory(terms) { "input", {"type": "text"}, parentNode, "only" ); if (typeof(value) != "undefined") - wStore[widgetKey].attr("value", value); + wStore[widgetKey].value = value; wStore[widgetKey].focus(); if (typeof(callback) == "function") callback(term, widgetKey);