dat.gui/elements/dat-gui/dat-gui.html
George Michael Brower e523c634c5 folders
2014-10-11 15:39:16 -04:00

37 lines
868 B
HTML

<link rel="import" href="../../../polymer/polymer.html">
<link rel="import" href="../dat-gui-folder/dat-gui-folder.html">
<link rel="import" href="../gui-row/gui-row.html">
<link rel="import" href="../gui-button/gui-button.html">
<polymer-element
name="dat-gui"
attributes="docked autoplace open localStorage">
<template>
<link rel="stylesheet" href="dat-gui.css">
<div id="container" class="docked-{{ docked }} autoplace-{{ autoPlace }} open-{{ open }} touch-{{ touch }}" >
<div id="dockedContent"></div>
<div id="panel">
<div id="controllers">
<content></content>
</div>
<!-- <gui-button hidden?="{{ !autoPlace }}" on-tap="{{ toggleOpen }}" open="{{ open }}"></gui-button> -->
</div>
</div>
</template>
<script src="static.js"></script>
<script src="dat-gui.js"></script>
</polymer-element>