dat.gui/elements/controller-string/controller-string.html
George Michael Brower c31ddef69f shared style
2014-09-03 12:52:28 -04:00

22 lines
520 B
HTML

<link rel="import" href="../../../polymer/polymer.html">
<link rel="import" href="../controller-base/controller-base.html">
<script src="controller-string.js"></script>
<polymer-element
name="controller-string"
extends="controller-base"
>
<template>
<link rel="stylesheet" href="../shared/controller.css">
<link rel="stylesheet" href="controller-string.css">
<input id="input" type="text" value="{{ value }}"
on-click="{{ click }}"
on-keydown="{{ keydown }}">
</template>
</polymer-element>