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 1/2] 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); From 43ae12269c0bc751ac66e6a40e934634dac8ebb3 Mon Sep 17 00:00:00 2001 From: Jamie Peabody Date: Mon, 11 Feb 2019 21:01:28 +0000 Subject: [PATCH 2/2] bump 4.0.11 --- CHANGES.md | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 716fb18..85d6067 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # Changes +## 4.0.11 +* fixes typo in example ajax.html + ## 4.0.10 * fixes bad 4.0.9 artifacts diff --git a/package.json b/package.json index 0ff58e5..c59fc76 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mergely", - "version": "4.0.10", + "version": "4.0.11", "description": "A javascript UI for diff/merge", "directories": { "doc": "doc",