dat.gui/elements/gui-row.html

22 lines
400 B
HTML
Raw Normal View History

2014-08-15 02:21:45 +00:00
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="gui-row" attributes="name">
<template>
2014-08-15 16:32:49 +00:00
<link rel="stylesheet" href="gui-row.css">
2014-08-15 02:21:45 +00:00
<div id="row" layout horizontal center>
<div id="name">{{ name }}</div>
<div id="controller" flex>
<content></content>
</div>
</div>
</template>
</div>
2014-08-15 16:32:49 +00:00
<script src="gui-row.js"></script>
2014-08-15 02:21:45 +00:00
</polymer-element>