Author: marcus
Date: Sat Oct 12 08:28:23 2013
New Revision: 1531514

URL: http://svn.apache.org/r1531514
Log:
ECMAScript support: Emulate 'indexOf()' function as MSIE 8 and older do not 
have implemented this

Modified:
    openoffice/ooo-site/trunk/content/download/download_other.js

Modified: openoffice/ooo-site/trunk/content/download/download_other.js
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/download_other.js?rev=1531514&r1=1531513&r2=1531514&view=diff
==============================================================================
--- openoffice/ooo-site/trunk/content/download/download_other.js (original)
+++ openoffice/ooo-site/trunk/content/download/download_other.js Sat Oct 12 
08:28:23 2013
@@ -80,6 +80,24 @@ function write_top() {
  * This writes the header row with the OS headlines
  */
 function write_header( FIRST_HEADER ) {
+       // Add ECMA262-5 Array methods if not supported natively
+       // To workaround that MSIE 8 and older do not support this function
+       if ( !( 'indexOf' in Array.prototype ) ) {
+         Array.prototype.indexOf= function( find, i /*opt*/ ) {
+           if ( i === undefined )
+             i = 0;
+           if ( i < 0 )
+             i+= this.length;
+           if ( i < 0 )
+             i = 0;
+           for ( var n = this.length; i < n; i++ ) {
+             if ( i in this && this[ i ] === find )
+               return i;
+           }
+           return -1;
+         };
+       }
+
        // If it's the first header at the top of a table use a normal font size
        // But use a smaller font size for further headers within the table
        if ( FIRST_HEADER == 1 ) {


Reply via email to