Add gradient to global example

This commit is contained in:
ipetropolsky 2016-02-12 14:02:00 +03:00
parent 58a5c90f4d
commit ffeb914945
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@
<!--<script type="text/javascript">
// Initialize container when document is loaded
window.onload = function () {
paper = Raphael(0, 0, 640, 720, "container");
paper.circle(100, 100, 100); //example
var paper = Raphael(0, 0, 640, 720, "container");
paper.circle(100, 100, 100).attr({'fill':'270-#FAE56B:0-#E56B6B:100'}); //example
};
//Work here, in a separate script file or via command line
</script>-->