Version 1.5.0

This commit is contained in:
kangax 2015-04-14 18:40:50 +02:00
parent a51e110f9e
commit 0e0816aca5
8 changed files with 573 additions and 655 deletions

View file

@ -1,7 +1,6 @@
{
"globals": {
"ActiveXObject": true,
"Cufon": true,
"define": true,
"eventjs": true,
"exports": true,

View file

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

View file

@ -3,7 +3,6 @@ var fs = require('fs'),
var modules = [
'text',
'cufon',
'gestures',
'easing',
'parser',

602
dist/fabric.js vendored

File diff suppressed because it is too large Load diff

14
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.

604
dist/fabric.require.js vendored

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
"name": "fabric",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
"homepage": "http://fabricjs.com/",
"version": "1.4.13",
"version": "1.5.0",
"author": "Juriy Zaytsev <kangax@gmail.com>",
"keywords": [
"canvas",
@ -29,7 +29,7 @@
},
"license": "MIT",
"scripts": {
"build": "node build.js modules=ALL exclude=json,cufon,gestures",
"build": "node build.js modules=ALL exclude=json,gestures",
"test": "node test.js && jshint src"
},
"dependencies": {