Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
殷洪(管理员)
/
raphael
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7fd4df74
authored
Jun 01, 2015
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Requirejs and global working
parent
d6b6f769
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
263 additions
and
206 deletions
+263
-206
Gruntfile.js
+2
-2
bower.json
+3
-0
dev/amdDev.js
+1
-1
dev/index.js
+0
-9
dev/raphael.amd.js
+3
-3
dev/raphael.core.js
+3
-3
dev/raphael.svg.js
+3
-3
dev/raphael.vml.js
+2
-2
dev/raphaelTest.html
+10
-11
dev/require.js
+157
-127
raphael-min.js
+0
-0
raphael.js
+79
-45
No files found.
Gruntfile.js
View file @
7fd4df74
...
@@ -16,7 +16,7 @@ module.exports = function(grunt) {
...
@@ -16,7 +16,7 @@ module.exports = function(grunt) {
},
},
dist
:
{
dist
:
{
src
:
"<%= concat.dist.dest %>"
,
src
:
"<%= concat.dist.dest %>"
,
dest
:
"
dev/
raphael-min.js"
dest
:
"raphael-min.js"
}
}
},
},
replace
:
{
replace
:
{
...
@@ -39,7 +39,7 @@ module.exports = function(grunt) {
...
@@ -39,7 +39,7 @@ module.exports = function(grunt) {
dist
:
{
dist
:
{
dest
:
"<%= pkg.name %>.js"
,
dest
:
"<%= pkg.name %>.js"
,
src
:
[
src
:
[
"
../
node_modules/eve/eve.js"
,
"node_modules/eve/eve.js"
,
"dev/raphael.core.js"
,
"dev/raphael.core.js"
,
"dev/raphael.svg.js"
,
"dev/raphael.svg.js"
,
"dev/raphael.vml.js"
,
"dev/raphael.vml.js"
,
...
...
bower.json
View file @
7fd4df74
...
@@ -5,6 +5,9 @@
...
@@ -5,6 +5,9 @@
"dependencies"
:
{
"dependencies"
:
{
"eve"
:
"git://github.com/adobe-webplatform/eve.git#eef80ed"
"eve"
:
"git://github.com/adobe-webplatform/eve.git#eef80ed"
},
},
"devDependencies"
:
{
"requirejs"
:
"~2.1.17"
},
"ignore"
:
[
"ignore"
:
[
"eve"
,
"eve"
,
"**/.*"
,
"**/.*"
,
...
...
dev/amdDev.js
View file @
7fd4df74
...
@@ -8,7 +8,7 @@ require.config({
...
@@ -8,7 +8,7 @@ require.config({
require
([
'raphael'
],
function
(
Raphael
)
{
require
([
'raphael'
],
function
(
Raphael
)
{
var
paper
=
Raphael
(
0
,
0
,
640
,
720
,
"container"
);
var
paper
=
Raphael
(
0
,
0
,
640
,
720
,
"container"
);
//
paper.circle(100, 100, 100); //example
paper
.
circle
(
100
,
100
,
100
);
//example
// Work here
// Work here
});
});
dev/index.js
deleted
100644 → 0
View file @
d6b6f769
var
core
=
require
(
'./raphael.core'
);
if
(
core
.
svg
){
require
(
'./raphael.svg'
);
}
if
(
core
.
vml
){
require
(
'./raphael.vml'
);
}
module
.
exports
=
core
;
\ No newline at end of file
dev/raphael.amd.js
View file @
7fd4df74
// ┌────────────────────────────────────────────────────────────────────┐ \\
// ┌────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël @
VERSION - JavaScript Vector Library
│ \\
// │ Raphaël @
@VERSION - JavaScript Vector Library
│ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
(
function
(
glob
,
factory
)
{
(
function
(
glob
,
factory
)
{
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
define
(
"raphael"
,
[
"raphael.core"
,
"raphael.svg"
,
"raphael.vml"
],
function
(
Raphael
)
{
define
(
"raphael"
,
[
"raphael.core"
,
"raphael.svg"
,
"raphael.vml"
],
function
(
Raphael
)
{
return
(
glob
.
Raphael
=
factory
(
Raphael
)
);
return
factory
(
Raphael
);
});
});
}
else
if
(
typeof
exports
===
"object"
)
{
}
else
if
(
typeof
exports
===
"object"
)
{
var
raphael
=
require
(
"raphael.core"
);
var
raphael
=
require
(
"raphael.core"
);
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
module
.
exports
=
factory
(
raphael
);
module
.
exports
=
factory
(
raphael
);
}
else
{
}
else
{
glob
.
Raphael
=
factory
(
glob
.
Raphael
);
//
glob.Raphael = factory(glob.Raphael);
}
}
}(
this
,
function
(
Raphael
)
{
}(
this
,
function
(
Raphael
)
{
return
Raphael
.
ninja
();
return
Raphael
.
ninja
();
...
...
dev/raphael.core.js
View file @
7fd4df74
// ┌────────────────────────────────────────────────────────────────────┐ \\
// ┌────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël @@VERSION - JavaScript Vector Library
│ \\
// │ Raphaël @@VERSION - JavaScript Vector Library │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// │ Core Module
│ \\
// │ Core Module │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license.│ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license.│ \\
// └────────────────────────────────────────────────────────────────────┘ \\
// └────────────────────────────────────────────────────────────────────┘ \\
...
@@ -5354,7 +5354,7 @@
...
@@ -5354,7 +5354,7 @@
[ method ]
[ method ]
**
**
* If you want to leave no trace of Raphaël (Well, Raphaël creates only one global variable `Raphael`, but anyway.) You can use `ninja` method.
* If you want to leave no trace of Raphaël (Well, Raphaël creates only one global variable `Raphael`, but anyway.) You can use `ninja` method.
* Beware, that in this case plugins could stop working, because they are depending on global variable exist
a
nce.
* Beware, that in this case plugins could stop working, because they are depending on global variable exist
e
nce.
**
**
= (object) Raphael object
= (object) Raphael object
> Usage
> Usage
...
...
dev/raphael.svg.js
View file @
7fd4df74
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël @@VERSION - JavaScript Vector Library
│ \\
// │ Raphaël @@VERSION - JavaScript Vector Library │ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// │ SVG Module │ \\
// │ SVG Module │ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
(
function
(
glob
,
factory
)
{
(
function
(
glob
,
factory
)
{
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
define
(
"raphael.svg"
,
[
"raphael.core"
],
function
(
raphael
)
{
define
(
"raphael.svg"
,
[
"raphael.core"
],
function
(
raphael
)
{
factory
(
raphael
);
return
factory
(
raphael
);
});
});
}
else
if
(
typeof
exports
===
"object"
)
{
}
else
if
(
typeof
exports
===
"object"
)
{
factory
(
require
(
"raphael.core"
));
factory
(
require
(
"raphael.core"
));
...
@@ -657,7 +657,7 @@
...
@@ -657,7 +657,7 @@
* Element.id
* Element.id
[ property (number) ]
[ property (number) ]
**
**
* Unique id of the element. Especially use
s
ful when you want to listen to events of the element,
* Unique id of the element. Especially useful when you want to listen to events of the element,
* because all events are fired in format `<module>.<action>.<id>`. Also useful for @Paper.getById method.
* because all events are fired in format `<module>.<action>.<id>`. Also useful for @Paper.getById method.
\*/
\*/
this
.
id
=
R
.
_oid
++
;
this
.
id
=
R
.
_oid
++
;
...
...
dev/raphael.vml.js
View file @
7fd4df74
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël @@VERSION - JavaScript Vector Library
│ \\
// │ Raphaël @@VERSION - JavaScript Vector Library │ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// │ VML Module │ \\
// │ VML Module │ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
(
function
(
glob
,
factory
)
{
(
function
(
glob
,
factory
)
{
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
define
(
"raphael.vml"
,
[
"raphael.core"
],
function
(
raphael
)
{
define
(
"raphael.vml"
,
[
"raphael.core"
],
function
(
raphael
)
{
factory
(
raphael
);
return
factory
(
raphael
);
});
});
}
else
if
(
typeof
exports
===
"object"
)
{
}
else
if
(
typeof
exports
===
"object"
)
{
factory
(
require
(
"raphael"
));
factory
(
require
(
"raphael"
));
...
...
dev/raphaelTest.html
View file @
7fd4df74
...
@@ -6,8 +6,7 @@
...
@@ -6,8 +6,7 @@
<!-- Global use -->
<!-- Global use -->
<!-- Remember to run to pull the eve submodule -->
<!-- To work with full version -->
<!-- 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 -->
<!-- To work with minified version -->
...
@@ -15,24 +14,24 @@
...
@@ -15,24 +14,24 @@
<!-- To work with dev versions -->
<!-- To work with dev versions -->
<!-- Comment this 4 script tags if you are testing with AMD -->
<!-- Comment this 4 script tags if you are testing with AMD -->
<
script
type=
"text/javascript"
src=
"../eve/eve.js"
></script
>
<
!--<script type="text/javascript" src="../node_modules/eve/eve.js"></script>--
>
<
script
type=
"text/javascript"
src=
"raphael.core.js"
></script
>
<
!--<script type="text/javascript" src="raphael.core.js"></script>--
>
<
script
type=
"text/javascript"
src=
"raphael.svg.js"
></script
>
<
!--<script type="text/javascript" src="raphael.svg.js"></script>--
>
<
script
type=
"text/javascript"
src=
"raphael.vml.js"
></script
>
<
!--<script type="text/javascript" src="raphael.vml.js"></script>--
>
<
script
type=
"text/javascript"
src=
"raphael.amd.js"
></script
>
<
!--<script type="text/javascript" src="raphael.amd.js"></script>--
>
<!-- Comment this script tag if you are testing with AMD -->
<!-- Comment this script tag if you are testing with AMD -->
<script
type=
"text/javascript"
>
<
!--<
script type="text/javascript">
// Initialize container when document is loaded
// Initialize container when document is loaded
window.onload = function () {
window.onload = function () {
paper = Raphael(0, 0, 640, 720, "container");
paper = Raphael(0, 0, 640, 720, "container");
//
paper.circle(100, 100, 100); //example
paper.circle(100, 100, 100); //example
};
};
//Work here, in a separate script file or via command line
//Work here, in a separate script file or via command line
</script>
</script>
-->
<!-- AMD use -->
<!-- AMD use -->
<
!--<script data-main="amdDev" src="require.js"></script>--
>
<
script
data-main=
"amdDev"
src=
"require.js"
></script
>
<!-- Use amdDev.js to work with AMD and Raphael -->
<!-- Use amdDev.js to work with AMD and Raphael -->
</head>
</head>
...
...
dev/require.js
View file @
7fd4df74
/** vim: et:ts=4:sw=4:sts=4
/** vim: et:ts=4:sw=4:sts=4
* @license RequireJS 2.1.
8 Copyright (c) 2010-2012
, The Dojo Foundation All Rights Reserved.
* @license RequireJS 2.1.
17 Copyright (c) 2010-2015
, The Dojo Foundation All Rights Reserved.
* Available via the MIT or new BSD license.
* Available via the MIT or new BSD license.
* see: http://github.com/jrburke/requirejs for details
* see: http://github.com/jrburke/requirejs for details
*/
*/
...
@@ -12,7 +12,7 @@ var requirejs, require, define;
...
@@ -12,7 +12,7 @@ var requirejs, require, define;
(
function
(
global
)
{
(
function
(
global
)
{
var
req
,
s
,
head
,
baseElement
,
dataMain
,
src
,
var
req
,
s
,
head
,
baseElement
,
dataMain
,
src
,
interactiveScript
,
currentlyAddingScript
,
mainScript
,
subPath
,
interactiveScript
,
currentlyAddingScript
,
mainScript
,
subPath
,
version
=
'2.1.
8
'
,
version
=
'2.1.
17
'
,
commentRegExp
=
/
(\/\*([\s\S]
*
?)\*\/
|
([^
:
]
|^
)\/\/(
.*
)
$
)
/mg
,
commentRegExp
=
/
(\/\*([\s\S]
*
?)\*\/
|
([^
:
]
|^
)\/\/(
.*
)
$
)
/mg
,
cjsRequireRegExp
=
/
[^
.
]\s
*require
\s
*
\(\s
*
[
"'
]([^
'"
\s]
+
)[
"'
]\s
*
\)
/g
,
cjsRequireRegExp
=
/
[^
.
]\s
*require
\s
*
\(\s
*
[
"'
]([^
'"
\s]
+
)[
"'
]\s
*
\)
/g
,
jsSuffixRegExp
=
/
\.
js$/
,
jsSuffixRegExp
=
/
\.
js$/
,
...
@@ -22,7 +22,7 @@ var requirejs, require, define;
...
@@ -22,7 +22,7 @@ var requirejs, require, define;
hasOwn
=
op
.
hasOwnProperty
,
hasOwn
=
op
.
hasOwnProperty
,
ap
=
Array
.
prototype
,
ap
=
Array
.
prototype
,
apsp
=
ap
.
splice
,
apsp
=
ap
.
splice
,
isBrowser
=
!!
(
typeof
window
!==
'undefined'
&&
navigator
&&
window
.
document
),
isBrowser
=
!!
(
typeof
window
!==
'undefined'
&&
typeof
navigator
!==
'undefined'
&&
window
.
document
),
isWebWorker
=
!
isBrowser
&&
typeof
importScripts
!==
'undefined'
,
isWebWorker
=
!
isBrowser
&&
typeof
importScripts
!==
'undefined'
,
//PS3 indicates loaded and complete, but need to wait for complete
//PS3 indicates loaded and complete, but need to wait for complete
//specifically. Sequence is 'loading', 'loaded', execution,
//specifically. Sequence is 'loading', 'loaded', execution,
...
@@ -108,7 +108,10 @@ var requirejs, require, define;
...
@@ -108,7 +108,10 @@ var requirejs, require, define;
if
(
source
)
{
if
(
source
)
{
eachProp
(
source
,
function
(
value
,
prop
)
{
eachProp
(
source
,
function
(
value
,
prop
)
{
if
(
force
||
!
hasProp
(
target
,
prop
))
{
if
(
force
||
!
hasProp
(
target
,
prop
))
{
if
(
deepStringMixin
&&
typeof
value
!==
'string'
)
{
if
(
deepStringMixin
&&
typeof
value
===
'object'
&&
value
&&
!
isArray
(
value
)
&&
!
isFunction
(
value
)
&&
!
(
value
instanceof
RegExp
))
{
if
(
!
target
[
prop
])
{
if
(
!
target
[
prop
])
{
target
[
prop
]
=
{};
target
[
prop
]
=
{};
}
}
...
@@ -138,7 +141,7 @@ var requirejs, require, define;
...
@@ -138,7 +141,7 @@ var requirejs, require, define;
throw
err
;
throw
err
;
}
}
//Allow getting a global that expressed in
//Allow getting a global that
is
expressed in
//dot notation, like 'a.b.c'.
//dot notation, like 'a.b.c'.
function
getGlobal
(
value
)
{
function
getGlobal
(
value
)
{
if
(
!
value
)
{
if
(
!
value
)
{
...
@@ -177,7 +180,7 @@ var requirejs, require, define;
...
@@ -177,7 +180,7 @@ var requirejs, require, define;
if
(
typeof
requirejs
!==
'undefined'
)
{
if
(
typeof
requirejs
!==
'undefined'
)
{
if
(
isFunction
(
requirejs
))
{
if
(
isFunction
(
requirejs
))
{
//Do not overwrite an
d
existing requirejs instance.
//Do not overwrite an existing requirejs instance.
return
;
return
;
}
}
cfg
=
requirejs
;
cfg
=
requirejs
;
...
@@ -201,6 +204,7 @@ var requirejs, require, define;
...
@@ -201,6 +204,7 @@ var requirejs, require, define;
waitSeconds
:
7
,
waitSeconds
:
7
,
baseUrl
:
'./'
,
baseUrl
:
'./'
,
paths
:
{},
paths
:
{},
bundles
:
{},
pkgs
:
{},
pkgs
:
{},
shim
:
{},
shim
:
{},
config
:
{}
config
:
{}
...
@@ -214,6 +218,7 @@ var requirejs, require, define;
...
@@ -214,6 +218,7 @@ var requirejs, require, define;
defQueue
=
[],
defQueue
=
[],
defined
=
{},
defined
=
{},
urlFetched
=
{},
urlFetched
=
{},
bundlesMap
=
{},
requireCounter
=
1
,
requireCounter
=
1
,
unnormalizedCounter
=
1
;
unnormalizedCounter
=
1
;
...
@@ -228,20 +233,19 @@ var requirejs, require, define;
...
@@ -228,20 +233,19 @@ var requirejs, require, define;
*/
*/
function
trimDots
(
ary
)
{
function
trimDots
(
ary
)
{
var
i
,
part
;
var
i
,
part
;
for
(
i
=
0
;
ary
[
i
];
i
+=
1
)
{
for
(
i
=
0
;
i
<
ary
.
length
;
i
++
)
{
part
=
ary
[
i
];
part
=
ary
[
i
];
if
(
part
===
'.'
)
{
if
(
part
===
'.'
)
{
ary
.
splice
(
i
,
1
);
ary
.
splice
(
i
,
1
);
i
-=
1
;
i
-=
1
;
}
else
if
(
part
===
'..'
)
{
}
else
if
(
part
===
'..'
)
{
if
(
i
===
1
&&
(
ary
[
2
]
===
'..'
||
ary
[
0
]
===
'..'
))
{
// If at the start, or previous value is still ..,
//End of the line. Keep at least one non-dot
// keep them so that when converted to a path it may
//path segment at the front so it can be mapped
// still work when converted to a path, even though
//correctly to disk. Otherwise, there is likely
// as an ID it is less than ideal. In larger point
//no path mapping for a path starting with '..'.
// releases, may be better to just kick out an error.
//This can still fail, but catches the most reasonable
if
(
i
===
0
||
(
i
===
1
&&
ary
[
2
]
===
'..'
)
||
ary
[
i
-
1
]
===
'..'
)
{
//uses of ..
continue
;
break
;
}
else
if
(
i
>
0
)
{
}
else
if
(
i
>
0
)
{
ary
.
splice
(
i
-
1
,
2
);
ary
.
splice
(
i
-
1
,
2
);
i
-=
2
;
i
-=
2
;
...
@@ -261,54 +265,45 @@ var requirejs, require, define;
...
@@ -261,54 +265,45 @@ var requirejs, require, define;
* @returns {String} normalized name
* @returns {String} normalized name
*/
*/
function
normalize
(
name
,
baseName
,
applyMap
)
{
function
normalize
(
name
,
baseName
,
applyMap
)
{
var
pkgName
,
pkgConfig
,
mapValue
,
nameParts
,
i
,
j
,
nameSegment
,
var
pkgMain
,
mapValue
,
nameParts
,
i
,
j
,
nameSegment
,
lastIndex
,
foundMap
,
foundI
,
foundStarMap
,
starI
,
foundMap
,
foundI
,
foundStarMap
,
starI
,
normalizedBaseParts
,
baseParts
=
baseName
&&
baseName
.
split
(
'/'
),
baseParts
=
(
baseName
&&
baseName
.
split
(
'/'
)),
normalizedBaseParts
=
baseParts
,
map
=
config
.
map
,
map
=
config
.
map
,
starMap
=
map
&&
map
[
'*'
];
starMap
=
map
&&
map
[
'*'
];
//Adjust any relative paths.
//Adjust any relative paths.
if
(
name
&&
name
.
charAt
(
0
)
===
'.'
)
{
if
(
name
)
{
//If have a base name, try to normalize against it,
name
=
name
.
split
(
'/'
);
//otherwise, assume it is a top-level require that will
lastIndex
=
name
.
length
-
1
;
//be relative to baseUrl in the end.
if
(
baseName
)
{
// If wanting node ID compatibility, strip .js from end
if
(
getOwn
(
config
.
pkgs
,
baseName
))
{
// of IDs. Have to do this here, and not in nameToUrl
//If the baseName is a package name, then just treat it as one
// because node allows either .js or non .js to map
//name to concat the name with.
// to same file.
normalizedBaseParts
=
baseParts
=
[
baseName
];
if
(
config
.
nodeIdCompat
&&
jsSuffixRegExp
.
test
(
name
[
lastIndex
]))
{
}
else
{
name
[
lastIndex
]
=
name
[
lastIndex
].
replace
(
jsSuffixRegExp
,
''
);
//Convert baseName to array, and lop off the last part,
}
//so that . matches that 'directory' and not name of the baseName's
//module. For instance, baseName of 'one/two/three', maps to
//'one/two/three.js', but we want the directory, 'one/two' for
//this normalization.
normalizedBaseParts
=
baseParts
.
slice
(
0
,
baseParts
.
length
-
1
);
}
name
=
normalizedBaseParts
.
concat
(
name
.
split
(
'/'
));
trimDots
(
name
);
//Some use of packages may use a . path to reference the
// Starts with a '.' so need the baseName
//'main' module name, so normalize for that.
if
(
name
[
0
].
charAt
(
0
)
===
'.'
&&
baseParts
)
{
pkgConfig
=
getOwn
(
config
.
pkgs
,
(
pkgName
=
name
[
0
]));
//Convert baseName to array, and lop off the last part,
name
=
name
.
join
(
'/'
);
//so that . matches that 'directory' and not name of the baseName's
if
(
pkgConfig
&&
name
===
pkgName
+
'/'
+
pkgConfig
.
main
)
{
//module. For instance, baseName of 'one/two/three', maps to
name
=
pkgName
;
//'one/two/three.js', but we want the directory, 'one/two' for
}
//this normalization.
}
else
if
(
name
.
indexOf
(
'./'
)
===
0
)
{
normalizedBaseParts
=
baseParts
.
slice
(
0
,
baseParts
.
length
-
1
);
// No baseName, so this is ID is resolved relative
name
=
normalizedBaseParts
.
concat
(
name
);
// to baseUrl, pull off the leading dot.
name
=
name
.
substring
(
2
);
}
}
trimDots
(
name
);
name
=
name
.
join
(
'/'
);
}
}
//Apply map config if available.
//Apply map config if available.
if
(
applyMap
&&
map
&&
(
baseParts
||
starMap
))
{
if
(
applyMap
&&
map
&&
(
baseParts
||
starMap
))
{
nameParts
=
name
.
split
(
'/'
);
nameParts
=
name
.
split
(
'/'
);
for
(
i
=
nameParts
.
length
;
i
>
0
;
i
-=
1
)
{
outerLoop
:
for
(
i
=
nameParts
.
length
;
i
>
0
;
i
-=
1
)
{
nameSegment
=
nameParts
.
slice
(
0
,
i
).
join
(
'/'
);
nameSegment
=
nameParts
.
slice
(
0
,
i
).
join
(
'/'
);
if
(
baseParts
)
{
if
(
baseParts
)
{
...
@@ -325,16 +320,12 @@ var requirejs, require, define;
...
@@ -325,16 +320,12 @@ var requirejs, require, define;
//Match, update name to the new value.
//Match, update name to the new value.
foundMap
=
mapValue
;
foundMap
=
mapValue
;
foundI
=
i
;
foundI
=
i
;
break
;
break
outerLoop
;
}
}
}
}
}
}
}
}
if
(
foundMap
)
{
break
;
}
//Check for a star map match, but just hold on to it,
//Check for a star map match, but just hold on to it,
//if there is a shorter segment match later in a matching
//if there is a shorter segment match later in a matching
//config, then favor over this star map.
//config, then favor over this star map.
...
@@ -355,7 +346,11 @@ var requirejs, require, define;
...
@@ -355,7 +346,11 @@ var requirejs, require, define;
}
}
}
}
return
name
;
// If the name points to a package's name, use
// the package main instead.
pkgMain
=
getOwn
(
config
.
pkgs
,
name
);
return
pkgMain
?
pkgMain
:
name
;
}
}
function
removeScript
(
name
)
{
function
removeScript
(
name
)
{
...
@@ -373,12 +368,17 @@ var requirejs, require, define;
...
@@ -373,12 +368,17 @@ var requirejs, require, define;
function
hasPathFallback
(
id
)
{
function
hasPathFallback
(
id
)
{
var
pathConfig
=
getOwn
(
config
.
paths
,
id
);
var
pathConfig
=
getOwn
(
config
.
paths
,
id
);
if
(
pathConfig
&&
isArray
(
pathConfig
)
&&
pathConfig
.
length
>
1
)
{
if
(
pathConfig
&&
isArray
(
pathConfig
)
&&
pathConfig
.
length
>
1
)
{
removeScript
(
id
);
//Pop off the first array value, since it failed, and
//Pop off the first array value, since it failed, and
//retry
//retry
pathConfig
.
shift
();
pathConfig
.
shift
();
context
.
require
.
undef
(
id
);
context
.
require
.
undef
(
id
);
context
.
require
([
id
]);
//Custom require that does not do map translation, since
//ID is "absolute", already mapped/resolved.
context
.
makeRequire
(
null
,
{
skipMap
:
true
})([
id
]);
return
true
;
return
true
;
}
}
}
}
...
@@ -444,7 +444,16 @@ var requirejs, require, define;
...
@@ -444,7 +444,16 @@ var requirejs, require, define;
return
normalize
(
name
,
parentName
,
applyMap
);
return
normalize
(
name
,
parentName
,
applyMap
);
});
});
}
else
{
}
else
{
normalizedName
=
normalize
(
name
,
parentName
,
applyMap
);
// If nested plugin references, then do not try to
// normalize, as it will not normalize correctly. This
// places a restriction on resourceIds, and the longer
// term solution is not to normalize until plugins are
// loaded and all normalizations to allow for async
// loading of a loader plugin. But for now, fixes the
// common uses. Details in #1131
normalizedName
=
name
.
indexOf
(
'!'
)
===
-
1
?
normalize
(
name
,
parentName
,
applyMap
)
:
name
;
}
}
}
else
{
}
else
{
//A regular module.
//A regular module.
...
@@ -549,7 +558,7 @@ var requirejs, require, define;
...
@@ -549,7 +558,7 @@ var requirejs, require, define;
//local var ref to defQueue, so cannot just reassign the one
//local var ref to defQueue, so cannot just reassign the one
//on context.
//on context.
apsp
.
apply
(
defQueue
,
apsp
.
apply
(
defQueue
,
[
defQueue
.
length
-
1
,
0
].
concat
(
globalDefQueue
));
[
defQueue
.
length
,
0
].
concat
(
globalDefQueue
));
globalDefQueue
=
[];
globalDefQueue
=
[];
}
}
}
}
...
@@ -566,7 +575,7 @@ var requirejs, require, define;
...
@@ -566,7 +575,7 @@ var requirejs, require, define;
mod
.
usingExports
=
true
;
mod
.
usingExports
=
true
;
if
(
mod
.
map
.
isDefine
)
{
if
(
mod
.
map
.
isDefine
)
{
if
(
mod
.
exports
)
{
if
(
mod
.
exports
)
{
return
mod
.
exports
;
return
(
defined
[
mod
.
map
.
id
]
=
mod
.
exports
)
;
}
else
{
}
else
{
return
(
mod
.
exports
=
defined
[
mod
.
map
.
id
]
=
{});
return
(
mod
.
exports
=
defined
[
mod
.
map
.
id
]
=
{});
}
}
...
@@ -580,15 +589,9 @@ var requirejs, require, define;
...
@@ -580,15 +589,9 @@ var requirejs, require, define;
id
:
mod
.
map
.
id
,
id
:
mod
.
map
.
id
,
uri
:
mod
.
map
.
url
,
uri
:
mod
.
map
.
url
,
config
:
function
()
{
config
:
function
()
{
var
c
,
return
getOwn
(
config
.
config
,
mod
.
map
.
id
)
||
{};
pkg
=
getOwn
(
config
.
pkgs
,
mod
.
map
.
id
);
// For packages, only support config targeted
// at the main module.
c
=
pkg
?
getOwn
(
config
.
config
,
mod
.
map
.
id
+
'/'
+
pkg
.
main
)
:
getOwn
(
config
.
config
,
mod
.
map
.
id
);
return
c
||
{};
},
},
exports
:
defined
[
mod
.
map
.
id
]
exports
:
mod
.
exports
||
(
mod
.
exports
=
{})
});
});
}
}
}
}
...
@@ -629,7 +632,7 @@ var requirejs, require, define;
...
@@ -629,7 +632,7 @@ var requirejs, require, define;
}
}
function
checkLoaded
()
{
function
checkLoaded
()
{
var
map
,
modId
,
err
,
usingPathFallback
,
var
err
,
usingPathFallback
,
waitInterval
=
config
.
waitSeconds
*
1000
,
waitInterval
=
config
.
waitSeconds
*
1000
,
//It is possible to disable the wait interval by using waitSeconds of 0.
//It is possible to disable the wait interval by using waitSeconds of 0.
expired
=
waitInterval
&&
(
context
.
startTime
+
waitInterval
)
<
new
Date
().
getTime
(),
expired
=
waitInterval
&&
(
context
.
startTime
+
waitInterval
)
<
new
Date
().
getTime
(),
...
@@ -647,8 +650,8 @@ var requirejs, require, define;
...
@@ -647,8 +650,8 @@ var requirejs, require, define;
//Figure out the state of all the modules.
//Figure out the state of all the modules.
eachProp
(
enabledRegistry
,
function
(
mod
)
{
eachProp
(
enabledRegistry
,
function
(
mod
)
{
map
=
mod
.
map
;
var
map
=
mod
.
map
,
modId
=
map
.
id
;
modId
=
map
.
id
;
//Skip things that are not enabled or in error state.
//Skip things that are not enabled or in error state.
if
(
!
mod
.
enabled
)
{
if
(
!
mod
.
enabled
)
{
...
@@ -871,17 +874,14 @@ var requirejs, require, define;
...
@@ -871,17 +874,14 @@ var requirejs, require, define;
exports
=
context
.
execCb
(
id
,
factory
,
depExports
,
exports
);
exports
=
context
.
execCb
(
id
,
factory
,
depExports
,
exports
);
}
}
if
(
this
.
map
.
isDefine
)
{
// Favor return value over exports. If node/cjs in play,
//If setting exports via 'module' is in play,
// then will not have a return value anyway. Favor
//favor that over return value and exports. After that,
// module.exports assignment over exports object.
//favor a non-undefined return value over exports use.
if
(
this
.
map
.
isDefine
&&
exports
===
undefined
)
{
cjsModule
=
this
.
module
;
cjsModule
=
this
.
module
;
if
(
cjsModule
&&
if
(
cjsModule
)
{
cjsModule
.
exports
!==
undefined
&&
//Make sure it is not already the exports value
cjsModule
.
exports
!==
this
.
exports
)
{
exports
=
cjsModule
.
exports
;
exports
=
cjsModule
.
exports
;
}
else
if
(
exports
===
undefined
&&
this
.
usingExports
)
{
}
else
if
(
this
.
usingExports
)
{
//exports already set the defined value.
//exports already set the defined value.
exports
=
this
.
exports
;
exports
=
this
.
exports
;
}
}
...
@@ -941,6 +941,7 @@ var requirejs, require, define;
...
@@ -941,6 +941,7 @@ var requirejs, require, define;
on
(
pluginMap
,
'defined'
,
bind
(
this
,
function
(
plugin
)
{
on
(
pluginMap
,
'defined'
,
bind
(
this
,
function
(
plugin
)
{
var
load
,
normalizedMap
,
normalizedMod
,
var
load
,
normalizedMap
,
normalizedMod
,
bundleId
=
getOwn
(
bundlesMap
,
this
.
map
.
id
),
name
=
this
.
map
.
name
,
name
=
this
.
map
.
name
,
parentName
=
this
.
map
.
parentMap
?
this
.
map
.
parentMap
.
name
:
null
,
parentName
=
this
.
map
.
parentMap
?
this
.
map
.
parentMap
.
name
:
null
,
localRequire
=
context
.
makeRequire
(
map
.
parentMap
,
{
localRequire
=
context
.
makeRequire
(
map
.
parentMap
,
{
...
@@ -986,6 +987,14 @@ var requirejs, require, define;
...
@@ -986,6 +987,14 @@ var requirejs, require, define;
return
;
return
;
}
}
//If a paths config, then just load that file instead to
//resolve the plugin, as it is built into that paths layer.
if
(
bundleId
)
{
this
.
map
.
url
=
context
.
nameToUrl
(
bundleId
);
this
.
load
();
return
;
}
load
=
bind
(
this
,
function
(
value
)
{
load
=
bind
(
this
,
function
(
value
)
{
this
.
init
([],
function
()
{
return
value
;
},
null
,
{
this
.
init
([],
function
()
{
return
value
;
},
null
,
{
enabled
:
true
enabled
:
true
...
@@ -1114,6 +1123,13 @@ var requirejs, require, define;
...
@@ -1114,6 +1123,13 @@ var requirejs, require, define;
if
(
this
.
errback
)
{
if
(
this
.
errback
)
{
on
(
depMap
,
'error'
,
bind
(
this
,
this
.
errback
));
on
(
depMap
,
'error'
,
bind
(
this
,
this
.
errback
));
}
else
if
(
this
.
events
.
error
)
{
// No direct errback on this module, but something
// else is listening for errors, so be sure to
// propagate the error correctly.
on
(
depMap
,
'error'
,
bind
(
this
,
function
(
err
)
{
this
.
emit
(
'error'
,
err
);
}));
}
}
}
}
...
@@ -1250,31 +1266,38 @@ var requirejs, require, define;
...
@@ -1250,31 +1266,38 @@ var requirejs, require, define;
}
}
}
}
//Save off the paths
and packages
since they require special processing,
//Save off the paths since they require special processing,
//they are additive.
//they are additive.
var
pkgs
=
config
.
pkgs
,
var
shim
=
config
.
shim
,
shim
=
config
.
shim
,
objs
=
{
objs
=
{
paths
:
true
,
paths
:
true
,
bundles
:
true
,
config
:
true
,
config
:
true
,
map
:
true
map
:
true
};
};
eachProp
(
cfg
,
function
(
value
,
prop
)
{
eachProp
(
cfg
,
function
(
value
,
prop
)
{
if
(
objs
[
prop
])
{
if
(
objs
[
prop
])
{
if
(
prop
===
'map'
)
{
if
(
!
config
[
prop
])
{
if
(
!
config
.
map
)
{
config
[
prop
]
=
{};
config
.
map
=
{};
}
mixin
(
config
[
prop
],
value
,
true
,
true
);
}
else
{
mixin
(
config
[
prop
],
value
,
true
);
}
}
mixin
(
config
[
prop
],
value
,
true
,
true
);
}
else
{
}
else
{
config
[
prop
]
=
value
;
config
[
prop
]
=
value
;
}
}
});
});
//Reverse map the bundles
if
(
cfg
.
bundles
)
{
eachProp
(
cfg
.
bundles
,
function
(
value
,
prop
)
{
each
(
value
,
function
(
v
)
{
if
(
v
!==
prop
)
{
bundlesMap
[
v
]
=
prop
;
}
});
});
}
//Merge shim
//Merge shim
if
(
cfg
.
shim
)
{
if
(
cfg
.
shim
)
{
eachProp
(
cfg
.
shim
,
function
(
value
,
id
)
{
eachProp
(
cfg
.
shim
,
function
(
value
,
id
)
{
...
@@ -1295,29 +1318,25 @@ var requirejs, require, define;
...
@@ -1295,29 +1318,25 @@ var requirejs, require, define;
//Adjust packages if necessary.
//Adjust packages if necessary.
if
(
cfg
.
packages
)
{
if
(
cfg
.
packages
)
{
each
(
cfg
.
packages
,
function
(
pkgObj
)
{
each
(
cfg
.
packages
,
function
(
pkgObj
)
{
var
location
;
var
location
,
name
;
pkgObj
=
typeof
pkgObj
===
'string'
?
{
name
:
pkgObj
}
:
pkgObj
;
pkgObj
=
typeof
pkgObj
===
'string'
?
{
name
:
pkgObj
}
:
pkgObj
;
name
=
pkgObj
.
name
;
location
=
pkgObj
.
location
;
location
=
pkgObj
.
location
;
if
(
location
)
{
config
.
paths
[
name
]
=
pkgObj
.
location
;
}
//Create a brand new object on pkgs, since currentPackages can
//Save pointer to main module ID for pkg name.
//be passed in again, and config.pkgs is the internal transformed
//Remove leading dot in main, so main paths are normalized,
//state for all package configs.
//and remove any trailing .js, since different package
pkgs
[
pkgObj
.
name
]
=
{
//envs have different conventions: some use a module name,
name
:
pkgObj
.
name
,
//some use a file name.
location
:
location
||
pkgObj
.
name
,
config
.
pkgs
[
name
]
=
pkgObj
.
name
+
'/'
+
(
pkgObj
.
main
||
'main'
)
//Remove leading dot in main, so main paths are normalized,
.
replace
(
currDirRegExp
,
''
)
//and remove any trailing .js, since different package
.
replace
(
jsSuffixRegExp
,
''
);
//envs have different conventions: some use a module name,
//some use a file name.
main
:
(
pkgObj
.
main
||
'main'
)
.
replace
(
currDirRegExp
,
''
)
.
replace
(
jsSuffixRegExp
,
''
)
};
});
});
//Done with modifications, assing packages back to context config
config
.
pkgs
=
pkgs
;
}
}
//If there are any "waiting to execute" modules in the registry,
//If there are any "waiting to execute" modules in the registry,
...
@@ -1464,10 +1483,21 @@ var requirejs, require, define;
...
@@ -1464,10 +1483,21 @@ var requirejs, require, define;
var
map
=
makeModuleMap
(
id
,
relMap
,
true
),
var
map
=
makeModuleMap
(
id
,
relMap
,
true
),
mod
=
getOwn
(
registry
,
id
);
mod
=
getOwn
(
registry
,
id
);
removeScript
(
id
);
delete
defined
[
id
];
delete
defined
[
id
];
delete
urlFetched
[
map
.
url
];
delete
urlFetched
[
map
.
url
];
delete
undefEvents
[
id
];
delete
undefEvents
[
id
];
//Clean queued defines too. Go backwards
//in array so that the splices do not
//mess up the iteration.
eachReverse
(
defQueue
,
function
(
args
,
i
)
{
if
(
args
[
0
]
===
id
)
{
defQueue
.
splice
(
i
,
1
);
}
});
if
(
mod
)
{
if
(
mod
)
{
//Hold on to listeners in case the
//Hold on to listeners in case the
//module will be attempted to be reloaded
//module will be attempted to be reloaded
...
@@ -1487,7 +1517,7 @@ var requirejs, require, define;
...
@@ -1487,7 +1517,7 @@ var requirejs, require, define;
/**
/**
* Called to enable a module if it is still in the registry
* Called to enable a module if it is still in the registry
* awaiting enablement. A second arg, parent, the parent module,
* awaiting enablement. A second arg, parent, the parent module,
* is passed in for context, when this method is overriden by
* is passed in for context, when this method is overrid
d
en by
* the optimizer. Not shown here to keep code compact.
* the optimizer. Not shown here to keep code compact.
*/
*/
enable
:
function
(
depMap
)
{
enable
:
function
(
depMap
)
{
...
@@ -1561,8 +1591,19 @@ var requirejs, require, define;
...
@@ -1561,8 +1591,19 @@ var requirejs, require, define;
* internal API, not a public one. Use toUrl for the public API.
* internal API, not a public one. Use toUrl for the public API.
*/
*/
nameToUrl
:
function
(
moduleName
,
ext
,
skipExt
)
{
nameToUrl
:
function
(
moduleName
,
ext
,
skipExt
)
{
var
paths
,
pkgs
,
pkg
,
pkgPath
,
syms
,
i
,
parentModule
,
url
,
var
paths
,
syms
,
i
,
parentModule
,
url
,
parentPath
;
parentPath
,
bundleId
,
pkgMain
=
getOwn
(
config
.
pkgs
,
moduleName
);
if
(
pkgMain
)
{
moduleName
=
pkgMain
;
}
bundleId
=
getOwn
(
bundlesMap
,
moduleName
);
if
(
bundleId
)
{
return
context
.
nameToUrl
(
bundleId
,
ext
,
skipExt
);
}
//If a colon is in the URL, it indicates a protocol is used and it is just
//If a colon is in the URL, it indicates a protocol is used and it is just
//an URL to a file, or if it starts with a slash, contains a query arg (i.e. ?)
//an URL to a file, or if it starts with a slash, contains a query arg (i.e. ?)
...
@@ -1576,7 +1617,6 @@ var requirejs, require, define;
...
@@ -1576,7 +1617,6 @@ var requirejs, require, define;
}
else
{
}
else
{
//A module that needs to be converted to a path.
//A module that needs to be converted to a path.
paths
=
config
.
paths
;
paths
=
config
.
paths
;
pkgs
=
config
.
pkgs
;
syms
=
moduleName
.
split
(
'/'
);
syms
=
moduleName
.
split
(
'/'
);
//For each module name segment, see if there is a path
//For each module name segment, see if there is a path
...
@@ -1584,7 +1624,7 @@ var requirejs, require, define;
...
@@ -1584,7 +1624,7 @@ var requirejs, require, define;
//and work up from it.
//and work up from it.
for
(
i
=
syms
.
length
;
i
>
0
;
i
-=
1
)
{
for
(
i
=
syms
.
length
;
i
>
0
;
i
-=
1
)
{
parentModule
=
syms
.
slice
(
0
,
i
).
join
(
'/'
);
parentModule
=
syms
.
slice
(
0
,
i
).
join
(
'/'
);
pkg
=
getOwn
(
pkgs
,
parentModule
);
parentPath
=
getOwn
(
paths
,
parentModule
);
parentPath
=
getOwn
(
paths
,
parentModule
);
if
(
parentPath
)
{
if
(
parentPath
)
{
//If an array, it means there are a few choices,
//If an array, it means there are a few choices,
...
@@ -1594,22 +1634,12 @@ var requirejs, require, define;
...
@@ -1594,22 +1634,12 @@ var requirejs, require, define;
}
}
syms
.
splice
(
0
,
i
,
parentPath
);
syms
.
splice
(
0
,
i
,
parentPath
);
break
;
break
;
}
else
if
(
pkg
)
{
//If module name is just the package name, then looking
//for the main module.
if
(
moduleName
===
pkg
.
name
)
{
pkgPath
=
pkg
.
location
+
'/'
+
pkg
.
main
;
}
else
{
pkgPath
=
pkg
.
location
;
}
syms
.
splice
(
0
,
i
,
pkgPath
);
break
;
}
}
}
}
//Join the path parts together, then figure out if baseUrl is needed.
//Join the path parts together, then figure out if baseUrl is needed.
url
=
syms
.
join
(
'/'
);
url
=
syms
.
join
(
'/'
);
url
+=
(
ext
||
(
/
\?
/
.
test
(
url
)
||
skipExt
?
''
:
'.js'
));
url
+=
(
ext
||
(
/
^data
\:
|
\?
/
.
test
(
url
)
||
skipExt
?
''
:
'.js'
));
url
=
(
url
.
charAt
(
0
)
===
'/'
||
url
.
match
(
/^
[\w\+\.\-]
+:/
)
?
''
:
config
.
baseUrl
)
+
url
;
url
=
(
url
.
charAt
(
0
)
===
'/'
||
url
.
match
(
/^
[\w\+\.\-]
+:/
)
?
''
:
config
.
baseUrl
)
+
url
;
}
}
...
@@ -1918,7 +1948,7 @@ var requirejs, require, define;
...
@@ -1918,7 +1948,7 @@ var requirejs, require, define;
}
}
//Look for a data-main script attribute, which could also adjust the baseUrl.
//Look for a data-main script attribute, which could also adjust the baseUrl.
if
(
isBrowser
)
{
if
(
isBrowser
&&
!
cfg
.
skipDataMain
)
{
//Figure out baseUrl. Get it from the script tag with require.js in it.
//Figure out baseUrl. Get it from the script tag with require.js in it.
eachReverse
(
scripts
(),
function
(
script
)
{
eachReverse
(
scripts
(),
function
(
script
)
{
//Set the 'head' where we can append children by
//Set the 'head' where we can append children by
...
...
raphael-min.js
View file @
7fd4df74
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
7fd4df74
// ┌────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël 2.1.4 - JavaScript Vector Library │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license.│ \\
// └────────────────────────────────────────────────────────────────────┘ \\
// Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
// Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
//
//
// Licensed under the Apache License, Version 2.0 (the "License");
// Licensed under the Apache License, Version 2.0 (the "License");
...
@@ -377,27 +369,26 @@
...
@@ -377,27 +369,26 @@
};
};
(
typeof
module
!=
"undefined"
&&
module
.
exports
)
?
(
module
.
exports
=
eve
)
:
(
typeof
define
!=
"undefined"
?
(
define
(
"eve"
,
[],
function
()
{
return
eve
;
}))
:
(
glob
.
eve
=
eve
));
(
typeof
module
!=
"undefined"
&&
module
.
exports
)
?
(
module
.
exports
=
eve
)
:
(
typeof
define
!=
"undefined"
?
(
define
(
"eve"
,
[],
function
()
{
return
eve
;
}))
:
(
glob
.
eve
=
eve
));
})(
this
);
})(
this
);
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// │ "Raphaël 2.1.2" - JavaScript Vector Library │ \\
// ┌────────────────────────────────────────────────────────────────────┐ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// │ Raphaël 2.1.4 - JavaScript Vector Library │ \\
// │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) │ \\
// │ Core Module │ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// └─────────────────────────────────────────────────────────────────────┘ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license.│ \\
// └────────────────────────────────────────────────────────────────────┘ \\
(
function
(
glob
,
factory
)
{
(
function
(
glob
,
factory
)
{
// AMD support
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
// Define as an anonymous module
define
(
"raphael.core"
,
[
"eve"
],
function
(
eve
)
{
define
([
"eve"
],
function
(
eve
)
{
return
factory
(
eve
);
return
factory
(
glob
,
eve
);
});
});
}
else
if
(
typeof
exports
===
"object"
)
{
module
.
exports
=
factory
(
require
(
"eve"
));
}
else
{
}
else
{
// Browser globals (glob is window)
glob
.
Raphael
=
factory
(
glob
.
eve
);
// Raphael adds itself to window
factory
(
glob
,
glob
.
eve
||
(
typeof
require
==
"function"
&&
require
(
'eve'
))
);
}
}
}(
this
,
function
(
window
,
eve
)
{
}(
this
,
function
(
eve
)
{
/*\
/*\
* Raphael
* Raphael
[ method ]
[ method ]
...
@@ -465,7 +456,7 @@
...
@@ -465,7 +456,7 @@
}
}
}
}
}
}
R
.
version
=
"2.1.
2
"
;
R
.
version
=
"2.1.
4
"
;
R
.
eve
=
eve
;
R
.
eve
=
eve
;
var
loaded
,
var
loaded
,
separator
=
/
[
,
]
+/
,
separator
=
/
[
,
]
+/
,
...
@@ -5735,7 +5726,7 @@
...
@@ -5735,7 +5726,7 @@
[ method ]
[ method ]
**
**
* If you want to leave no trace of Raphaël (Well, Raphaël creates only one global variable `Raphael`, but anyway.) You can use `ninja` method.
* If you want to leave no trace of Raphaël (Well, Raphaël creates only one global variable `Raphael`, but anyway.) You can use `ninja` method.
* Beware, that in this case plugins could stop working, because they are depending on global variable exist
a
nce.
* Beware, that in this case plugins could stop working, because they are depending on global variable exist
e
nce.
**
**
= (object) Raphael object
= (object) Raphael object
> Usage
> Usage
...
@@ -5789,8 +5780,11 @@
...
@@ -5789,8 +5780,11 @@
isLoaded
();
isLoaded
();
})(
document
,
"DOMContentLoaded"
);
})(
document
,
"DOMContentLoaded"
);
return
R
;
}));
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël
- JavaScript Vector Library
│ \\
// │ Raphaël
2.1.4 - JavaScript Vector Library
│ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// │ SVG Module │ \\
// │ SVG Module │ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
...
@@ -5799,10 +5793,21 @@
...
@@ -5799,10 +5793,21 @@
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
// └─────────────────────────────────────────────────────────────────────┘ \\
// └─────────────────────────────────────────────────────────────────────┘ \\
(
function
(){
(
function
(
glob
,
factory
)
{
if
(
!
R
.
svg
)
{
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
define
(
"raphael.svg"
,
[
"raphael.core"
],
function
(
raphael
)
{
return
factory
(
raphael
);
});
}
else
if
(
typeof
exports
===
"object"
)
{
factory
(
require
(
"raphael.core"
));
}
else
{
factory
(
glob
.
Raphael
);
}
}(
this
,
function
(
R
)
{
if
(
R
&&
!
R
.
svg
)
{
return
;
return
;
}
}
var
has
=
"hasOwnProperty"
,
var
has
=
"hasOwnProperty"
,
Str
=
String
,
Str
=
String
,
toFloat
=
parseFloat
,
toFloat
=
parseFloat
,
...
@@ -7194,10 +7199,10 @@
...
@@ -7194,10 +7199,10 @@
};
};
})(
method
);
})(
method
);
}
}
})
(
);
}));
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël
- JavaScript Vector Library
│ \\
// │ Raphaël
2.1.4 - JavaScript Vector Library
│ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// │ VML Module │ \\
// │ VML Module │ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
...
@@ -7206,10 +7211,21 @@
...
@@ -7206,10 +7211,21 @@
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
// └─────────────────────────────────────────────────────────────────────┘ \\
// └─────────────────────────────────────────────────────────────────────┘ \\
(
function
(){
(
function
(
glob
,
factory
)
{
if
(
!
R
.
vml
)
{
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
define
(
"raphael.vml"
,
[
"raphael.core"
],
function
(
raphael
)
{
return
factory
(
raphael
);
});
}
else
if
(
typeof
exports
===
"object"
)
{
factory
(
require
(
"raphael"
));
}
else
{
factory
(
glob
.
Raphael
);
}
}(
this
,
function
(
R
)
{
if
(
R
&&
!
R
.
vml
)
{
return
;
return
;
}
}
var
has
=
"hasOwnProperty"
,
var
has
=
"hasOwnProperty"
,
Str
=
String
,
Str
=
String
,
toFloat
=
parseFloat
,
toFloat
=
parseFloat
,
...
@@ -7425,7 +7441,7 @@
...
@@ -7425,7 +7441,7 @@
if
(
"arrow-end"
in
params
)
{
if
(
"arrow-end"
in
params
)
{
addArrow
(
res
,
params
[
"arrow-end"
],
1
);
addArrow
(
res
,
params
[
"arrow-end"
],
1
);
}
}
if
(
params
.
opacity
!=
null
||
if
(
params
.
opacity
!=
null
||
params
[
"stroke-width"
]
!=
null
||
params
[
"stroke-width"
]
!=
null
||
params
.
fill
!=
null
||
params
.
fill
!=
null
||
params
.
src
!=
null
||
params
.
src
!=
null
||
...
@@ -7504,7 +7520,7 @@
...
@@ -7504,7 +7520,7 @@
params
[
"stroke-width"
]
&&
(
stroke
.
weight
=
width
);
params
[
"stroke-width"
]
&&
(
stroke
.
weight
=
width
);
width
&&
width
<
1
&&
(
opacity
*=
width
)
&&
(
stroke
.
weight
=
1
);
width
&&
width
<
1
&&
(
opacity
*=
width
)
&&
(
stroke
.
weight
=
1
);
stroke
.
opacity
=
opacity
;
stroke
.
opacity
=
opacity
;
params
[
"stroke-linejoin"
]
&&
(
stroke
.
joinstyle
=
params
[
"stroke-linejoin"
]
||
"miter"
);
params
[
"stroke-linejoin"
]
&&
(
stroke
.
joinstyle
=
params
[
"stroke-linejoin"
]
||
"miter"
);
stroke
.
miterlimit
=
params
[
"stroke-miterlimit"
]
||
8
;
stroke
.
miterlimit
=
params
[
"stroke-miterlimit"
]
||
8
;
params
[
"stroke-linecap"
]
&&
(
stroke
.
endcap
=
params
[
"stroke-linecap"
]
==
"butt"
?
"flat"
:
params
[
"stroke-linecap"
]
==
"square"
?
"square"
:
"round"
);
params
[
"stroke-linecap"
]
&&
(
stroke
.
endcap
=
params
[
"stroke-linecap"
]
==
"butt"
?
"flat"
:
params
[
"stroke-linecap"
]
==
"square"
?
"square"
:
"round"
);
...
@@ -7551,7 +7567,7 @@
...
@@ -7551,7 +7567,7 @@
res
.
_
.
dirty
=
1
;
res
.
_
.
dirty
=
1
;
break
;
break
;
}
}
// text-anchor emulation
// text-anchor emulation
switch
(
a
[
"text-anchor"
])
{
switch
(
a
[
"text-anchor"
])
{
case
"start"
:
case
"start"
:
...
@@ -7764,7 +7780,7 @@
...
@@ -7764,7 +7780,7 @@
}
}
cx
=
cx
==
null
?
bbox
.
x
+
bbox
.
width
/
2
:
cx
;
cx
=
cx
==
null
?
bbox
.
x
+
bbox
.
width
/
2
:
cx
;
cy
=
cy
==
null
?
bbox
.
y
+
bbox
.
height
/
2
:
cy
;
cy
=
cy
==
null
?
bbox
.
y
+
bbox
.
height
/
2
:
cy
;
this
.
transform
(
this
.
_
.
transform
.
concat
([[
"s"
,
sx
,
sy
,
cx
,
cy
]]));
this
.
transform
(
this
.
_
.
transform
.
concat
([[
"s"
,
sx
,
sy
,
cx
,
cy
]]));
this
.
_
.
dirtyT
=
1
;
this
.
_
.
dirtyT
=
1
;
return
this
;
return
this
;
...
@@ -8204,15 +8220,32 @@
...
@@ -8204,15 +8220,32 @@
};
};
})(
method
);
})(
method
);
}
}
})
(
);
}));
// EXPOSE
// ┌────────────────────────────────────────────────────────────────────┐ \\
// SVG and VML are appended just before the EXPOSE line
// │ Raphaël 2.1.4 - JavaScript Vector Library │ \\
// Even with AMD, Raphael should be defined globally
// ├────────────────────────────────────────────────────────────────────┤ \\
oldRaphael
.
was
?
(
g
.
win
.
Raphael
=
R
)
:
(
Raphael
=
R
);
// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license.│ \\
// └────────────────────────────────────────────────────────────────────┘ \\
if
(
typeof
exports
==
"object"
){
(
function
(
glob
,
factory
)
{
module
.
exports
=
R
;
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
define
(
"raphael"
,
[
"raphael.core"
,
"raphael.svg"
,
"raphael.vml"
],
function
(
Raphael
)
{
return
factory
(
Raphael
);
});
}
else
if
(
typeof
exports
===
"object"
)
{
var
raphael
=
require
(
"raphael.core"
);
require
(
"raphael.svg"
);
require
(
"raphael.vml"
);
module
.
exports
=
factory
(
raphael
);
}
else
{
//glob.Raphael = factory(glob.Raphael);
}
}
return
R
;
}(
this
,
function
(
Raphael
)
{
}));
return
Raphael
.
ninja
();
}));
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment