Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/viewer.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/viewer.js b/src/viewer.js
index fed66ab5..5001c604 100644
--- a/src/viewer.js
+++ b/src/viewer.js
@@ -286,7 +286,8 @@ const odfViewer = {
odfViewer.onEdit(filename, {
fileId: -1,
dir: $('#dir').val(),
- templateId: templateId
+ templateId: templateId,
+ fileList: FileList
})
} else {
OC.dialogs.alert(response.data.message, t('core', 'Could not create file'))
@@ -383,7 +384,8 @@ const odfViewer = {
FileList.$fileList.one('updated', function() {
odfViewer.onEdit(Preload.open.filename, {
fileId: Preload.open.id,
- dir: document.getElementById('dir').value
+ dir: document.getElementById('dir').value,
+ fileList: FileList
})
})
}