From 2e794ea7da3d2894bb85d37685d67e22e0521bd3 Mon Sep 17 00:00:00 2001 From: Antonin Date: Mon, 27 Jun 2016 12:25:37 +0200 Subject: [PATCH] Some js logs cleaning. --- js/mde-wrapper.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/js/mde-wrapper.js b/js/mde-wrapper.js index 3e0e3db..15f6204 100644 --- a/js/mde-wrapper.js +++ b/js/mde-wrapper.js @@ -25,10 +25,8 @@ function MDEWrapper(textarea, enableButton, disableButton) { } MDEWrapper.prototype.enable = function() { - console.log("enable ") var wrapper = this; if (this.simplemde == null) { - console.log("go"); this.simplemde = new SimpleMDE({ element: wrapper.element, forceSync: true, @@ -47,9 +45,7 @@ MDEWrapper.prototype.enable = function() { } MDEWrapper.prototype.disable = function() { - console.log("disable"); if (this.simplemde != null) { - console.log("go"); this.simplemde.toTextArea(); this.simplemde = null; if (this.disableButton) {