Skip to content

Commit

Permalink
Fixed minfied build
Browse files Browse the repository at this point in the history
  • Loading branch information
gfranko committed Sep 25, 2014
1 parent 6e8ab14 commit f9b82b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var gulp = require('gulp'),
'amdclean': {
// Will not transform conditional AMD checks - Libraries use this to provide optional AMD support
'transformAMDChecks': false,
'aggressiveOptimizations': true,
'aggressiveOptimizations': false,
'createAnonymousAMDModule': true,
'prefixTransform': function(moduleName) {
return moduleName.substring(moduleName.indexOf('_') + 1, moduleName.length);
Expand Down
2 changes: 1 addition & 1 deletion src/modules/core/AnimatedGIF.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ define([
},
'workerMethods': frameWorkerCode(),
'initializeWebWorkers': function(options) {
var processFrameWorkerCode = NeuQuant.toString() + frameWorkerCode.toString() + 'worker();',
var processFrameWorkerCode = NeuQuant.toString() + '(' + frameWorkerCode.toString() + '());',
webWorkerObj,
objectUrl,
webWorker,
Expand Down

0 comments on commit f9b82b1

Please sign in to comment.