You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by pa...@apache.org on 2013/02/28 13:49:42 UTC

svn commit: r1451183 - /ofbiz/trunk/applications/order/webapp/ordermgr/images/js/geoAutoCompleter.js

Author: paulfoxworthy
Date: Thu Feb 28 12:49:42 2013
New Revision: 1451183

URL: http://svn.apache.org/r1451183
Log:
In geoAutoCompleter.js, the jQuery UI function name should be autocomplete,
not autcomplete

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/images/js/geoAutoCompleter.js

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/images/js/geoAutoCompleter.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/images/js/geoAutoCompleter.js?rev=1451183&r1=1451182&r2=1451183&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/images/js/geoAutoCompleter.js (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/images/js/geoAutoCompleter.js Thu Feb 28 12:49:42 2013
@@ -31,7 +31,7 @@ function getCountryList() {
 
 function callCountryAutocompleter(data) {
     countryList = data.countryList;
-    countryTargetField.autcomplete({source: countryList, select: setKeyAsParameterAndGetStateList});
+    countryTargetField.autocomplete({source: countryList, select: setKeyAsParameterAndGetStateList});
 }
 
 function setKeyAsParameterAndGetStateList(event, ui) {