1
0
Fork 0
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:
Bob Trahan 2011-12-15 12:33:12 -08:00
parent c13b7da290
commit 0e7049e8aa
3 changed files with 0 additions and 10 deletions

View file

@ -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);

View file

@ -106,7 +106,6 @@ class PhabricatorCountdownListController
return $this->buildStandardPageResponse($panel,
array(
'title' => 'Countdown',
'tab' => 'list',
));
}
}

View file

@ -80,7 +80,6 @@ class PhabricatorCountdownViewController
$panel,
array(
'title' => 'Countdown: '.$timer->getTitle(),
'tab' => 'view',
'chrome' => $chrome_visible
));
}