(data)
| 41 | // Public methods |
| 42 | |
| 43 | setData(data) { |
| 44 | if (!data) { |
| 45 | return; |
| 46 | } |
| 47 | |
| 48 | if (data.targetNumber) { |
| 49 | this.number.text(data.targetNumber); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | animateIn(delay) { |
| 54 | this.clearTween().visible().css({ opacity: 0 }).tween({ opacity: 1 }, 400, 'easeOutCubic', delay); |