Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Add on-focus and on-blur to the element itself.
Browse files Browse the repository at this point in the history
It can be focusable if tabindex is specified.
  • Loading branch information
jmuk committed Jul 11, 2014
1 parent e926623 commit fc32b4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paper-input.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<link href="../polymer/polymer.html" rel="import">
<link href="../core-input/core-input.html" rel="import">

<polymer-element name="paper-input" extends="core-input" attributes="label floatingLabel maxRows error" on-down="{{downAction}}" on-up="{{upAction}}">
<polymer-element name="paper-input" extends="core-input" attributes="label floatingLabel maxRows error" on-down="{{downAction}}" on-up="{{upAction}}" on-focus="{{focusAction}}" on-blur="{{blurAction}}">

<template>

Expand Down

0 comments on commit fc32b4b

Please sign in to comment.