You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
698 B
JavaScript
27 lines
698 B
JavaScript
3 years ago
|
define([], function () {
|
||
|
var module = {
|
||
|
ext: '.docx', // default
|
||
|
exts: ['.docx']
|
||
|
};
|
||
|
|
||
|
module.main = function (userDoc, cb, ext, sframeChan, padData) {
|
||
|
sframeChan.query('Q_OOIFRAME_OPEN', {
|
||
|
json: userDoc,
|
||
|
type: 'doc',
|
||
|
padData: padData
|
||
|
}, function (err, u8) {
|
||
|
if (!u8) { return void cb(''); }
|
||
|
var ext;
|
||
|
if (typeof(u8) === "string") { ext = '.bin'; } // x2t not supported
|
||
|
var blob = new Blob([u8], {type: "application/bin;charset=utf-8"});
|
||
|
cb(blob, ext);
|
||
|
}, {
|
||
|
timeout: 600000,
|
||
|
raw: true
|
||
|
});
|
||
|
};
|
||
|
|
||
|
return module;
|
||
|
});
|
||
|
|