changeset 348:e48abbbbb3b2

Oops, some messageBox() -> jsMessageBox() renames were missing.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 02 Dec 2013 05:51:38 +0200
parents 1ef6cd391590
children 61c4dda0ec03
files majax.php
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/majax.php	Mon Dec 02 05:35:58 2013 +0200
+++ b/majax.php	Mon Dec 02 05:51:38 2013 +0200
@@ -81,7 +81,7 @@
       if (req.status == 902)
       {
         statusMsg(req.statusText);
-        messageBox(req.responseText);
+        jsMessageBox(req.responseText);
       }
       else
       if (req.status == 200)
@@ -126,7 +126,7 @@
     var elem = document.getElementById(elname);
     if (!elem)
     {
-      messageBox("No such DOM element '"+ elname +"'.");
+      jsMessageBox("No such DOM element '"+ elname +"'.");
       return "";
     }
 
@@ -150,7 +150,7 @@
         break;
 
       default:
-        messageBox("Unsupported field type in "+ elname);
+        jsMessageBox("Unsupported field type in "+ elname);
         return "";
     }
   }