Skip to content

Commit

Permalink
Ditch o3-xml-fork for now (it fails even on node 0.4.x) when parsing …
Browse files Browse the repository at this point in the history
…SVG.
  • Loading branch information
kangax committed Feb 15, 2012
1 parent 2ab05fd commit feaddda
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ site/
src/
lib/
.DS_Store
HEADER.js
start_server.js
build_docs.js
build.js
2 changes: 1 addition & 1 deletion HEADER.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! Fabric.js Copyright 2008-2012, Bitsonnet (Juriy Zaytsev, Maxim Chernyak) */

var fabric = fabric || { version: "0.7.23" };
var fabric = fabric || { version: "0.7.24" };

if (typeof exports != 'undefined') {
exports.fabric = fabric;
Expand Down
4 changes: 2 additions & 2 deletions dist/all.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! Fabric.js Copyright 2008-2012, Bitsonnet (Juriy Zaytsev, Maxim Chernyak) */

var fabric = fabric || { version: "0.7.23" };
var fabric = fabric || { version: "0.7.24" };

if (typeof exports != 'undefined') {
exports.fabric = fabric;
Expand Down Expand Up @@ -11943,7 +11943,7 @@ fabric.Image.filters.Invert.fromObject = function() {
return;
}

var XML = require('o3-xml-fork'),
var XML = require('o3-xml'),
URL = require('url'),
HTTP = require('http'),

Expand Down
4 changes: 2 additions & 2 deletions dist/all.min.js

Large diffs are not rendered by default.

Binary file modified dist/all.min.js.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fabric",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
"version": "0.7.23",
"version": "0.7.24",
"author": "Juriy Zaytsev <kangax@gmail.com>",
"keywords": ["canvas", "graphic", "graphics", "SVG", "node-canvas", "parser", "HTML5", "object model"],
"repository": "git://github.com/kangax/fabric.js",
Expand All @@ -15,7 +15,7 @@
"dependencies": {
"canvas": ">=0.8.1",
"jsdom": ">=0.2.3",
"o3-xml-fork": "0.1.0"
"o3-xml": "0.1.0"
},
"engines": { "node": ">= 0.4.0 && <= 0.6.8" },
"main": "./dist/all.js"
Expand Down
2 changes: 1 addition & 1 deletion src/fabric_node.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
return;
}

var XML = require('o3-xml-fork'),
var XML = require('o3-xml'),
URL = require('url'),
HTTP = require('http'),

Expand Down

0 comments on commit feaddda

Please sign in to comment.