fix click through on the image viewer modal to work with new team domain changes

Этот коммит содержится в:
JoramWilander
2015-07-21 19:29:40 -04:00
родитель b821d23ed7
Коммит 5886e695e4

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

@@ -155,7 +155,7 @@ module.exports = React.createClass({
var imgClass = "hidden";
if (this.state.loaded[id] && this.state.imgId == id) imgClass = "";
img[info['path']] = <a key={info['path']} className={imgClass} href={this.props.filenames[id]} target="_blank"><img ref="image" src={preview_filename}/></a>;
img[info['path']] = <a key={info['path']} className={imgClass} href={info.path+"."+info.ext} target="_blank"><img ref="image" src={preview_filename}/></a>;
}
}