Skip to content

Commit

Permalink
Add 'internal' tag into class/method/field listings
Browse files Browse the repository at this point in the history
  • Loading branch information
FrenchYeti committed May 15, 2020
1 parent b412553 commit 70ee757
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/webserver/public/pages/finder.html
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,8 @@ <h3 class="modal-title" id="newHookModalLabel">Hook configuration</h3>
info: 'info',
warning: 'warning',
danger: 'danger',
secondary: 'secondary'
secondary: 'secondary',
success:'success'
},
badge: function(color,data){
if(BS.color[color]==null) console.error("Given color not exists : ",color);
Expand Down Expand Up @@ -1310,6 +1311,9 @@ <h3 class="modal-title" id="newHookModalLabel">Hook configuration</h3>
}

// loaded from an external dex file
if(row.tags.indexOf("di") > -1){
b += BS.badge("success", "internal");
}
if(row.tags.indexOf("led") > -1){
b += BS.badge(
findColorCode("led")
Expand Down

0 comments on commit 70ee757

Please sign in to comment.