17 lines
351 B
JavaScript
17 lines
351 B
JavaScript
'use strict';
|
|
|
|
require.config({
|
|
paths: {
|
|
raphael: '../raphael'
|
|
//you will need eve if you use the nodeps version
|
|
/*eve: '../bower_components/eve/eve'*/
|
|
}
|
|
});
|
|
|
|
require(['raphael'], function(Raphael) {
|
|
var paper = Raphael(0, 0, 640, 720, "container");
|
|
paper.circle(100, 100, 100); //example
|
|
|
|
// Work here
|
|
});
|