mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
23 lines
464 B
HTML
23 lines
464 B
HTML
<link rel="import" href="../../../components/polymer/polymer.html">
|
|
<link rel="import" href="../gui-row/gui-row.html">
|
|
|
|
<polymer-element
|
|
name="gui-panel"
|
|
attributes="docked">
|
|
|
|
<template>
|
|
|
|
<link rel="stylesheet" href="gui-panel.css">
|
|
|
|
<div id="container" class="docked-{{ docked }}">
|
|
<content></content>
|
|
<div id="closeButton" hidden?="{{ docked }}">×</div>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
<script src="gui-panel.js"></script>
|
|
|
|
</polymer-element> |