Build distribution.

This commit is contained in:
kangax 2012-06-10 11:35:24 +02:00
parent 787bb86198
commit 1da65cbead
3 changed files with 8 additions and 8 deletions

12
dist/all.js vendored
View file

@ -1,6 +1,6 @@
/*! Fabric.js Copyright 2008-2012, Bitsonnet (Juriy Zaytsev, Maxim Chernyak) */
var fabric = fabric || { version: "0.8.15" };
var fabric = fabric || { version: "0.8.16" };
if (typeof exports != 'undefined') {
exports.fabric = fabric;
@ -2240,11 +2240,11 @@ function capitalize(string) {
}
function escapeXml(string) {
return string.replace('&', '&')
.replace('"', '"')
.replace("'", ''')
.replace("<", '&lt;')
.replace(">", '&gt;');
return string.replace(/&/g, '&amp;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&apos;')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;');
}
/** @namespace */

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