mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 00:32:42 +01:00
Make the 'Subscribe' button pop a modal instead.
Summary: See title. Also some minor styling/consistency fixes. Test Plan: - Clicked subscribe - Canceled to make sure it went away - Clicked it again - Clicked subscribe - Saw my name in the cc field. Reviewers: epriestley, chad, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4571
This commit is contained in:
parent
baa9d96082
commit
dce6d2e9d5
1 changed files with 8 additions and 6 deletions
|
@ -60,10 +60,11 @@ final class DifferentialRevisionViewController extends DifferentialController {
|
|||
$repository);
|
||||
|
||||
if ($request->getExists('download')) {
|
||||
return $this->buildRawDiffResponse($changesets,
|
||||
$vs_changesets,
|
||||
$vs_map,
|
||||
$repository);
|
||||
return $this->buildRawDiffResponse(
|
||||
$changesets,
|
||||
$vs_changesets,
|
||||
$vs_map,
|
||||
$repository);
|
||||
}
|
||||
|
||||
$props = id(new DifferentialDiffProperty())->loadAllWhere(
|
||||
|
@ -163,8 +164,8 @@ final class DifferentialRevisionViewController extends DifferentialController {
|
|||
phutil_render_tag(
|
||||
'p',
|
||||
array(),
|
||||
pht('This revision has no specified reviewers and needs review.'.
|
||||
' You may want to add some reviewers.')
|
||||
pht('This revision has no specified reviewers and needs '.
|
||||
'review. You may want to add some reviewers.')
|
||||
));
|
||||
}
|
||||
}
|
||||
|
@ -495,6 +496,7 @@ final class DifferentialRevisionViewController extends DifferentialController {
|
|||
'href' => "/differential/subscribe/{$action}/{$revision_id}/",
|
||||
'name' => $viewer_is_cc ? 'Unsubscribe' : 'Subscribe',
|
||||
'instant' => true,
|
||||
'sigil' => 'workflow',
|
||||
);
|
||||
} else {
|
||||
$links[] = array(
|
||||
|
|
Loading…
Reference in a new issue