mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
37 lines
868 B
HTML
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> |