Better error checking along with other fixes

Этот коммит содержится в:
Reed Garmsen
2015-08-13 15:44:38 -07:00
родитель 912ca8e8dd
Коммит 6f68c508ee
4 изменённых файлов: 38 добавлений и 31 удалений

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

@@ -2,15 +2,15 @@
// See License.txt for license information.
module.exports = React.createClass({
displayName: 'FileUploadOverlay',
render: function() {
return (
<div className='center-file-overlay invisible'>
<div>
<i className='fa fa-upload'></i>
<span>Drop a file to upload it.</span>
</div>
</div>
);
}
displayName: 'FileUploadOverlay',
render: function() {
return (
<div className='file-overlay center-file-overlay invisible'>
<div>
<i className='fa fa-upload'></i>
<span>Drop a file to upload it.</span>
</div>
</div>
);
}
});