| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | private function registerJs() |
||
| 29 | { |
||
| 30 | $referrer = Yii::$app->request->referrer; |
||
| 31 | |||
| 32 | $this->view->registerJs(/** @lang JavaScript */" |
||
| 33 | $('#back-link').on('click', () => { |
||
| 34 | const phpReferrer = '{$referrer}'; |
||
| 35 | |||
| 36 | (phpReferrer === '') ? window.history.go(-1) : window.location.href = phpReferrer; |
||
| 37 | }); |
||
| 38 | "); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |