From 7fc118e8ea4cac9cedd5f4c77b17f7bdadc5e495 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 30 Nov 2016 14:54:54 +0100 Subject: [PATCH] remove js debug statements in sidebar text preview generator Signed-off-by: Robin Appelman --- apps/files/js/sidebarpreviewtext.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/files/js/sidebarpreviewtext.js b/apps/files/js/sidebarpreviewtext.js index 5af17bd5551..a19a349701b 100644 --- a/apps/files/js/sidebarpreviewtext.js +++ b/apps/files/js/sidebarpreviewtext.js @@ -18,7 +18,6 @@ }, handlePreview: function (model, $thumbnailDiv, $thumbnailContainer, fallback) { - console.log(model); var previewWidth = $thumbnailContainer.parent().width() + 50; // 50px for negative margins var previewHeight = previewWidth / (16 / 9); @@ -36,10 +35,7 @@ }, getFileContent: function (path) { - console.log(path); - var url = OC.linkToRemoteBase('files' + path); - console.log(url); - return $.get(url); + return $.get(OC.linkToRemoteBase('files' + path)); } }; -- 2.39.5