mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
fix minification bug
This commit is contained in:
parent
acbfd8c840
commit
27c4e588ef
@ -184,8 +184,8 @@ function bundle(watch) {
|
||||
.on('error', notify.onError('Error: <%= error.message %>'))
|
||||
.pipe(gulpif(!argv.production, sourcemaps.write())) // writes .map file
|
||||
.on('error', notify.onError('Error: <%= error.message %>'))
|
||||
//.pipe(gulpif(argv.production, uglify()))
|
||||
//.on('error', notify.onError('Error: <%= error.message %>'))
|
||||
.pipe(gulpif(argv.production, uglify()))
|
||||
.on('error', notify.onError('Error: <%= error.message %>'))
|
||||
.pipe(gulp.dest('./build/js'))
|
||||
.on('error', notify.onError('Error: <%= error.message %>'))
|
||||
.pipe(browserSync.stream())
|
||||
|
@ -199,7 +199,7 @@ var ReactS3FineUploader = React.createClass({
|
||||
let defer = new fineUploader.Promise();
|
||||
let filename = this.state.uploader.getName(fileId);
|
||||
|
||||
fetch(this.props.keyRoutine.url, {
|
||||
window.fetch(this.props.keyRoutine.url, {
|
||||
method: 'post',
|
||||
headers: {
|
||||
'Accept': 'application/json',
|
||||
@ -228,7 +228,7 @@ var ReactS3FineUploader = React.createClass({
|
||||
|
||||
createBlob(file) {
|
||||
let defer = new fineUploader.Promise();
|
||||
fetch(this.props.createBlobRoutine.url, {
|
||||
window.fetch(this.props.createBlobRoutine.url, {
|
||||
method: 'post',
|
||||
headers: {
|
||||
'Accept': 'application/json',
|
||||
|
Loading…
Reference in New Issue
Block a user