Change GLOBAL string to be calculated from global this.toString() to eliminate erroneous errors in debug builds, no bug, not part of the build

This commit is contained in:
bob%bclary.com 2005-11-24 03:41:37 +00:00
parent cf7a48dd8c
commit 85cb04ad3b
8 changed files with 8 additions and 8 deletions

View File

@ -50,7 +50,7 @@
* <script src="./mytest.js"></script>
*/
var GLOBAL = "[object Window]";
var GLOBAL = this + '';
function writeLineToLog( string ) {
document.write( string + "<br>\n");

View File

@ -50,7 +50,7 @@
* <script src="./mytest.js"></script>
*/
var GLOBAL = "[object Window]";
var GLOBAL = this + '';
function writeLineToLog( string ) {
document.write( string + "<br>\n");

View File

@ -50,7 +50,7 @@
* <script src="./mytest.js"></script>
*/
var GLOBAL = "[object Window]";
var GLOBAL = this + '';
function writeLineToLog( string ) {
document.write( string + "<br>\n");

View File

@ -50,7 +50,7 @@
* <script src="./mytest.js"></script>
*/
GLOBAL = "[object Window]";
GLOBAL = this + '';
function writeLineToLog( string ) {
document.write( string + "<br>\n");

View File

@ -50,7 +50,7 @@
* <script src="./mytest.js"></script>
*/
var GLOBAL = "[object Window]";
var GLOBAL = this + '';
function writeLineToLog( string ) {
document.write( string + "<br>\n");

View File

@ -50,7 +50,7 @@
* <script src="./mytest.js"></script>
*/
GLOBAL = "[object Window]";
GLOBAL = this + '';
function writeLineToLog( string ) {
document.write( string + "<br>\n");

View File

@ -50,7 +50,7 @@
* <script src="./mytest.js"></script>
*/
GLOBAL = "[object Window]";
GLOBAL = this + '';
function writeLineToLog( string ) {
document.write( string + "<br>\n");

View File

@ -50,7 +50,7 @@
* <script src="./mytest.js"></script>
*/
GLOBAL = "[object Window]";
GLOBAL = this + '';
var TT = "<tt>";
var TT_ = "</tt>";