remove js debug statements in sidebar text preview generator

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2016-11-30 14:54:54 +01:00
parent f15ea9ec05
commit 7fc118e8ea
No known key found for this signature in database
GPG Key ID: 425003AC385454C5
1 changed files with 1 additions and 5 deletions

View File

@ -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));
}
};