@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 thumb selection style

Summary: I broke the code which shows which thumb is currently selected when I made the URLs fancy, by changing the container from `div` to `a`.

Test Plan: Verified current thumb is now highlighted.

Reviewers: chad

Reviewed By: chad

CC: aran

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

+4 -4
+2 -2
src/__celerity_resource_map__.php
··· 1891 1891 ), 1892 1892 'javelin-behavior-pholio-mock-view' => 1893 1893 array( 1894 - 'uri' => '/res/c320fd85/rsrc/js/application/pholio/behavior-pholio-mock-view.js', 1894 + 'uri' => '/res/59c4d3ae/rsrc/js/application/pholio/behavior-pholio-mock-view.js', 1895 1895 'type' => 'js', 1896 1896 'requires' => 1897 1897 array( ··· 3239 3239 ), 3240 3240 'pholio-css' => 3241 3241 array( 3242 - 'uri' => '/res/580babaa/rsrc/css/application/pholio/pholio.css', 3242 + 'uri' => '/res/8883529b/rsrc/css/application/pholio/pholio.css', 3243 3243 'type' => 'css', 3244 3244 'requires' => 3245 3245 array(
+1 -1
webroot/rsrc/css/application/pholio/pholio.css
··· 30 30 } 31 31 32 32 .device-desktop .pholio-mock-carousel-thumb-item:hover, 33 - .pholio-mock-carousel-thumb-current { 33 + .pholio-mock-carousel-thumb-current { 34 34 background: #383838; 35 35 border-color: #686868; 36 36 }
+1 -1
webroot/rsrc/js/application/pholio/behavior-pholio-mock-view.js
··· 213 213 214 214 var thumbs = JX.DOM.scry( 215 215 JX.$('pholio-mock-carousel'), 216 - 'div', 216 + 'a', 217 217 'mock-thumbnail'); 218 218 219 219 for(var k in thumbs) {