| OLD | NEW |
| 1 Polymer({ | 1 |
| 2 |
| 3 Polymer({ |
| 2 is: 'paper-slider', | 4 is: 'paper-slider', |
| 3 | 5 |
| 4 behaviors: [ | 6 behaviors: [ |
| 5 Polymer.IronFormElementBehavior, | 7 Polymer.IronFormElementBehavior, |
| 6 Polymer.PaperInkyFocusBehavior, | 8 Polymer.PaperInkyFocusBehavior, |
| 7 Polymer.IronRangeBehavior | 9 Polymer.IronRangeBehavior |
| 8 ], | 10 ], |
| 9 | 11 |
| 10 properties: { | 12 properties: { |
| 11 | 13 |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 * @event immediate-value-change | 362 * @event immediate-value-change |
| 361 */ | 363 */ |
| 362 | 364 |
| 363 /** | 365 /** |
| 364 * Fired when the slider's value changes due to user interaction. | 366 * Fired when the slider's value changes due to user interaction. |
| 365 * | 367 * |
| 366 * Changes to the slider's value due to changes in an underlying | 368 * Changes to the slider's value due to changes in an underlying |
| 367 * bound variable will not trigger this event. | 369 * bound variable will not trigger this event. |
| 368 * | 370 * |
| 369 * @event change | 371 * @event change |
| 370 */ | 372 */ |
| 373 |
| OLD | NEW |