diff options
Diffstat (limited to 'js/document/html-document.js')
-rwxr-xr-x | js/document/html-document.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/js/document/html-document.js b/js/document/html-document.js index a05219bc..b9b68972 100755 --- a/js/document/html-document.js +++ b/js/document/html-document.js | |||
@@ -451,9 +451,12 @@ exports.HTMLDocument = Montage.create(TextDocument, { | |||
451 | // | 451 | // |
452 | function ninjaUrlPrepend (url) { | 452 | function ninjaUrlPrepend (url) { |
453 | var docRootUrl = this.application.ninja.coreIoApi.rootUrl+escape((this.application.ninja.documentController.documentHackReference.root.split(this.application.ninja.coreIoApi.cloudData.root)[1]).replace(/\/\//gi, '/')); | 453 | var docRootUrl = this.application.ninja.coreIoApi.rootUrl+escape((this.application.ninja.documentController.documentHackReference.root.split(this.application.ninja.coreIoApi.cloudData.root)[1]).replace(/\/\//gi, '/')); |
454 | return '"'+docRootUrl+url.replace(/\"/gi, '')+'"'; | 454 | if (url.indexOf('data:image') !== -1) { |
455 | return url; | ||
456 | } else { | ||
457 | return '"'+docRootUrl+url.replace(/\"/gi, '')+'"'; | ||
458 | } | ||
455 | } | 459 | } |
456 | |||
457 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | 460 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
458 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | 461 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
459 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | 462 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |