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