1
0
mirror of synced 2025-11-06 04:30:40 +08:00

fix rhs typo

This commit is contained in:
johan456789
2019-02-10 20:33:21 +08:00
committed by GitHub
parent 2474005eab
commit 79608df3fb

View File

@@ -104,7 +104,7 @@ This example demonstrates how to set left and right editors using ajax.
//a.innerHTML = "content ready.";
}
document.getElementById('save-lhs').addEventListener('mouseover', function() { download_content(this, "lhs"); }, false);
document.getElementById('save-rhs').addEventListener('mouseover', function() { download_content(this, "lhs"); }, false);
document.getElementById('save-rhs').addEventListener('mouseover', function() { download_content(this, "rhs"); }, false);
document.getElementById('ignorews').addEventListener('change', function() {
$('#compare').mergely('options', { ignorews: this.checked });
}, false);