only edit textfiles when texteditorapp is disabled

Signed-off-by: Patrik Kernstock <info@pkern.at>
(cherry picked from commit 4db76d6f015bd3efd0ef35a4ebba2372828dd76e)
Signed-off-by: Andras Timar <andras.timar@collabora.com>
This commit is contained in:
Patrik Kernstock 2017-06-14 02:39:17 +02:00 committed by Andras Timar
parent 5855b7de9e
commit d76740bc75

View File

@ -109,7 +109,6 @@ var odfViewer = {
$('#app-content').append($iframe);
},
onClose: function() {
if(typeof FileList !== "undefined") {
FileList.setViewerMode(false);
@ -206,6 +205,14 @@ $(document).ready(function() {
&& typeof OCA.Files !== 'undefined'
&& typeof OCA.Files.fileActions !== 'undefined'
) {
// check if texteditor app is enabled and loaded...
if (_.isUndefined(OCA.Files_Texteditor)) {
// it is not, so we do open text files with this app too.
odfViewer.supportedMimes.push('text/plain');
}
// notice: when changing 'supportedMimes' interactively (e.g. dev console),
// register() needs to be re-run to re-register the fileActions.
odfViewer.register();
$.get(
@ -218,7 +225,7 @@ $(document).ready(function() {
// FIXME: Hack for single public file view since it is not attached to the fileslist
$(document).ready(function(){
// FIXME: FIlter compatible mime types
// FIXME: Filter compatible mime types
if ($('#isPublic').val() && odfViewer.supportedMimes.indexOf($('#mimetype').val()) !== -1) {
odfViewer.onEdit($('#filename').val());
}