From 9652cd73339c547d27b4f7ed0699cdd0be11fb7b Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Tue, 18 Feb 2014 10:31:25 -0500 Subject: [PATCH] AC-564 fixed a bug with CodeMirror editor and post dialog removal/cleanup. --- awx/ui/static/js/helpers/Parse.js | 1 - 1 file changed, 1 deletion(-) diff --git a/awx/ui/static/js/helpers/Parse.js b/awx/ui/static/js/helpers/Parse.js index 54c5c34414..432de6d8b0 100644 --- a/awx/ui/static/js/helpers/Parse.js +++ b/awx/ui/static/js/helpers/Parse.js @@ -32,7 +32,6 @@ angular.module('ParseHelper', ['Utilities', 'AngularCodeMirrorModule']) //hide the textarea and show a fresh CodeMirror with the current mode (json or yaml) codeMirror = AngularCodeMirror(); codeMirror.addModes($AnsibleConfig.variable_edit_modes); - console.log('here'); codeMirror.showTextArea({ scope: scope, model: fld, element: field_id, mode: scope[pfld], onReady: onReady, onChange: onChange }); }