You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ad...@apache.org on 2019/06/12 10:02:45 UTC

[roller] 02/02: Reverted: unwanted changes (ROL-2136)

This is an automated email from the ASF dual-hosted git repository.

adityasharma pushed a commit to branch ROL-2136-5.2.x
in repository https://gitbox.apache.org/repos/asf/roller.git

commit e7bf8273fb32493bd51dcea4f8646bf545c71406
Author: Aditya Sharma <ia...@gmail.com>
AuthorDate: Mon Jun 3 22:29:08 2019 +0530

    Reverted: unwanted changes (ROL-2136)
---
 app/src/main/webapp/WEB-INF/jsps/editor/EntryEditor.jsp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app/src/main/webapp/WEB-INF/jsps/editor/EntryEditor.jsp b/app/src/main/webapp/WEB-INF/jsps/editor/EntryEditor.jsp
index 1d463f8..1a2df74 100644
--- a/app/src/main/webapp/WEB-INF/jsps/editor/EntryEditor.jsp
+++ b/app/src/main/webapp/WEB-INF/jsps/editor/EntryEditor.jsp
@@ -127,7 +127,6 @@
         }
         // Added event listener to confirm once the editor content is changed
         jQuery("#edit_content").one("change", function() {
-            console.log("this");
             jQuery(window).on("beforeunload", function(event) {
                 // Chrome requires returnValue to be set and original event is found as originalEvent
                 // see https://developer.mozilla.org/en-US/docs/Web/API/WindowEventHandlers/onbeforeunload#Example