Reverting erroneous fix
This commit is contained in:
parent
2cd46661e5
commit
e5048b7f81
File diff suppressed because one or more lines are too long
|
|
@ -1,10 +1,11 @@
|
|||
// ??????????????????????????????????????????????????????????????????????? \\
|
||||
// ? "Raphaël 2.1.0" - JavaScript Vector Library ? \\
|
||||
// ??????????????????????????????????????????????????????????????????????? \\
|
||||
// ? Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) ? \\
|
||||
// ? Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) ? \\
|
||||
// ? Licensed under the MIT (http://raphaeljs.com/license.html) license. ? \\
|
||||
// ??????????????????????????????????????????????????????????????????????? \\
|
||||
// ┌─────────────────────────────────────────────────────────────────────┐ \\
|
||||
// │ "Raphaël 2.1.0" - JavaScript Vector Library │ \\
|
||||
// ├─────────────────────────────────────────────────────────────────────┤ \\
|
||||
// │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
|
||||
// │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) │ \\
|
||||
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
|
||||
// └─────────────────────────────────────────────────────────────────────┘ \\
|
||||
|
||||
(function (glob, factory) {
|
||||
// AMD support
|
||||
if (typeof define === "function" && define.amd) {
|
||||
|
|
@ -819,7 +820,7 @@
|
|||
return {h: H, s: S, l: L, toString: hsltoString};
|
||||
};
|
||||
R._path2string = function () {
|
||||
return Array.prototype.join(",").replace(p2s, "$1");
|
||||
return this.join(",").replace(p2s, "$1");
|
||||
};
|
||||
function repush(array, item) {
|
||||
for (var i = 0, ii = array.length; i < ii; i++) if (array[i] === item) {
|
||||
|
|
|
|||
17
raphael.js
17
raphael.js
|
|
@ -377,13 +377,14 @@
|
|||
};
|
||||
(typeof module != "undefined" && module.exports) ? (module.exports = eve) : (typeof define != "undefined" ? (define("eve", [], function() { return eve; })) : (glob.eve = eve));
|
||||
})(this);
|
||||
// ??????????????????????????????????????????????????????????????????????? \\
|
||||
// ? "Raphaël 2.1.0" - JavaScript Vector Library ? \\
|
||||
// ??????????????????????????????????????????????????????????????????????? \\
|
||||
// ? Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) ? \\
|
||||
// ? Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) ? \\
|
||||
// ? Licensed under the MIT (http://raphaeljs.com/license.html) license. ? \\
|
||||
// ??????????????????????????????????????????????????????????????????????? \\
|
||||
// ┌─────────────────────────────────────────────────────────────────────┐ \\
|
||||
// │ "Raphaël 2.1.0" - JavaScript Vector Library │ \\
|
||||
// ├─────────────────────────────────────────────────────────────────────┤ \\
|
||||
// │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
|
||||
// │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) │ \\
|
||||
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
|
||||
// └─────────────────────────────────────────────────────────────────────┘ \\
|
||||
|
||||
(function (glob, factory) {
|
||||
// AMD support
|
||||
if (typeof define === "function" && define.amd) {
|
||||
|
|
@ -1198,7 +1199,7 @@
|
|||
return {h: H, s: S, l: L, toString: hsltoString};
|
||||
};
|
||||
R._path2string = function () {
|
||||
return Array.prototype.join(",").replace(p2s, "$1");
|
||||
return this.join(",").replace(p2s, "$1");
|
||||
};
|
||||
function repush(array, item) {
|
||||
for (var i = 0, ii = array.length; i < ii; i++) if (array[i] === item) {
|
||||
|
|
|
|||
|
|
@ -8,10 +8,10 @@
|
|||
|
||||
<!-- Remember to run to pull the eve submodule -->
|
||||
<!-- To work with concatenated version -->
|
||||
<!--<script type="text/javascript" src="../raphael.js"></script>-->
|
||||
<!--<script type="text/javascript" src="raphael.js"></script>-->
|
||||
|
||||
<!-- To work with minified version -->
|
||||
<!--<script type="text/javascript" src="../raphael-min.js"></script>-->
|
||||
<!--<script type="text/javascript" src="raphael-min.js"></script>-->
|
||||
|
||||
<!-- To work with dev versions -->
|
||||
<script type="text/javascript" src=" ./eve/eve.js"></script>
|
||||
|
|
|
|||
Loading…
Reference in New Issue