From 92028e191d99967db883bd124a1dd0351732770e Mon Sep 17 00:00:00 2001 From: bootstraponline Date: Thu, 3 May 2012 11:13:27 -0600 Subject: [PATCH] Remove console.log. --- lib/gollum/frontend/public/gollum/livepreview/index.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/gollum/frontend/public/gollum/livepreview/index.html b/lib/gollum/frontend/public/gollum/livepreview/index.html index e6a3dfc5..f6f1171e 100644 --- a/lib/gollum/frontend/public/gollum/livepreview/index.html +++ b/lib/gollum/frontend/public/gollum/livepreview/index.html @@ -116,7 +116,6 @@ window.onload = function() { url: "/create", data: { page: $.key("page"), format: "markdown", content: editorSession.getValue() }, success: function() { - // on success, load the new page. window.location = window.location.origin + "/" + $.key("page"); } }); @@ -126,7 +125,6 @@ window.onload = function() { url: "/edit/" + $.key("page"), data: { format: "markdown", content: editorSession.getValue() }, success: function() { - // on success, load the new page. window.location = window.location.origin + "/" + $.key("page"); } }); @@ -134,8 +132,6 @@ window.onload = function() { } $('#save').click(function() { - console.log("save clicked!"); - // Save page and navigate to the new page on success. $.save(); });