From 79608df3fb439d6f57a5dd8a41bf43b14d2f6852 Mon Sep 17 00:00:00 2001 From: johan456789 <14802181+johan456789@users.noreply.github.com> Date: Sun, 10 Feb 2019 20:33:21 +0800 Subject: [PATCH] fix rhs typo --- examples/ajax.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ajax.html b/examples/ajax.html index 3bb77be..3d7f50b 100644 --- a/examples/ajax.html +++ b/examples/ajax.html @@ -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);