]> git.mxchange.org Git - mailer.git/blobdiff - js/ajax-test.js
Removed @deprecated from CSS inline/PHP output
[mailer.git] / js / ajax-test.js
index 2e06210044c87c1c2e09876eaa9b13aa758286a5..478b13d431f1c80f8734c18ec27bc9f9d0ea1651 100644 (file)
@@ -1,4 +1,4 @@
-/*
+/**
  * JavaScript for testing the browser of AJAX-compatiblity
  * --------------------------------------------------------------------
  * $Revision::                                                        $
@@ -7,7 +7,7 @@
  * $Author::                                                          $
  * --------------------------------------------------------------------
  * Copyright (c) 2003 - 2009 by Roland Haeder
- * Copyright (c) 2009 - 2012 by Mailer Developer Team
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team
  * For more information visit: http://mxchange.org
  *
  * This program is free software; you can redistribute it and/or modify
@@ -37,13 +37,13 @@ var ajaxTest = null;
 
 // Countdown function
 function ajaxTestCounter () {
-       // Do we have element set?
-       if (element != null) {
+       // Is there element set?
+       if (element !== null) {
                // Yes, then set the new counter value
                element.innerHTML = counter;
        } // END - if
 
-       // Do we have reached zero?
+       // Is there reached zero?
        if (counter < 1) {
                // Clear the interval
                clearInterval(ajaxTest);