Commit 4d8dc216 by Tomas Alabes

Modified our Eve so it works with amd and globally

parent 7fd4df74
...@@ -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", "dev/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",
......
{ {
"name": "raphael", "name": "raphael",
"version": "2.1.2", "version": "2.1.4",
"description": "JavaScript Vector Library", "description": "JavaScript Vector Library",
"main": "./dev", "main": "raphael",
"repository": "git://github.com/DmitryBaranovskiy/raphael.git", "repository": "git://github.com/DmitryBaranovskiy/raphael.git",
"keywords": [ "keywords": [
"vector", "vector",
......
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
require.config({ require.config({
paths: { paths: {
raphael: '../raphael' raphael: '../raphael'/*,
eve: '../bower_components/eve/eve'*/
} }
}); });
......
This diff is collapsed. Click to expand it.
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<!-- Global use --> <!-- Global use -->
<!-- To work with full version --> <!-- To work with full 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 -->
<!--<script type="text/javascript" src="../raphael-min.js"></script>--> <!--<script type="text/javascript" src="../raphael-min.js"></script>-->
...@@ -18,21 +18,20 @@ ...@@ -18,21 +18,20 @@
<!--<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>-->
<!-- 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 -->
<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 -->
<!-- You need to do a 'bower install -D' first to get requirejs -->
<!--<script data-main="amdDev" src="../bower_components/requirejs/require.js"></script>-->
</head> </head>
<body> <body>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -16,8 +16,17 @@ ...@@ -16,8 +16,17 @@
// ├────────────────────────────────────────────────────────────┤ \\ // ├────────────────────────────────────────────────────────────┤ \\
// │ Author Dmitry Baranovskiy (http://dmitry.baranovskiy.com/) │ \\ // │ Author Dmitry Baranovskiy (http://dmitry.baranovskiy.com/) │ \\
// └────────────────────────────────────────────────────────────┘ \\ // └────────────────────────────────────────────────────────────┘ \\
(function (glob, factory) {
(function (glob) { if (typeof define === "function" && define.amd) {
define("eve", function() {
return factory();
});
} else if (typeof exports === "object") {
module.exports = factory();
} else {
glob.eve = factory();
}
}(this, function(){
var version = "0.4.2", var version = "0.4.2",
has = "hasOwnProperty", has = "hasOwnProperty",
separator = /[\.\/]/, separator = /[\.\/]/,
...@@ -367,8 +376,9 @@ ...@@ -367,8 +376,9 @@
eve.toString = function () { eve.toString = function () {
return "You are running Eve " + version; return "You are running Eve " + version;
}; };
(typeof module != "undefined" && module.exports) ? (module.exports = eve) : (typeof define != "undefined" ? (define("eve", [], function() { return eve; })) : (glob.eve = eve));
})(this); return eve;
}));
// ┌────────────────────────────────────────────────────────────────────┐ \\ // ┌────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël 2.1.4 - JavaScript Vector Library │ \\ // │ Raphaël 2.1.4 - JavaScript Vector Library │ \\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment