Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1521)

Unified Diff: polymer_1.0.4/bower_components/iron-input/README.md

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: polymer_1.0.4/bower_components/iron-input/README.md
diff --git a/polymer_1.0.4/bower_components/iron-input/README.md b/polymer_1.0.4/bower_components/iron-input/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..05a74b721248306a7850dbb636181e369c7f814e
--- /dev/null
+++ b/polymer_1.0.4/bower_components/iron-input/README.md
@@ -0,0 +1,16 @@
+# iron-input
+
+An input with data binding.
+
+By default you can only get notified of changes to an `input`'s `value` due to user input:
+
+```html
+<input value="{{myValue::input}}">
+```
+
+`iron-input` adds the `bind-value` property that mirrors the `value` property, and can be used
+for two-way data binding. `bind-value` will notify if it is changed either by user input or by script.
+
+```html
+<input is="iron-input" bind-value="{{myValue}}">
+```
« no previous file with comments | « polymer_1.0.4/bower_components/iron-input/.gitignore ('k') | polymer_1.0.4/bower_components/iron-input/bower.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698