Changed text when previewing an image from Downloading to Previewing

Этот коммит содержится в:
Reed Garmsen
2015-06-16 10:50:42 -07:00
родитель a7ed61ef90
Коммит 375e268d00

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

@@ -124,7 +124,7 @@ module.exports = React.createClass({
<div key={name+"_loading"}> <div key={name+"_loading"}>
<img ref="placeholder" className="loader-image" src="/static/images/load.gif" /> <img ref="placeholder" className="loader-image" src="/static/images/load.gif" />
{ percentage > 0 ? { percentage > 0 ?
<span className="loader-percent" >{"Downloading " + percentage + "%"}</span> <span className="loader-percent" >{"Previewing " + percentage + "%"}</span>
: ""} : ""}
</div> </div>
); );