Skip to content

Instantly share code, notes, and snippets.

View cameron's full-sized avatar

Cameron Boehmer cameron

  • Empty Vessel
  • Portland, OR
  • 09:58 (UTC -07:00)
View GitHub Profile
@cameron
cameron / add.html
Last active August 29, 2015 14:00 — forked from caged/README.md
<html>
<body>
<select class="startTemp">
</select>
<select class="endTemp">
</select>
<input type="submit" class="add" value="Add">
<a href='index.html'>Graph</a>
<script src="add.js"></script>
</body>
var floatingButtonDirective = function() {
return {
restrict: 'AE',
scope: {
text: '@'
},
template: '<div class="floating-button">Text: {{ text }}</div>'
};
};