| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | protected function selectRound(Round $round) |
||
| 40 | { |
||
| 41 | $this->response->html('section-tontine-name', $round->tontine->name . ' - ' . $round->title); |
||
| 42 | |||
| 43 | // Set the round sidebar menu |
||
| 44 | $this->response->html('sidebar-menu-round', $this->render('parts.sidebar.round')); |
||
| 45 | $this->jq('a', '#sidebar-menu-round')->css('color', '#6777ef'); |
||
| 46 | |||
| 47 | foreach(config('menu.round') as $menuId => $menuClass) |
||
| 48 | { |
||
| 49 | $this->jq($menuId)->click($this->rq($menuClass)->home()); |
||
| 50 | } |
||
| 53 |