Merge pull request #252 from rgarmsen2295/ie10-image-regression-fix
Fixes issue with images not displaying in IE10 due to window.location.origin not being defined in IE10
Этот коммит содержится в:
@@ -24,7 +24,7 @@ module.exports = React.createClass({
|
|||||||
if (filename.indexOf("/api/v1/files/get") != -1) {
|
if (filename.indexOf("/api/v1/files/get") != -1) {
|
||||||
filename = filename.split("/api/v1/files/get")[1];
|
filename = filename.split("/api/v1/files/get")[1];
|
||||||
}
|
}
|
||||||
filename = window.location.origin + "/api/v1/files/get" + filename;
|
filename = utils.getWindowLocationOrigin() + "/api/v1/files/get" + filename;
|
||||||
|
|
||||||
if (type === "image") {
|
if (type === "image") {
|
||||||
previews.push(
|
previews.push(
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ module.exports = React.createClass({
|
|||||||
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
||||||
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
||||||
}
|
}
|
||||||
fileInfo.path = window.location.origin + "/api/v1/files/get" + fileInfo.path;
|
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
||||||
|
|
||||||
if (type === "image") {
|
if (type === "image") {
|
||||||
$('<img/>').attr('src', fileInfo.path+'_thumb.jpg').load(function(path, name){ return function() {
|
$('<img/>').attr('src', fileInfo.path+'_thumb.jpg').load(function(path, name){ return function() {
|
||||||
@@ -112,7 +112,7 @@ module.exports = React.createClass({
|
|||||||
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
||||||
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
||||||
}
|
}
|
||||||
fileInfo.path = window.location.origin + "/api/v1/files/get" + fileInfo.path;
|
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
||||||
|
|
||||||
if (type === "image") {
|
if (type === "image") {
|
||||||
if (i < Constants.MAX_DISPLAY_FILES) {
|
if (i < Constants.MAX_DISPLAY_FILES) {
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ RootPost = React.createClass({
|
|||||||
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
||||||
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
||||||
}
|
}
|
||||||
fileInfo.path = window.location.origin + "/api/v1/files/get" + fileInfo.path;
|
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
||||||
|
|
||||||
if (ftype === "image") {
|
if (ftype === "image") {
|
||||||
var url = fileInfo.path.replace(re1, '%20').replace(re2, '%28').replace(re3, '%29');
|
var url = fileInfo.path.replace(re1, '%20').replace(re2, '%28').replace(re3, '%29');
|
||||||
@@ -208,7 +208,7 @@ CommentPost = React.createClass({
|
|||||||
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
||||||
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
||||||
}
|
}
|
||||||
fileInfo.path = window.location.origin + "/api/v1/files/get" + fileInfo.path;
|
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
||||||
|
|
||||||
if (type === "image") {
|
if (type === "image") {
|
||||||
var url = fileInfo.path.replace(re1, '%20').replace(re2, '%28').replace(re3, '%29');
|
var url = fileInfo.path.replace(re1, '%20').replace(re2, '%28').replace(re3, '%29');
|
||||||
|
|||||||
@@ -68,10 +68,10 @@ var NavbarDropdown = React.createClass({
|
|||||||
for (var i = 0; i < this.state.teams.length; i++) {
|
for (var i = 0; i < this.state.teams.length; i++) {
|
||||||
var teamName = this.state.teams[i];
|
var teamName = this.state.teams[i];
|
||||||
|
|
||||||
teams.push(<li key={ teamName }><a href={window.location.origin + "/" + teamName }>Switch to { teamName }</a></li>);
|
teams.push(<li key={ teamName }><a href={utils.getWindowLocationOrigin() + "/" + teamName }>Switch to { teamName }</a></li>);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
teams.push(<li><a href={window.location.origin + "/signup_team" }>Create a New Team</a></li>);
|
teams.push(<li><a href={utils.getWindowLocationOrigin() + "/signup_team" }>Create a New Team</a></li>);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ul className="nav navbar-nav navbar-right">
|
<ul className="nav navbar-nav navbar-right">
|
||||||
|
|||||||
@@ -261,7 +261,7 @@ TeamURLPage = React.createClass({
|
|||||||
<div className="row">
|
<div className="row">
|
||||||
<div className="col-sm-11">
|
<div className="col-sm-11">
|
||||||
<div className="input-group">
|
<div className="input-group">
|
||||||
<span className="input-group-addon">{ window.location.origin + "/" }</span>
|
<span className="input-group-addon">{ utils.getWindowLocationOrigin() + "/" }</span>
|
||||||
<input type="text" ref="name" className="form-control" placeholder="" maxLength="128" defaultValue={this.props.state.team.name} autoFocus={true} onFocus={this.handleFocus}/>
|
<input type="text" ref="name" className="form-control" placeholder="" maxLength="128" defaultValue={this.props.state.team.name} autoFocus={true} onFocus={this.handleFocus}/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -592,7 +592,7 @@ PasswordPage = React.createClass({
|
|||||||
props.state.wizard = "finished";
|
props.state.wizard = "finished";
|
||||||
props.updateParent(props.state, true);
|
props.updateParent(props.state, true);
|
||||||
|
|
||||||
window.location.href = window.location.origin + '/' + props.state.team.name + '/login?email=' + encodeURIComponent(teamSignup.team.email);
|
window.location.href = utils.getWindowLocationOrigin() + '/' + props.state.team.name + '/login?email=' + encodeURIComponent(teamSignup.team.email);
|
||||||
|
|
||||||
// client.loginByEmail(teamSignup.team.domain, teamSignup.team.email, teamSignup.user.password,
|
// client.loginByEmail(teamSignup.team.domain, teamSignup.team.email, teamSignup.user.password,
|
||||||
// function(data) {
|
// function(data) {
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ module.exports = React.createClass({
|
|||||||
if (fileInfo.path.indexOf("/api/v1/files/get") !== -1) {
|
if (fileInfo.path.indexOf("/api/v1/files/get") !== -1) {
|
||||||
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
||||||
}
|
}
|
||||||
fileInfo.path = window.location.origin + "/api/v1/files/get" + fileInfo.path;
|
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
||||||
src = fileInfo['path'] + '_preview.jpg';
|
src = fileInfo['path'] + '_preview.jpg';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -148,7 +148,7 @@ module.exports = React.createClass({
|
|||||||
if (info.path.indexOf("/api/v1/files/get") !== -1) {
|
if (info.path.indexOf("/api/v1/files/get") !== -1) {
|
||||||
info.path = info.path.split("/api/v1/files/get")[1];
|
info.path = info.path.split("/api/v1/files/get")[1];
|
||||||
}
|
}
|
||||||
info.path = window.location.origin + "/api/v1/files/get" + info.path;
|
info.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + info.path;
|
||||||
preview_filename = info['path'] + '_preview.jpg';
|
preview_filename = info['path'] + '_preview.jpg';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -166,7 +166,7 @@ module.exports = React.createClass({
|
|||||||
if (download_link.indexOf("/api/v1/files/get") !== -1) {
|
if (download_link.indexOf("/api/v1/files/get") !== -1) {
|
||||||
download_link = download_link.split("/api/v1/files/get")[1];
|
download_link = download_link.split("/api/v1/files/get")[1];
|
||||||
}
|
}
|
||||||
download_link = window.location.origin + "/api/v1/files/get" + download_link;
|
download_link = utils.getWindowLocationOrigin() + "/api/v1/files/get" + download_link;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="modal fade image_modal" ref="modal" id={this.props.modalId} tabIndex="-1" role="dialog" aria-hidden="true">
|
<div className="modal fade image_modal" ref="modal" id={this.props.modalId} tabIndex="-1" role="dialog" aria-hidden="true">
|
||||||
|
|||||||
@@ -11,6 +11,12 @@ var BrowserStore = require('../stores/browser_store.jsx');
|
|||||||
|
|
||||||
var CHANGE_EVENT = 'change';
|
var CHANGE_EVENT = 'change';
|
||||||
|
|
||||||
|
var utils;
|
||||||
|
function getWindowLocationOrigin() {
|
||||||
|
if (!utils) utils = require('../utils/utils.jsx');
|
||||||
|
return utils.getWindowLocationOrigin();
|
||||||
|
}
|
||||||
|
|
||||||
var TeamStore = assign({}, EventEmitter.prototype, {
|
var TeamStore = assign({}, EventEmitter.prototype, {
|
||||||
emitChange: function() {
|
emitChange: function() {
|
||||||
this.emit(CHANGE_EVENT);
|
this.emit(CHANGE_EVENT);
|
||||||
@@ -58,7 +64,7 @@ var TeamStore = assign({}, EventEmitter.prototype, {
|
|||||||
return null;
|
return null;
|
||||||
},
|
},
|
||||||
getCurrentTeamUrl: function() {
|
getCurrentTeamUrl: function() {
|
||||||
return window.location.origin + "/" + this.getCurrent().name;
|
return getWindowLocationOrigin() + "/" + this.getCurrent().name;
|
||||||
},
|
},
|
||||||
storeTeam: function(team) {
|
storeTeam: function(team) {
|
||||||
var teams = this._getTeams();
|
var teams = this._getTeams();
|
||||||
|
|||||||
@@ -22,8 +22,6 @@ module.exports.cleanUpUrlable = function(input) {
|
|||||||
return cleaned;
|
return cleaned;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
module.exports.isTestDomain = function() {
|
module.exports.isTestDomain = function() {
|
||||||
|
|
||||||
if ((/^localhost/).test(window.location.hostname))
|
if ((/^localhost/).test(window.location.hostname))
|
||||||
@@ -841,3 +839,12 @@ 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() {
|
||||||
|
var windowLocationOrigin = window.location.origin;
|
||||||
|
if (!windowLocationOrigin) {
|
||||||
|
windowLocationOrigin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '');
|
||||||
|
}
|
||||||
|
return windowLocationOrigin;
|
||||||
|
};
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user