Removed the 'room=' parameter from the wiki view. This functionality is provided...
[citadel.git] / webcit / static / mobile.js
index dd8f104b9db2763ca4c9fa05fbcdf2dd3726e99c..dc1485728e58ac1ba960ec5836eb3c37ee17ec47 100644 (file)
@@ -18,13 +18,13 @@ req.open('GET', '/msg/'+msgnum, true);
 req.onreadystatechange = function (aEvt) {
   if (req.readyState == 4) {
      if(req.status == 200)
-      currentMsgDisplay.innerHTML = "<button onMouseDown=\"CtdlHideMsg()\">(Hide message)</button><br/>"+req.responseText;
+      currentMsgDisplay.innerHTML = "<button onMouseDown=\"CtdlHideMsg()\">(Hide message)</button><br>"+req.responseText;
      else
       currentMsgDisplay.innerHTML = "Error loading message";
   }
 };
 req.send(null); */
-  window.location = "/mobilemsg/"+msgnum+"?Mail=1";
+  window.location = "/mobilemsg/"+msgnum;
 }
 function CtdlHideMsg() {
        currentMsgDisplay.style.display = "none";