dat.gui/elements/dat-gui-option/dat-gui-option.html
George Michael Brower ca14623507 controller- =
2014-09-09 15:53:30 -04:00

25 lines
556 B
HTML

<link rel="import" href="../dat-gui-base/dat-gui-base.html">
<script src="dat-gui-option.js"></script>
<polymer-element name="dat-gui-option" extends="dat-gui-base" attributes="options key">
<template>
<link rel="stylesheet" href="dat-gui-option.css">
<div id="container" horizontal layout center>
<select value="{{ key }}" on-change="{{ change }}">
<template repeat="{{ name in options | keys }}">
<option value="{{ name }}">{{ name }}</option>
</template>
</select>
</div>
</template>
</polymer-element>