dat.gui/elements/dat-gui-option/dat-gui-option.html

25 lines
556 B
HTML
Raw Normal View History

2014-09-09 19:53:30 +00:00
<link rel="import" href="../dat-gui-base/dat-gui-base.html">
2014-09-07 20:18:36 +00:00
2014-09-09 19:53:30 +00:00
<script src="dat-gui-option.js"></script>
2014-09-07 20:18:36 +00:00
2014-09-09 19:53:30 +00:00
<polymer-element name="dat-gui-option" extends="dat-gui-base" attributes="options key">
2014-09-07 20:18:36 +00:00
<template>
2014-09-09 19:53:30 +00:00
<link rel="stylesheet" href="dat-gui-option.css">
2014-09-07 20:18:36 +00:00
<div id="container" horizontal layout center>
2014-09-07 23:55:40 +00:00
<select value="{{ key }}" on-change="{{ change }}">
2014-09-07 20:18:36 +00:00
2014-09-07 23:55:40 +00:00
<template repeat="{{ name in options | keys }}">
<option value="{{ name }}">{{ name }}</option>
2014-09-07 20:18:36 +00:00
</template>
</select>
</div>
</template>
</polymer-element>