]> git.mxchange.org Git - mailer.git/blobdiff - js/menu-common.js
Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / js / menu-common.js
index b02551fe5238c4d40d53974fcc27400dbeca08e8..5522c5e2f6f651a73ee80325c7fdb59443bfa7fd 100644 (file)
@@ -1,13 +1,8 @@
 /**
  * JavaScript for folding/unfolding menus
  * --------------------------------------------------------------------
- * $Revision::                                                        $
- * $Date::                                                            $
- * $Tag:: 0.2.1-FINAL                                                 $
- * $Author::                                                          $
- * --------------------------------------------------------------------
  * Copyright (c) 2003 - 2009 by Roland Haeder
- * Copyright (c) 2009 - 2012 by Mailer Developer Team
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team
  * For more information visit: http://mxchange.org
  *
  * This program is free software; you can redistribute it and/or modify
@@ -49,7 +44,7 @@ function changeMenuFoldState (mode, currentAction, action, what) {
        var current = document.getElementById(id);
 
        // Is it displayed?
-       if (menuStates[id] == true) {
+       if (menuStates[id] === true) {
                // Then hide it
                hideMenu(current, id);
        } else {