dat.gui/elements/gui-panel/gui-panel.html

23 lines
464 B
HTML
Raw Normal View History

2014-08-22 02:36:49 +00:00
<link rel="import" href="../../../components/polymer/polymer.html">
2014-08-21 17:20:06 +00:00
<link rel="import" href="../gui-row/gui-row.html">
2014-08-15 02:21:45 +00:00
2014-08-15 16:32:49 +00:00
<polymer-element
name="gui-panel"
2014-08-21 17:20:06 +00:00
attributes="docked">
2014-08-15 02:21:45 +00:00
<template>
2014-08-15 16:32:49 +00:00
<link rel="stylesheet" href="gui-panel.css">
2014-08-15 02:21:45 +00:00
2014-08-21 17:20:06 +00:00
<div id="container" class="docked-{{ docked }}">
2014-08-15 02:21:45 +00:00
<content></content>
2014-08-21 17:20:06 +00:00
<div id="closeButton" hidden?="{{ docked }}">&times;</div>
2014-08-15 02:21:45 +00:00
</div>
</template>
</div>
2014-08-15 16:32:49 +00:00
<script src="gui-panel.js"></script>
2014-08-15 02:21:45 +00:00
</polymer-element>