Update uglyfyjs, build distribution

This commit is contained in:
kangax 2013-01-21 21:14:51 +01:00
parent c2c1324a37
commit e262606eee
4 changed files with 7 additions and 2 deletions

5
dist/all.js vendored
View file

@ -16020,6 +16020,10 @@ fabric.Image.filters.Pixelate.fromObject = function(object) {
return this.nodeCanvas.createPNGStream();
};
fabric.StaticCanvas.prototype.createJPEGStream = function(opts) {
return this.nodeCanvas.createJPEGStream(opts);
};
var origSetWidth = fabric.StaticCanvas.prototype.setWidth;
fabric.StaticCanvas.prototype.setWidth = function(width) {
origSetWidth.call(this);
@ -16041,3 +16045,4 @@ fabric.Image.filters.Pixelate.fromObject = function(object) {
}
})();

2
dist/all.min.js vendored

File diff suppressed because one or more lines are too long

BIN
dist/all.min.js.gz vendored

Binary file not shown.

View file

@ -21,7 +21,7 @@
"devDependencies": {
"qunit": "0.5.x",
"jshint": "0.9.x",
"uglify-js": "1.3.x"
"uglify-js": ">=2.0.0"
},
"engines": { "node": ">=0.4.0 && <1.0.0" },
"main": "./dist/all.js"