mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Countdown - kill tabs
Summary: pretty simple stuff here. "View" controller had a 'view' tab selected which DNE. Test Plan: viewed countdown, noted no tabs Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Maniphest Tasks: T631 Differential Revision: 1222
This commit is contained in:
parent
c13b7da290
commit
0e7049e8aa
3 changed files with 0 additions and 10 deletions
|
@ -26,14 +26,6 @@ abstract class PhabricatorCountdownController extends PhabricatorController {
|
|||
$page->setBaseURI('/countdown/');
|
||||
$page->setTitle(idx($data, 'title'));
|
||||
$page->setGlyph("\xE2\x9A\xB2");
|
||||
$page->setTabs(
|
||||
array(
|
||||
'list' => array(
|
||||
'href' => '/countdown/',
|
||||
'name' => 'Countdown List',
|
||||
),
|
||||
),
|
||||
idx($data, 'tab'));
|
||||
$page->setShowChrome(idx($data, 'chrome', true));
|
||||
|
||||
$page->appendChild($view);
|
||||
|
|
|
@ -106,7 +106,6 @@ class PhabricatorCountdownListController
|
|||
return $this->buildStandardPageResponse($panel,
|
||||
array(
|
||||
'title' => 'Countdown',
|
||||
'tab' => 'list',
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -80,7 +80,6 @@ class PhabricatorCountdownViewController
|
|||
$panel,
|
||||
array(
|
||||
'title' => 'Countdown: '.$timer->getTitle(),
|
||||
'tab' => 'view',
|
||||
'chrome' => $chrome_visible
|
||||
));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue