Allow options to be passed to `FileList.createFile` (#12990)

Allow options to be passed to `FileList.createFile`
This commit is contained in:
John Molakvoæ 2019-09-16 20:15:23 +02:00 committed by GitHub
commit 9629015b4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -2743,7 +2743,7 @@
*
* @since 8.2
*/
createFile: function(name) {
createFile: function(name, options) {
var self = this;
var deferred = $.Deferred();
var promise = deferred.promise();
@ -2767,7 +2767,8 @@
)
.done(function() {
// TODO: error handling / conflicts
self.addAndFetchFileInfo(targetPath, '', {scrollTo: true}).then(function(status, data) {
options = _.extend({scrollTo: true}, options || {});
self.addAndFetchFileInfo(targetPath, '', options).then(function(status, data) {
deferred.resolve(status, data);
}, function() {
OC.Notification.show(t('files', 'Could not create file "{file}"',