mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-04-06 15:30:59 +00:00
Version 1.4.3
This commit is contained in:
parent
e6f4694bf8
commit
f1aef7ed1a
8 changed files with 28 additions and 10 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
8
dist/fabric.js
vendored
|
|
@ -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
10
dist/fabric.min.js
vendored
File diff suppressed because one or more lines are too long
BIN
dist/fabric.min.js.gz
vendored
BIN
dist/fabric.min.js.gz
vendored
Binary file not shown.
8
dist/fabric.require.js
vendored
8
dist/fabric.require.js
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@
|
|||
*/
|
||||
type: 'line',
|
||||
|
||||
x1: 0,
|
||||
y1: 0,
|
||||
|
||||
x2: 0,
|
||||
y2: 0,
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @param {Array} [points] Array of points
|
||||
|
|
|
|||
Loading…
Reference in a new issue