Conditions | 1 |
Paths | 1 |
Total Lines | 20 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function render() |
||
12 | { |
||
13 | $this->default((int) $this->default); |
||
14 | |||
15 | $this->script = <<<EOT |
||
16 | |||
17 | $('{$this->getElementClassSelector()}:not(.initialized)') |
||
18 | .addClass('initialized') |
||
19 | .bootstrapNumber({ |
||
20 | upClass: 'success', |
||
21 | downClass: 'primary', |
||
22 | center: true |
||
23 | }); |
||
24 | |||
25 | EOT; |
||
26 | |||
27 | $this->prepend('')->defaultAttribute('style', 'width: 100px'); |
||
28 | |||
29 | return parent::render(); |
||
|
|||
30 | } |
||
31 | |||
58 |