2014-08-15 02:21:45 +00:00
|
|
|
<link rel="import" href="../components/polymer/polymer.html">
|
|
|
|
|
2014-08-15 22:04:51 +00:00
|
|
|
<polymer-element
|
|
|
|
name="gui-row"
|
|
|
|
attributes="name"
|
|
|
|
constructor="GUIRow">
|
2014-08-15 02:21:45 +00:00
|
|
|
|
|
|
|
<template>
|
|
|
|
|
2014-08-15 16:32:49 +00:00
|
|
|
<link rel="stylesheet" href="gui-row.css">
|
2014-08-15 02:21:45 +00:00
|
|
|
|
|
|
|
<div id="row" layout horizontal center>
|
|
|
|
<div id="name">{{ name }}</div>
|
|
|
|
<div id="controller" flex>
|
|
|
|
<content></content>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2014-08-15 16:32:49 +00:00
|
|
|
<script src="gui-row.js"></script>
|
2014-08-15 02:21:45 +00:00
|
|
|
|
|
|
|
</polymer-element>
|