[PE][SSE] Bug in download as
This commit is contained in:
parent
9548f926df
commit
b9503cd12a
|
@ -90,19 +90,13 @@ define([
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
this.flatFormats = _.flatten(this.formats);
|
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
||||||
onFormatClick: function(e) {
|
onFormatClick: function(e) {
|
||||||
var format = /\s(\w+)/.exec(e.currentTarget.className);
|
var type = e.currentTarget.attributes['format'];
|
||||||
if (format) {
|
if (!_.isUndefined(type) && this.menu) {
|
||||||
format = format[1];
|
this.menu.fireEvent('saveas:format', [this.menu, parseInt(type.value)]);
|
||||||
var item = _.findWhere(this.flatFormats, {imgCls: format});
|
|
||||||
|
|
||||||
if (item && this.menu) {
|
|
||||||
this.menu.fireEvent('saveas:format', [this.menu, item.type]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -84,19 +84,13 @@ define([
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
this.flatFormats = _.flatten(this.formats);
|
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
||||||
onFormatClick: function(e) {
|
onFormatClick: function(e) {
|
||||||
var format = /\s(\w+)/.exec(e.currentTarget.className);
|
var type = e.currentTarget.attributes['format'];
|
||||||
if (format) {
|
if (!_.isUndefined(type) && this.menu) {
|
||||||
format = format[1];
|
this.menu.fireEvent('saveas:format', [this.menu, parseInt(type.value)]);
|
||||||
var item = _.findWhere(this.flatFormats, {imgCls: format});
|
|
||||||
|
|
||||||
if (item && this.menu) {
|
|
||||||
this.menu.fireEvent('saveas:format', [this.menu, item.type]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue