update textarea

This commit is contained in:
Luke Pulverenti 2016-06-23 01:25:16 -04:00
parent b1cca31fa5
commit b3e4c65c0b
29 changed files with 302 additions and 50 deletions

View file

@ -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() {