Changeset 5 for src/main/webapp


Ignore:
Timestamp:
09/25/19 16:49:11 (5 years ago)
Author:
bart
Message:

Fix consistency check LinearAdditiveUtilitySpace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/webapp/newsession.xhtml

    r4 r5  
    7575        </div>
    7676        <div id="results" style="visibility: hidden">
    77                 Your session started.<br /> <a href="" id="logref">view the log
     77                Session completed. <a href="" id="logref">view the log
    7878                        file</a> <br /> <a href="" id="plotref">render a utilities plot</a>.
    7979        </div>
     
    311311
    312312                // see https://www.w3schools.com/xml/dom_httprequest.asp
    313             var xmlHttp = new XMLHttpRequest();
     313                document.getElementById("startbutton").disabled=true;
     314                document.getElementById("started").setAttribute("style","");
     315
     316                var xmlHttp = new XMLHttpRequest();
    314317            xmlHttp.onreadystatechange = function() {
    315318                if (this.readyState == 4) {
    316319                        if (this.status == 200) {
    317320                                var logurl="log/"+this.responseText+".json";
    318                                 document.getElementById("startbutton").disabled=true;
    319321                                document.getElementById("logref").href=logurl;
    320322                                document.getElementById("plotref").href="plotlog.xhtml?id="+this.responseText;
    321                                 document.getElementById("started").setAttribute("style","");
    322323                               
    323324                                sometimeWhen(function() { return urlExists(logurl) },
Note: See TracChangeset for help on using the changeset viewer.