Skip to content

Commit

Permalink
Merge pull request #38 from PolymerElements/add-form-behavior
Browse files Browse the repository at this point in the history
add form behaviour
  • Loading branch information
notwaldorf committed May 22, 2015
2 parents 4740f05 + 7fab005 commit cfa10ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paper-input",
"version": "0.9.4",
"version": "0.9.5",
"description": "Material design text fields",
"authors": [
"The Polymer Authors"
Expand All @@ -25,6 +25,7 @@
"ignore": [],
"dependencies": {
"iron-input": "PolymerElements/iron-input#^0.9.0",
"iron-form-element-behavior": "PolymerElements/iron-form-element-behavior#^0.9.0",
"paper-styles": "PolymerElements/paper-styles#^0.9.0",
"iron-autogrow-textarea": "PolymerElements/iron-autogrow-textarea#^0.9.0",
"polymer": "Polymer/polymer#^0.9.0"
Expand Down
4 changes: 3 additions & 1 deletion paper-input.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
-->
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../iron-input/iron-input.html">
<link rel="import" href="../iron-form-element-behavior/iron-form-element-behavior.html">
<link rel="import" href="paper-input-behavior.html">
<link rel="import" href="paper-input-container.html">
<link rel="import" href="paper-input-error.html">
Expand Down Expand Up @@ -53,7 +54,8 @@
is: 'paper-input',

behaviors: [
Polymer.PaperInputBehavior
Polymer.PaperInputBehavior,
Polymer.IronFormElementBehavior
]

})
Expand Down
4 changes: 3 additions & 1 deletion paper-textarea.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
-->
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../iron-autogrow-textarea/iron-autogrow-textarea.html">
<link rel="import" href="../iron-form-element-behavior/iron-form-element-behavior.html">
<link rel="import" href="paper-input-behavior.html">
<link rel="import" href="paper-input-container.html">
<link rel="import" href="paper-input-error.html">
Expand Down Expand Up @@ -54,7 +55,8 @@
is: 'paper-textarea',

behaviors: [
Polymer.PaperInputBehavior
Polymer.PaperInputBehavior,
Polymer.IronFormElementBehavior
]

})
Expand Down

0 comments on commit cfa10ee

Please sign in to comment.