dat.gui/elements/dat-gui-string/dat-gui-string.html

21 lines
440 B
HTML
Raw Permalink Normal View History

2014-09-09 19:53:30 +00:00
<link rel="import" href="../dat-gui-base/dat-gui-base.html">
2014-08-27 00:01:15 +00:00
2014-09-09 19:53:30 +00:00
<script src="dat-gui-string.js"></script>
2014-08-27 00:01:15 +00:00
<polymer-element
2014-09-09 19:53:30 +00:00
name="dat-gui-string"
extends="dat-gui-base"
2014-08-27 00:01:15 +00:00
>
<template>
2014-09-03 18:47:32 +00:00
<link rel="stylesheet" href="../shared/input.css">
2014-09-09 19:53:30 +00:00
<link rel="stylesheet" href="dat-gui-string.css">
2014-08-27 00:01:15 +00:00
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>