mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
24 lines
586 B
HTML
24 lines
586 B
HTML
<link rel="import" href="../controller-base/controller-base.html">
|
|
|
|
<script src="controller-boolean.js"></script>
|
|
|
|
<polymer-element name="controller-boolean" extends="controller-base">
|
|
|
|
<template>
|
|
|
|
<link rel="stylesheet" href="../shared/input.css">
|
|
<link rel="stylesheet" href="controller-boolean.css">
|
|
|
|
<div id="container" horizontal layout center on-tap="{{ toggle }}" class="value-{{ value }}">
|
|
|
|
<div id="switch-track">
|
|
<div id="switch-knob"></div>
|
|
</div>
|
|
|
|
<!-- <div id="text" >{{ value ? 'true' : 'false' }}</div> -->
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</polymer-element> |