Add an exponential backoff to rechecking the app list doodle.
[chromium-blink-merge.git] / third_party / polymer / components-chromium / paper-button / paper-button-extracted.js
blobb0b56f9d7cb29e8f188408953668d56f5f7dc307
2     Polymer('paper-button',{
4       publish: {
6         /**
7          * If true, the button will be styled with a shadow.
8          *
9          * @attribute raised
10          * @type boolean
11          * @default false
12          */
13         raised: false,
15         /**
16          * By default the ripple emanates from where the user touched the button.
17          * Set this to true to always center the ripple.
18          *
19          * @attribute recenteringTouch
20          * @type boolean
21          * @default false
22          */
23         recenteringTouch: false,
25         /**
26          * By default the ripple expands to fill the button. Set this to true to
27          * constrain the ripple to a circle within the button.
28          *
29          * @attribute fill
30          * @type boolean
31          * @default true
32          */
33         fill: true
35       }
37     });
38