You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by jo...@apache.org on 2010/06/02 14:20:21 UTC

svn commit: r950523 - /shindig/trunk/features/src/main/javascript/features/flash/flash.js

Author: johnh
Date: Wed Jun  2 12:20:20 2010
New Revision: 950523

URL: http://svn.apache.org/viewvc?rev=950523&view=rev
Log:
Return true for IE when embedding flash. This return value was missed previously.


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

Modified: shindig/trunk/features/src/main/javascript/features/flash/flash.js
URL: http://svn.apache.org/viewvc/shindig/trunk/features/src/main/javascript/features/flash/flash.js?rev=950523&r1=950522&r2=950523&view=diff
==============================================================================
--- shindig/trunk/features/src/main/javascript/features/flash/flash.js (original)
+++ shindig/trunk/features/src/main/javascript/features/flash/flash.js Wed Jun  2 12:20:20 2010
@@ -195,6 +195,7 @@ gadgets.flash.embedFlash = function(swfU
         html += '</object>';
       }
       swfContainer.innerHTML = html;
+      return true;
     }
   }
   return false;