Skip to content

Commit 60af92a

Browse files
committed
Version 1.0.2
1 parent 45f5acb commit 60af92a

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
src/
22
lib/
3+
dist/all.min.js
4+
dist/all.min.js.gz
35
.DS_Store
46
HEADER.js
5-
build_docs.js
67
build.js

HEADER.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*! Fabric.js Copyright 2008-2012, Printio (Juriy Zaytsev, Maxim Chernyak) */
22

3-
var fabric = fabric || { version: "1.0.1" };
3+
var fabric = fabric || { version: "1.0.2" };
44

55
if (typeof exports !== 'undefined') {
66
exports.fabric = fabric;

dist/all.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* build: `node build.js modules=ALL exclude=gestures` */
22
/*! Fabric.js Copyright 2008-2012, Printio (Juriy Zaytsev, Maxim Chernyak) */
33

4-
var fabric = fabric || { version: "1.0.1" };
4+
var fabric = fabric || { version: "1.0.2" };
55

66
if (typeof exports !== 'undefined') {
77
exports.fabric = fabric;
@@ -8049,7 +8049,8 @@ fabric.util.string = {
80498049

80508050
if (this.controlsAboveOverlay &&
80518051
this.lastRenderedObjectWithControlsAboveOverlay &&
8052-
this.containsPoint(e, this.lastRenderedObjectWithControlsAboveOverlay)) {
8052+
this.containsPoint(e, this.lastRenderedObjectWithControlsAboveOverlay) &&
8053+
this.lastRenderedObjectWithControlsAboveOverlay._findTargetCorner(e, this._offset)) {
80538054
target = this.lastRenderedObjectWithControlsAboveOverlay;
80548055
return target;
80558056
}
@@ -8373,6 +8374,7 @@ fabric.util.string = {
83738374
*/
83748375
fabric.Element = fabric.Canvas;
83758376
})();
8377+
83768378
fabric.util.object.extend(fabric.StaticCanvas.prototype, {
83778379

83788380
/**

dist/all.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/all.min.js.gz

15 Bytes
Binary file not shown.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric",
33
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"author": "Juriy Zaytsev <[email protected]>",
66
"keywords": ["canvas", "graphic", "graphics", "SVG", "node-canvas", "parser", "HTML5", "object model"],
77
"repository": "git://github.com/kangax/fabric.js",
@@ -10,7 +10,7 @@
1010
"url": "http://github.com/kangax/fabric.js/raw/master/LICENSE"
1111
}],
1212
"scripts": {
13-
"build": "node build.js modules=ALL exclude=json,cufon",
13+
"build": "node build.js modules=ALL exclude=json,cufon,gestures",
1414
"test": "node test.js"
1515
},
1616
"dependencies": {
@@ -23,6 +23,6 @@
2323
"jshint": "0.9.x",
2424
"uglify-js": "1.3.x"
2525
},
26-
"engines": { "node": ">=0.4.0 && <0.9.0" },
26+
"engines": { "node": ">=0.4.0 && <1.0.0" },
2727
"main": "./dist/all.js"
2828
}

0 commit comments

Comments
 (0)