зеркало из https://github.com/nextcloud/server.git
Merge pull request #5262 from owncloud/files-ie8-conflictdialogbrokenfix
Fixed conflict dialog in IE8
This commit is contained in:
Коммит
a132144eca
|
@ -124,7 +124,11 @@ OC.Upload = {
|
|||
*/
|
||||
onReplace:function(data){
|
||||
this.log('replace', null, data);
|
||||
data.data.append('resolution', 'replace');
|
||||
if (data.data){
|
||||
data.data.append('resolution', 'replace');
|
||||
} else {
|
||||
data.formData.push({name:'resolution',value:'replace'}); //hack for ie8
|
||||
}
|
||||
data.submit();
|
||||
},
|
||||
/**
|
||||
|
|
|
@ -234,7 +234,7 @@ var OCdialogs = {
|
|||
var getCroppedPreview = function(file) {
|
||||
var deferred = new $.Deferred();
|
||||
// Only process image files.
|
||||
var type = file.type.split('/').shift();
|
||||
var type = file.type && file.type.split('/').shift();
|
||||
if (window.FileReader && type === 'image') {
|
||||
var reader = new FileReader();
|
||||
reader.onload = function (e) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче