Adding absoluteUrl handling to polyfills

This commit is contained in:
Bruno Alves de Faria 2017-04-21 09:48:33 -03:00
parent d926ba3e06
commit 42d7ed3134
2 changed files with 12 additions and 1 deletions

View File

@ -1,10 +1,11 @@
import { $ } from 'meteor/jquery';
import { absoluteUrl } from './lib/absoluteUrl';
/* jshint -W060 */
// Check if browser is IE and add the polyfill scripts
if (navigator && /MSIE \d|Trident.*rv:/.test(navigator.userAgent)) {
const writeScript = fileName => {
const src = `/packages/ohif_polyfill/public/js/${fileName}`;
const src = absoluteUrl(`/packages/ohif_polyfill/public/js/${fileName}`);
document.write(`<script src="${src}"><\/script>`);
};

View File

@ -0,0 +1,10 @@
import { Meteor } from 'meteor/meteor';
export const absoluteUrl = function(path) {
if (path) {
// Remove the leading "/"
path = path.replace(/^\//, '');
}
return Meteor.absoluteUrl(path);
};