File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -608,8 +608,7 @@ AppellateDelegate.prototype.handleAcmsDownloadPage = async function () {
608
608
) ;
609
609
610
610
console . info (
611
- 'RECAP: Got results from API. Running callback on API ' +
612
- 'results to insert banner'
611
+ 'RECAP: Got results from API. Processing results to insert banner'
613
612
) ;
614
613
let result = recapLinks . results . filter (
615
614
( obj ) => obj . pacer_doc_id == this . docId ,
@@ -883,8 +882,8 @@ AppellateDelegate.prototype.attachRecapLinksToEligibleDocs = async function () {
883
882
return console . error ( 'RECAP: Failed getting availability for dockets.' ) ;
884
883
885
884
console . info (
886
- 'RECAP: Got results from API. Running callback on API results to ' +
887
- 'attach links and icons where appropriate.'
885
+ 'RECAP: Got results from API. Processing results to attach links and ' +
886
+ 'icons where appropriate.'
888
887
) ;
889
888
for ( let i = 0 ; i < this . links . length ; i ++ ) {
890
889
let pacer_doc_id = this . links [ i ] . dataset . pacerDocId ;
@@ -1081,8 +1080,7 @@ AppellateDelegate.prototype.handleSingleDocumentPageView = async function () {
1081
1080
if ( docData . Error ) return ;
1082
1081
1083
1082
console . info (
1084
- 'RECAP: Got results from API. Running callback on API results to ' +
1085
- 'insert banner'
1083
+ 'RECAP: Got results from API. Processing results to insert banner'
1086
1084
) ;
1087
1085
let result = docData . results . filter (
1088
1086
( obj ) => obj . pacer_doc_id == this . docId
Original file line number Diff line number Diff line change @@ -449,8 +449,7 @@ ContentDelegate.prototype.handleSingleDocumentPageCheck = async function () {
449
449
450
450
if ( ! recapLinks . count ) return ;
451
451
console . info (
452
- 'RECAP: Got results from API. Running callback on API results to ' +
453
- 'insert link'
452
+ 'RECAP: Got results from API. Processing results to insert link'
454
453
) ;
455
454
let result = recapLinks . results . filter (
456
455
( doc ) => doc . pacer_doc_id === this . pacer_doc_id ,
@@ -587,8 +586,8 @@ ContentDelegate.prototype.attachRecapLinkToEligibleDocs = async function () {
587
586
if ( ! recapLinks ) return ;
588
587
589
588
console . info (
590
- 'RECAP: Got results from API. Running callback on API results to ' +
591
- 'attach links and icons where appropriate.'
589
+ 'RECAP: Got results from API. Processing results to attach links and ' +
590
+ 'icons where appropriate.'
592
591
) ;
593
592
for ( let i = 0 ; i < this . links . length ; i ++ ) {
594
593
let pacer_doc_id = $ ( this . links [ i ] ) . data ( 'pacer_doc_id' ) ;
You can’t perform that action at this time.
0 commit comments