]> matita.cs.unibo.it Git - helm.git/commitdiff
Fix for internet explorer (but still works badly).
authorWilmer Ricciotti <ricciott@cs.unibo.it>
Wed, 8 Jun 2011 15:55:47 +0000 (15:55 +0000)
committerWilmer Ricciotti <ricciott@cs.unibo.it>
Wed, 8 Jun 2011 15:55:47 +0000 (15:55 +0000)
matitaB/matita/matitaweb.js
matitaB/matita/netplex.conf

index d4dbe63e80c6f07616177aa3e046c4969452fb29..8f77fe4f8d2eec714805d2afc63067b99a77c76e 100644 (file)
@@ -35,7 +35,8 @@ function initialize()
 
 function debug(txt)
 {
-        logarea.innerHTML = txt + "\n" + logarea.innerHTML;
+        // internet explorer (v.9) doesn't work with innerHTML
+        logarea.innerText = txt + "\n" + logarea.innerText;
 }
 
 function listhd(l)
index 08b7481e60db6988f8a99759b7b42aea9fb9402d..d7d403be9f9949cca5077d747a205285ffc9b980 100644 (file)
@@ -27,7 +27,7 @@ netplex {
           path = "/";
           service {
             type = "file";
-            docroot = "/home/barolo/matitaB/matita";
+            docroot = "/home/ricciott/matitaB/matita";
             media_types_file = "/etc/mime.types";
             enable_listings = true;
           }