Fix object loading yet again

This commit is contained in:
kangax 2013-09-24 18:34:32 +02:00
parent 15a6a3c3df
commit 7e9e27aba5
8 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
/*! Fabric.js Copyright 2008-2013, Printio (Juriy Zaytsev, Maxim Chernyak) */
var fabric = fabric || { version: "1.3.3" };
var fabric = fabric || { version: "1.3.4" };
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.3.3",
"version": "1.3.4",
"keywords": ["canvas", "graphic", "graphics", "SVG", "node-canvas", "parser", "HTML5", "object model"],
"dependencies": {},
"development": {},

4
dist/all.js vendored
View file

@ -1,7 +1,7 @@
/* build: `node build.js modules=ALL exclude=gestures` */
/*! Fabric.js Copyright 2008-2013, Printio (Juriy Zaytsev, Maxim Chernyak) */
var fabric = fabric || { version: "1.3.3" };
var fabric = fabric || { version: "1.3.4" };
if (typeof exports !== 'undefined') {
exports.fabric = fabric;
}
@ -2208,7 +2208,7 @@ fabric.Collection = {
objects.forEach(function (o, index) {
// if sparse array
if (!o || !o.type) {
numLoadedObjects++;
onLoaded();
return;
}
var klass = fabric.util.getKlass(o.type, namespace);

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.

4
dist/all.require.js vendored
View file

@ -1,7 +1,7 @@
/* build: `node build.js modules=ALL exclude=gestures` */
/*! Fabric.js Copyright 2008-2013, Printio (Juriy Zaytsev, Maxim Chernyak) */
var fabric = fabric || { version: "1.3.3" };
var fabric = fabric || { version: "1.3.4" };
if (typeof exports !== 'undefined') {
exports.fabric = fabric;
}
@ -2208,7 +2208,7 @@ fabric.Collection = {
objects.forEach(function (o, index) {
// if sparse array
if (!o || !o.type) {
numLoadedObjects++;
onLoaded();
return;
}
var klass = fabric.util.getKlass(o.type, namespace);

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.3.3",
"version": "1.3.4",
"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

@ -184,7 +184,7 @@
objects.forEach(function (o, index) {
// if sparse array
if (!o || !o.type) {
numLoadedObjects++;
onLoaded();
return;
}
var klass = fabric.util.getKlass(o.type, namespace);