From 72734318e7be14ab91a37f92a383dfdf56a5f56d Mon Sep 17 00:00:00 2001 From: vrana Date: Thu, 24 Jan 2013 17:02:21 -0800 Subject: [PATCH] Display short description for non full width apps on homepage Test Plan: Hovered over it. Reviewers: chad, epriestley Reviewed By: chad CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4630 --- src/applications/meta/view/PhabricatorApplicationLaunchView.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/applications/meta/view/PhabricatorApplicationLaunchView.php b/src/applications/meta/view/PhabricatorApplicationLaunchView.php index 68e9079a17..c5c45ae1ef 100644 --- a/src/applications/meta/view/PhabricatorApplicationLaunchView.php +++ b/src/applications/meta/view/PhabricatorApplicationLaunchView.php @@ -125,6 +125,7 @@ final class PhabricatorApplicationLaunchView extends AphrontView { array( 'class' => implode(' ', $classes), 'href' => $application ? $application->getBaseURI() : null, + 'title' => $application ? $application->getShortDescription() : null, ), $icon. $this->renderSingleView($content));