Fixes issue with images not displaying due to window.origin not being defined in IE10

Этот коммит содержится в:
Reed Garmsen
2015-07-24 14:13:19 -07:00
родитель 85ff151b71
Коммит 52bf726ddf
5 изменённых файлов: 16 добавлений и 10 удалений

Просмотреть файл

@@ -22,8 +22,6 @@ module.exports.cleanUpUrlable = function(input) {
return cleaned;
};
module.exports.isTestDomain = function() {
if ((/^localhost/).test(window.location.hostname))
@@ -838,3 +836,11 @@ module.exports.getDisplayName = function(user) {
}
}
};
//IE10 does not set window.location.origin automatically so this must be called instead when using it
module.exports.getWindowLocationOrigin = function() {
if (!window.location.origin) {
window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '');
}
return window.location.origin;
};