Version 1.4.3

This commit is contained in:
kangax 2014-01-18 12:01:19 -05:00
parent e6f4694bf8
commit f1aef7ed1a
8 changed files with 28 additions and 10 deletions

View file

@ -1,6 +1,6 @@
/*! Fabric.js Copyright 2008-2013, Printio (Juriy Zaytsev, Maxim Chernyak) */
var fabric = fabric || { version: "1.4.2" };
var fabric = fabric || { version: "1.4.3" };
if (typeof exports !== 'undefined') {
exports.fabric = fabric;
}

View file

@ -2,7 +2,7 @@
"name": "fabric.js",
"repo": "kangax/fabric.js",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
"version": "1.4.2",
"version": "1.4.3",
"keywords": ["canvas", "graphic", "graphics", "SVG", "node-canvas", "parser", "HTML5", "object model"],
"dependencies": {},
"development": {},

8
dist/fabric.js vendored
View file

@ -1,7 +1,7 @@
/* build: `node build.js modules=ALL exclude=gestures,cufon,json minifier=uglifyjs` */
/*! Fabric.js Copyright 2008-2013, Printio (Juriy Zaytsev, Maxim Chernyak) */
var fabric = fabric || { version: "1.4.2" };
var fabric = fabric || { version: "1.4.3" };
if (typeof exports !== 'undefined') {
exports.fabric = fabric;
}
@ -12586,6 +12586,12 @@ fabric.util.object.extend(fabric.Object.prototype, /** @lends fabric.Object.prot
*/
type: 'line',
x1: 0,
y1: 0,
x2: 0,
y2: 0,
/**
* Constructor
* @param {Array} [points] Array of points

10
dist/fabric.min.js vendored

File diff suppressed because one or more lines are too long

BIN
dist/fabric.min.js.gz vendored

Binary file not shown.

View file

@ -1,7 +1,7 @@
/* build: `node build.js modules=ALL exclude=gestures,cufon,json minifier=uglifyjs` */
/*! Fabric.js Copyright 2008-2013, Printio (Juriy Zaytsev, Maxim Chernyak) */
var fabric = fabric || { version: "1.4.2" };
var fabric = fabric || { version: "1.4.3" };
if (typeof exports !== 'undefined') {
exports.fabric = fabric;
}
@ -12586,6 +12586,12 @@ fabric.util.object.extend(fabric.Object.prototype, /** @lends fabric.Object.prot
*/
type: 'line',
x1: 0,
y1: 0,
x2: 0,
y2: 0,
/**
* Constructor
* @param {Array} [points] Array of points

View file

@ -1,7 +1,7 @@
{
"name": "fabric",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
"version": "1.4.2",
"version": "1.4.3",
"author": "Juriy Zaytsev <kangax@gmail.com>",
"keywords": ["canvas", "graphic", "graphics", "SVG", "node-canvas", "parser", "HTML5", "object model"],
"repository": "git://github.com/kangax/fabric.js",

View file

@ -27,6 +27,12 @@
*/
type: 'line',
x1: 0,
y1: 0,
x2: 0,
y2: 0,
/**
* Constructor
* @param {Array} [points] Array of points