Changeset 15165 for trunk/FACT++/www


Ignore:
Timestamp:
03/26/13 22:37:41 (12 years ago)
Author:
tbretz
Message:
Updated the response to script submission; added the missing type to the audio source element - this makes sound work on mobile chrome and firefox.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/www/smartfact/index.js

    r15056 r15165  
    193193
    194194        var txt = xmlCmd.responseText.split('\n');
    195 
    196195        login(txt[0]);
    197 
    198         switch (txt[1])
    199         {
    200         case "1": alert("dimctrl unreachable."); break;
    201         case "2": /*success*/ break;
    202         default: alert("Return code '"+txt[0]+"' unknown."); break;
    203         }
    204         if (txt.length>2)
     196        if (txt.length>1)
    205197            alert(xmlCmd.responseText);
     198        else
     199            alert("Command submitted.");
    206200    };
    207201    xmlCmd.send(null);
     
    970964            $("reporttime"+z).innerHTML="";
    971965        }
    972 
     966           
    973967        // invalidate?
    974968        timeoutText = setTimeout(refresh_text, 1000);
    975969        return;
    976970    }
    977 
     971           
    978972    var xmlText = new XMLHttpRequest();
    979973    xmlText.open('GET', "data/"+fname+'.data', true);
     
    999993            cycleCol($("ldot"+z));
    1000994            update_text(fname, counter>1 ? xmlText.responseText : undefined);
    1001             doresize(z);
     995            doresize(z); 
    1002996        }
    1003997        timeoutText = setTimeout(refresh_text, 3000);
     
    10801074            mp3.src = name+".mp3";
    10811075            ogg.src = name+".ogg";
     1076            mp3.type = "audio/mp3";
     1077            ogg.type = "audio/ogg";
    10821078
    10831079            audio.replaceChild(mp3, audio.firstChild);
Note: See TracChangeset for help on using the changeset viewer.