2014-08-27 00:01:15 +00:00
|
|
|
<link rel="import" href="../controller-base/controller-base.html">
|
|
|
|
|
|
|
|
<script src="controller-string.js"></script>
|
|
|
|
|
|
|
|
<polymer-element
|
|
|
|
name="controller-string"
|
|
|
|
extends="controller-base"
|
|
|
|
>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
2014-09-03 18:47:32 +00:00
|
|
|
<link rel="stylesheet" href="../shared/input.css">
|
2014-08-27 00:01:15 +00:00
|
|
|
<link rel="stylesheet" href="controller-string.css">
|
|
|
|
|
2014-09-03 16:52:28 +00:00
|
|
|
<input id="input" type="text" value="{{ value }}"
|
|
|
|
on-click="{{ click }}"
|
|
|
|
on-keydown="{{ keydown }}">
|
2014-08-27 00:01:15 +00:00
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</polymer-element>
|