noredink-ui/styleguide-app/index.html
Luke Westby 38ca396ac8
Updates to TextArea (#70)
* update textarea js code and make it npm-ready

* use an attribute instead so dom debugging is easier

* use data- attribute to be I D I O M A T I C

* version the custom element

* include marica's resize logic improvements

* changes to elm module

* clean up styleguide build and use v3 in styleguide
2018-06-11 11:08:49 -07:00

19 lines
567 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>NoRedInk style guide</title>
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<script src="assets/custom-elements/custom-elements.min.js"></script>
<script src="assets/custom-elements/native-shim.js"></script>
<script src="assets/generated_svgs.js"></script>
<script src="javascript.js"></script>
</head>
<body>
<script src="elm.js"></script>
<script>
const app = Elm.Main.fullscreen();
</script>
</body>
</html>