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

Let JSHint know that the `show_details` function is an exported global

Summary:
The `show_details` function is used by DarkConsole. Adding this comment silences the following JSHint warning:

```
>>> Lint for webroot/rsrc/js/core/behavior-error-log.js:

Warning (W098) JSHintW098
'show_details' is defined but never used.

5
6 var current_details = null;
7
>>> 8 function show_details(row) {
9 var node = JX.$('row-details-' + row);
10
11 if (current_details !== null) {
```

Test Plan: `arc lint`

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

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

authored by

Joshua Spence and committed by
epriestley
e6684af7 3f0bc79e

+8 -6
+6 -6
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'core.pkg.css' => 'f588bfc3', 11 11 'core.pkg.js' => '2d1f7db1', 12 - 'darkconsole.pkg.js' => 'df001cab', 12 + 'darkconsole.pkg.js' => 'ac37f0cd', 13 13 'differential.pkg.css' => '8af45893', 14 14 'differential.pkg.js' => '42c10e78', 15 15 'diffusion.pkg.css' => '591664fa', ··· 450 450 'rsrc/js/core/behavior-dark-console.js' => '357b6e9b', 451 451 'rsrc/js/core/behavior-device.js' => '03d6ed07', 452 452 'rsrc/js/core/behavior-drag-and-drop-textarea.js' => '92eb531d', 453 - 'rsrc/js/core/behavior-error-log.js' => 'a5d7cf86', 453 + 'rsrc/js/core/behavior-error-log.js' => '6882e80a', 454 454 'rsrc/js/core/behavior-fancy-datepicker.js' => 'c51ae228', 455 455 'rsrc/js/core/behavior-file-tree.js' => '88236f00', 456 456 'rsrc/js/core/behavior-form.js' => '5c54cbf3', ··· 577 577 'javelin-behavior-diffusion-locate-file' => '6d3e1947', 578 578 'javelin-behavior-diffusion-pull-lastmodified' => '2b228192', 579 579 'javelin-behavior-doorkeeper-tag' => 'e5822781', 580 - 'javelin-behavior-error-log' => 'a5d7cf86', 580 + 'javelin-behavior-error-log' => '6882e80a', 581 581 'javelin-behavior-fancy-datepicker' => 'c51ae228', 582 582 'javelin-behavior-global-drag-and-drop' => '07f199d8', 583 583 'javelin-behavior-herald-rule-editor' => '7ebaeed3', ··· 1218 1218 'javelin-dom', 1219 1219 'javelin-fx', 1220 1220 ), 1221 + '6882e80a' => array( 1222 + 'javelin-dom', 1223 + ), 1221 1224 '6932def3' => array( 1222 1225 'javelin-behavior', 1223 1226 'javelin-stratcom', ··· 1481 1484 'javelin-install', 1482 1485 'javelin-dom', 1483 1486 'phabricator-notification', 1484 - ), 1485 - 'a5d7cf86' => array( 1486 - 'javelin-dom', 1487 1487 ), 1488 1488 'a80d0378' => array( 1489 1489 'javelin-behavior',
+2
webroot/rsrc/js/core/behavior-error-log.js
··· 3 3 * @requires javelin-dom 4 4 */ 5 5 6 + /* exported show_details */ 7 + 6 8 var current_details = null; 7 9 8 10 function show_details(row) {