You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by wo...@apache.org on 2011/08/12 20:37:42 UTC

svn commit: r1157208 - /shindig/trunk/features/src/main/javascript/features/opensearch/opensearch.js

Author: woodser
Date: Fri Aug 12 18:37:41 2011
New Revision: 1157208

URL: http://svn.apache.org/viewvc?rev=1157208&view=rev
Log:
Very minor update: added "var" to for loop in opensearch.js to fix issues in IE8.

Modified:
    shindig/trunk/features/src/main/javascript/features/opensearch/opensearch.js

Modified: shindig/trunk/features/src/main/javascript/features/opensearch/opensearch.js
URL: http://svn.apache.org/viewvc/shindig/trunk/features/src/main/javascript/features/opensearch/opensearch.js?rev=1157208&r1=1157207&r2=1157208&view=diff
==============================================================================
--- shindig/trunk/features/src/main/javascript/features/opensearch/opensearch.js (original)
+++ shindig/trunk/features/src/main/javascript/features/opensearch/opensearch.js Fri Aug 12 18:37:41 2011
@@ -103,7 +103,7 @@
    *            gadget module.
    */
   function preloaded(response) {
-    for (item in response) {
+    for (var item in response) {
       if (!response[item].error) {
         // check for os feature
         var feature = response[item].modulePrefs.features['opensearch'];