[ Launch: Line Graph Vis ] 81d55fe6ba324d62932c by Bill77
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP --> | |
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'"> | |
<link href="./styles.css" rel="stylesheet"> | |
<title>Hello World!</title> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Conversion of svg4Everybody into angular format by Bill Chen | |
// https://github.com/jonathantneal/svg4everybody | |
(function() { | |
'use strict'; | |
angular.module('webApp') | |
.directive('use', svgEmbed); | |
svgEmbed.$inject = ['$http']; |
[ Launch: Line Graph Vis ] 5dddcf3cb396ec366edd by Bill77