You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ma...@apache.org on 2014/07/06 13:49:21 UTC

svn commit: r1608190 - /openoffice/ooo-site/trunk/content/download/test/download.js

Author: marcus
Date: Sun Jul  6 11:49:21 2014
New Revision: 1608190

URL: http://svn.apache.org/r1608190
Log:
Changed variable name as it is maybe a reserved keyword

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

Modified: openoffice/ooo-site/trunk/content/download/test/download.js
URL: http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/download.js?rev=1608190&r1=1608189&r2=1608190&view=diff
==============================================================================
--- openoffice/ooo-site/trunk/content/download/test/download.js (original)
+++ openoffice/ooo-site/trunk/content/download/test/download.js Sun Jul  6 11:49:21 2014
@@ -476,9 +476,9 @@ function hideElements() {
  */
 function showWindow( target_link ) {
 	// Open a popup window with specific parameters to show the file from "target_link".
-	var window;
+ 	var popup_window = "";
 
-	window = window.open( target_link, "_blank", "location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, titlebar=no, toolbar=no, left=100, top=250, width=800, height=550");
+	popup_window = window.open( target_link, "_blank", "location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, titlebar=no, toolbar=no, left=100, top=250, width=800, height=550" );
 	window.focus();
 
 	return;