You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2006/01/12 00:46:47 UTC

svn commit: r368171 - /incubator/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/inputSuggest.js

Author: weber
Date: Wed Jan 11 15:46:39 2006
New Revision: 368171

URL: http://svn.apache.org/viewcvs?rev=368171&view=rev
Log:
fix page access

Modified:
    incubator/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/inputSuggest.js

Modified: incubator/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/inputSuggest.js
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/inputSuggest.js?rev=368171&r1=368170&r2=368171&view=diff
==============================================================================
--- incubator/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/inputSuggest.js (original)
+++ incubator/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/inputSuggest.js Wed Jan 11 15:46:39 2006
@@ -54,7 +54,7 @@
     this.options.parameters = this.options.callback
         ? this.options.callback(this.element, entry) : entry;
 
-    var form = Tobago.getFormElement(page);
+    var form = Tobago.getFormElement(this.page);
     var url = form.action + "?affectedAjaxComponent=" + this.element.id;
     LOG.debug("start new request");
     new Ajax.Request(url, this.options);