dat.gui/elements/gui-panel.html
George Michael Brower c70498ebcd basecontroller
2014-08-14 22:21:45 -04:00

34 lines
375 B
HTML

<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="gui-panel">
<template>
<style>
:host {
position: absolute;
top: 0;
right: 20px;
width: 300px;
}
</style>
<div>
<content></content>
</div>
</template>
</div>
<script>
Polymer('gui-panel', {
ready: function() {
}
});
</script>
</polymer-element>