@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 `str` being defined as a global variable

Summary: This variable should be local, not global. This silences a few JSHint warnings.

Test Plan: `arc lint`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

authored by

Joshua Spence and committed by
epriestley
6b17a5a6 fdd1357c

+8 -8
+7 -7
resources/celerity/map.php
··· 383 383 'rsrc/js/application/herald/herald-rule-editor.js' => '7ebaeed3', 384 384 'rsrc/js/application/maniphest/behavior-batch-editor.js' => 'f24f3253', 385 385 'rsrc/js/application/maniphest/behavior-batch-selector.js' => '7b98d7c5', 386 - 'rsrc/js/application/maniphest/behavior-line-chart.js' => '22e16ae7', 386 + 'rsrc/js/application/maniphest/behavior-line-chart.js' => 'b07b009f', 387 387 'rsrc/js/application/maniphest/behavior-list-edit.js' => 'a9f88de2', 388 388 'rsrc/js/application/maniphest/behavior-subpriorityeditor.js' => '84845b5b', 389 389 'rsrc/js/application/maniphest/behavior-transaction-controls.js' => '44168bad', ··· 587 587 'javelin-behavior-konami' => '5bc2cb21', 588 588 'javelin-behavior-launch-icon-composer' => '48086888', 589 589 'javelin-behavior-lightbox-attachments' => 'f8ba29d7', 590 - 'javelin-behavior-line-chart' => '22e16ae7', 590 + 'javelin-behavior-line-chart' => 'b07b009f', 591 591 'javelin-behavior-load-blame' => '42126667', 592 592 'javelin-behavior-maniphest-batch-editor' => 'f24f3253', 593 593 'javelin-behavior-maniphest-batch-selector' => '7b98d7c5', ··· 950 950 'javelin-workflow', 951 951 'javelin-util', 952 952 ), 953 - '22e16ae7' => array( 954 - 'javelin-behavior', 955 - 'javelin-dom', 956 - 'javelin-vector', 957 - ), 958 953 '2926fff2' => array( 959 954 'javelin-behavior', 960 955 'javelin-dom', ··· 1509 1504 'javelin-install', 1510 1505 'javelin-util', 1511 1506 'javelin-stratcom', 1507 + 'javelin-dom', 1508 + 'javelin-vector', 1509 + ), 1510 + 'b07b009f' => array( 1511 + 'javelin-behavior', 1512 1512 'javelin-dom', 1513 1513 'javelin-vector', 1514 1514 ),
+1 -1
webroot/rsrc/js/application/maniphest/behavior-line-chart.js
··· 49 49 text[k].attr({text: ''}); 50 50 } else { 51 51 var cur = text[k].attr('text'); 52 - str = format(cur, config.xformat); 52 + var str = format(cur, config.xformat); 53 53 text[k].attr({text: str}); 54 54 } 55 55 }