Sha256: 2ee07b7e60942ec2c1925b9d134bbb55cfa4f0f6759b05665e65d03a588b3f9b

Contents?: true

Size: 1.27 KB

Versions: 5

Compression:

Stored size: 1.27 KB

Contents

<script>
var nl = /\n/gi;

var req;

function loadXMLDoc(url) {
    if (window.XMLHttpRequest) {
        req = new XMLHttpRequest();
        req.onreadystatechange = processReqChange;
        req.open("GET", url, true);
        req.send(null);
    } else if (window.ActiveXObject) {
        req = new ActiveXObject("Microsoft.XMLHTTP");
        if (req) {
            req.onreadystatechange = processReqChange;
            req.open("GET", url, true);
            req.send();
        }
    }
}

function processReqChange() {
    // only if req shows "loaded"
    if (req.readyState == 4) {
        // only if "OK"
        if (req.status == 200) {
            var checkout_list = window.frames['checkout_list']
            checkout_list.document.body.innerHTML = req.responseText.replace(nl, "<br>")
            checkout_list.scrollBy(0, 3000)

            setTimeout("loadXMLDoc('<%= @checkout_list_path %>')", 1000)
        } else {
            alert("There was a problem retrieving the XML data:\n" +
                req.responseText);
        }
    }
}

function executeOnLoad() {
    loadXMLDoc('<%= @checkout_list_path %>')
}
</script>

<iframe id="checkout_list" name="checkout_list" rows="20" cols="120">Your browser doesn't support IFRAME.</iframe>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
damagecontrol-0.5.0.1391 app/views/scm/checkout_status.rhtml
damagecontrol-0.5.0.1392 app/views/scm/checkout_status.rhtml
damagecontrol-0.5.0.1393 app/views/scm/checkout_status.rhtml
damagecontrol-0.5.0 app/views/scm/checkout_status.rhtml
damagecontrol-0.5.0.1404 app/views/scm/checkout_status.rhtml