You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2014/12/09 18:53:44 UTC

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

Author: lofwyr
Date: Tue Dec  9 17:53:44 2014
New Revision: 1644134

URL: http://svn.apache.org/r1644134
Log:
TOBAGO-1427: Misspelled JS utility method: selectWithJQuery()

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

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-utils.js
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-utils.js?rev=1644134&r1=1644133&r2=1644134&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-utils.js (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-utils.js Tue Dec  9 17:53:44 2014
@@ -79,7 +79,7 @@ Tobago.Utils.ieSelectWithJQueryInputs =
 /** internal function for IE <= 8 performance */
 Tobago.Utils.ieFilterTags = function (element, tagNames, result) {
   for (var i = 0; i < tagNames.length; i++) {
-    if (element.tagName == tagName[i]) {
+    if (element.tagName == tagNames[i]) {
       result.push(element);
       break;
     }