@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix Phriction preview

Summary: Missed this in the PHUIDocumentView thing.

Test Plan: Previewed a Phriction edit; grepped more/harder.

Reviewers: chad, btrahan

Reviewed By: chad

CC: aran

Differential Revision: https://secure.phabricator.com/D6110

+7 -8
+7 -8
src/applications/phriction/controller/PhrictionEditController.php
··· 229 229 $header = id(new PhabricatorHeaderView()) 230 230 ->setHeader($panel_header); 231 231 232 - $preview_panel = hsprintf( 233 - '<div class="phriction-wrap"> 234 - <div class="phriction-content"> 235 - <div class="phriction-document-preview-header plt pll">%s</div> 236 - <div id="document-preview"> 237 - <div class="aphront-panel-preview-loading-text">%s</div> 238 - </div> 239 - </div> 232 + $preview_content = hsprintf( 233 + '<div class="phriction-document-preview-header plt pll">%s</div> 234 + <div id="document-preview"> 235 + <div class="aphront-panel-preview-loading-text">%s</div> 240 236 </div>', 241 237 pht('Document Preview'), 242 238 pht('Loading preview...')); 239 + 240 + $preview_panel = id(new PHUIDocumentView()) 241 + ->appendChild($preview_content); 243 242 244 243 Javelin::initBehavior( 245 244 'phriction-document-preview',