X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/deeb9be02fa983184ddf5fcc14d01f984079783d..34c9285ef29074d0c13cea81fbb05e93eb369b4a:/src/editor/modules/data/document.js diff --git a/src/editor/modules/data/document.js b/src/editor/modules/data/document.js index 0dbff14..db2b7a8 100644 --- a/src/editor/modules/data/document.js +++ b/src/editor/modules/data/document.js @@ -38,6 +38,13 @@ _.extend(Document.prototype, { }); }.bind(this); return wlxml.WLXMLDocument.prototype.transaction.call(this, body, params); + }, + getUrlForLink: function(link) { + var cfg = this.options.editorConfig; + if(link.substr(0, 7) === 'file://' && cfg && cfg.documentAttachmentUrl) { + link = cfg.documentAttachmentUrl(link.substr(7)); + } + return link; } });