From c1f7b72dd867451b9e95d2cf0ea11fa78c187b96 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 2 Jul 2014 18:49:06 -0700 Subject: [PATCH] Add "device ready" flag to standalone dialog pages Summary: Fixes T5541. Standalone dialog pages, including the high-security auth page, should all work fine on mobile. Test Plan: {F173598} Reviewers: chad, joshuaspence Reviewed By: joshuaspence Subscribers: epriestley Maniphest Tasks: T5541 Differential Revision: https://secure.phabricator.com/D9799 --- src/applications/base/controller/PhabricatorController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/applications/base/controller/PhabricatorController.php b/src/applications/base/controller/PhabricatorController.php index 843953a0eb..d821bd65bc 100644 --- a/src/applications/base/controller/PhabricatorController.php +++ b/src/applications/base/controller/PhabricatorController.php @@ -350,6 +350,7 @@ abstract class PhabricatorController extends AphrontController { $view = id(new PhabricatorStandardPageView()) ->setRequest($request) ->setController($this) + ->setDeviceReady(true) ->setTitle($title) ->appendChild($page_content);