[PE][SSE] Bug in download as

This commit is contained in:
Julia Radzhabova 2018-04-24 14:54:29 +03:00
parent 9548f926df
commit b9503cd12a
2 changed files with 6 additions and 18 deletions

View file

@ -90,19 +90,13 @@ define([
});
}
this.flatFormats = _.flatten(this.formats);
return this;
},
onFormatClick: function(e) {
var format = /\s(\w+)/.exec(e.currentTarget.className);
if (format) {
format = format[1];
var item = _.findWhere(this.flatFormats, {imgCls: format});
if (item && this.menu) {
this.menu.fireEvent('saveas:format', [this.menu, item.type]);
}
var type = e.currentTarget.attributes['format'];
if (!_.isUndefined(type) && this.menu) {
this.menu.fireEvent('saveas:format', [this.menu, parseInt(type.value)]);
}
}
});

View file

@ -84,19 +84,13 @@ define([
});
}
this.flatFormats = _.flatten(this.formats);
return this;
},
onFormatClick: function(e) {
var format = /\s(\w+)/.exec(e.currentTarget.className);
if (format) {
format = format[1];
var item = _.findWhere(this.flatFormats, {imgCls: format});
if (item && this.menu) {
this.menu.fireEvent('saveas:format', [this.menu, item.type]);
}
var type = e.currentTarget.attributes['format'];
if (!_.isUndefined(type) && this.menu) {
this.menu.fireEvent('saveas:format', [this.menu, parseInt(type.value)]);
}
}
});