@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.

Conpherence - fix default widget on main Conpherence view.

Summary: Fixes T8489. Regression in D13058. Re-write this so a) works and b) works as well cross browser as possible. (big guess on b)

Test Plan: visited /Z1 vs /Z1?settings and saw people widget vs settings widget as respective defaults.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T8489

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

+17 -17
+16 -16
resources/celerity/map.php
··· 338 338 'rsrc/js/application/conpherence/ConpherenceThreadManager.js' => '01774ab2', 339 339 'rsrc/js/application/conpherence/behavior-drag-and-drop-photo.js' => 'cf86d16a', 340 340 'rsrc/js/application/conpherence/behavior-durable-column.js' => 'c72aa091', 341 - 'rsrc/js/application/conpherence/behavior-menu.js' => '43b24a10', 341 + 'rsrc/js/application/conpherence/behavior-menu.js' => 'd3782c93', 342 342 'rsrc/js/application/conpherence/behavior-pontificate.js' => '21ba5861', 343 343 'rsrc/js/application/conpherence/behavior-quicksand-blacklist.js' => '7927a7d3', 344 344 'rsrc/js/application/conpherence/behavior-widget-pane.js' => '93568464', ··· 546 546 'javelin-behavior-choose-control' => '6153c708', 547 547 'javelin-behavior-config-reorder-fields' => 'b6993408', 548 548 'javelin-behavior-conpherence-drag-and-drop-photo' => 'cf86d16a', 549 - 'javelin-behavior-conpherence-menu' => '43b24a10', 549 + 'javelin-behavior-conpherence-menu' => 'd3782c93', 550 550 'javelin-behavior-conpherence-pontificate' => '21ba5861', 551 551 'javelin-behavior-conpherence-widget-pane' => '93568464', 552 552 'javelin-behavior-countdown-timer' => 'e4cc26b3', ··· 1098 1098 'javelin-dom', 1099 1099 'javelin-request', 1100 1100 ), 1101 - '43b24a10' => array( 1102 - 'javelin-behavior', 1103 - 'javelin-dom', 1104 - 'javelin-util', 1105 - 'javelin-stratcom', 1106 - 'javelin-workflow', 1107 - 'javelin-behavior-device', 1108 - 'javelin-history', 1109 - 'javelin-vector', 1110 - 'javelin-scrollbar', 1111 - 'phabricator-title', 1112 - 'phabricator-shaped-request', 1113 - 'conpherence-thread-manager', 1114 - ), 1115 1101 '44168bad' => array( 1116 1102 'javelin-behavior', 1117 1103 'javelin-dom', ··· 1837 1823 ), 1838 1824 'd254d646' => array( 1839 1825 'javelin-util', 1826 + ), 1827 + 'd3782c93' => array( 1828 + 'javelin-behavior', 1829 + 'javelin-dom', 1830 + 'javelin-util', 1831 + 'javelin-stratcom', 1832 + 'javelin-workflow', 1833 + 'javelin-behavior-device', 1834 + 'javelin-history', 1835 + 'javelin-vector', 1836 + 'javelin-scrollbar', 1837 + 'phabricator-title', 1838 + 'phabricator-shaped-request', 1839 + 'conpherence-thread-manager', 1840 1840 ), 1841 1841 'd4505101' => array( 1842 1842 'javelin-stratcom',
+1 -1
webroot/rsrc/js/application/conpherence/behavior-menu.js
··· 299 299 widget = 'widgets-people'; 300 300 var uri = JX.$U(location.href); 301 301 var params = uri.getQueryParams(); 302 - if (params['settings'] !== null) { 302 + if ('settings' in params) { 303 303 widget = 'widgets-settings'; 304 304 } 305 305 }