From 76dd7a667a92d6d7159485b89ffeb105909aaca4 Mon Sep 17 00:00:00 2001 From: Warren Buckley Date: Wed, 2 Oct 2019 13:23:05 +0100 Subject: [PATCH] Remove console.logs --- .../src/common/services/tinymce.service.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js b/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js index 0e4816953f..4480968d0a 100644 --- a/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js +++ b/src/Umbraco.Web.UI.Client/src/common/services/tinymce.service.js @@ -617,7 +617,6 @@ function tinyMceService($rootScope, $q, imageHelper, $locale, $http, $timeout, s userService.getCurrentUser().then(function (userData) { if (callback) { angularHelper.safeApply($rootScope, function() { - console.log('current data in create media picker', currentTarget); callback(currentTarget, userData, imgDomElement); }); } @@ -631,14 +630,11 @@ function tinyMceService($rootScope, $q, imageHelper, $locale, $http, $timeout, s // imgElement is only definied if updating an image // if null/undefinied then its a BRAND new image if(imgDomElement){ - console.log('UPDATING IMG', img); - // Check if the img src has changed // If it has we will need to do some resizing/recalc again var hasImageSrcChanged = false; if(img.url !== editor.dom.getAttrib(imgDomElement, "src")){ - console.log("IMG SRC CHANGED !!!!"); hasImageSrcChanged = true; } @@ -667,7 +663,6 @@ function tinyMceService($rootScope, $q, imageHelper, $locale, $http, $timeout, s } } else{ - console.log('CREATE NEW IMAGE', img); // We need to create a NEW DOM element to insert var data = { alt: img.altText || "",