update textarea
This commit is contained in:
parent
b1cca31fa5
commit
b3e4c65c0b
29 changed files with 302 additions and 50 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "paper-ripple",
|
||||
"version": "1.0.6",
|
||||
"version": "1.0.7",
|
||||
"license": "http://polymer.github.io/LICENSE.txt",
|
||||
"description": "Adds a material design ripple to any container",
|
||||
"private": true,
|
||||
|
@ -18,7 +18,7 @@
|
|||
},
|
||||
"main": "paper-ripple.html",
|
||||
"dependencies": {
|
||||
"iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.0.0",
|
||||
"iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.1.4",
|
||||
"polymer": "Polymer/polymer#^1.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -33,11 +33,11 @@
|
|||
},
|
||||
"ignore": [],
|
||||
"homepage": "https://github.com/PolymerElements/paper-ripple",
|
||||
"_release": "1.0.6",
|
||||
"_release": "1.0.7",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v1.0.6",
|
||||
"commit": "8e9ec00765b14acb387205e5f748c7ebeac16fd3"
|
||||
"tag": "v1.0.7",
|
||||
"commit": "8f49ac1282a3603834e6a3a16926279ccee74489"
|
||||
},
|
||||
"_source": "git://github.com/PolymerElements/paper-ripple.git",
|
||||
"_target": "^1.0.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "paper-ripple",
|
||||
"version": "1.0.6",
|
||||
"version": "1.0.7",
|
||||
"license": "http://polymer.github.io/LICENSE.txt",
|
||||
"description": "Adds a material design ripple to any container",
|
||||
"private": true,
|
||||
|
@ -18,7 +18,7 @@
|
|||
},
|
||||
"main": "paper-ripple.html",
|
||||
"dependencies": {
|
||||
"iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.0.0",
|
||||
"iron-a11y-keys-behavior": "polymerelements/iron-a11y-keys-behavior#^1.1.4",
|
||||
"polymer": "Polymer/polymer#^1.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -569,8 +569,9 @@ Apply `circle` class to make the rippling effect within a circle.
|
|||
} else {
|
||||
this.keyEventTarget = this.parentNode;
|
||||
}
|
||||
this.listen(this.keyEventTarget, 'up', 'uiUpAction');
|
||||
this.listen(this.keyEventTarget, 'down', 'uiDownAction');
|
||||
var keyEventTarget = /** @type {!EventTarget} */ (this.keyEventTarget);
|
||||
this.listen(keyEventTarget, 'up', 'uiUpAction');
|
||||
this.listen(keyEventTarget, 'down', 'uiDownAction');
|
||||
},
|
||||
|
||||
detached: function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue