File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2525 var sponsors = $ ( '#sponsors' ) ;
2626 data . forEach ( function ( sponsor ) {
2727 var link = '#' ;
28- if ( sponsor . isActive == true )
28+ if ( sponsor . isActive == true ) {
2929 if ( sponsor . website ) {
3030 link = sponsor . website ;
3131 } else if ( sponsor . twitter ) {
3939 el += '</div>' ;
4040
4141 sponsors . append ( el ) ;
42- )
42+ }
4343 } ) ;
4444 } ) ;
4545 $ . get ( 'https://opencollective.com/librenms/tiers/backers/all.json' , function ( data ) {
4646 var backers = $ ( '#backers' ) ;
4747 data . forEach ( function ( backer ) {
4848 var link = '#' ;
49- if ( backer . isActive == true )
49+ if ( backer . isActive == true ) {
5050 if ( backer . website ) {
5151 link = backer . website ;
5252 } else if ( backer . twitter ) {
5858 el += '</a></div>' ;
5959
6060 backers . append ( el ) ;
61- )
61+ }
6262 } ) ;
6363 } ) ;
6464 } ) ;
You can’t perform that action at this time.
0 commit comments