mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
25 lines
561 B
HTML
25 lines
561 B
HTML
<link rel="import" href="../controller-base/controller-base.html">
|
|
|
|
<script src="controller-option.js"></script>
|
|
|
|
<polymer-element name="controller-option" extends="controller-base" attributes="options">
|
|
|
|
<template>
|
|
|
|
<link rel="stylesheet" href="controller-option.css">
|
|
|
|
<div id="container" horizontal layout center>
|
|
|
|
<select value="{{ value }}">
|
|
|
|
<template repeat="{{ name in options | getKeys }}">
|
|
<option value="{{ options[ name ] }}">{{ name }}</option>
|
|
</template>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</polymer-element> |