Skip to content

Commit

Permalink
now displaying a flag "DUMB" alongside plugin metadata when the plugi…
Browse files Browse the repository at this point in the history
…n has the used_dummy_plugins flag set to true
  • Loading branch information
matortheeternal committed Jan 9, 2017
1 parent f024a5c commit 31434d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,9 @@ plugin-metadata {
color: $success_secondary;
border: 1px solid $success_secondary;
}

.dummy-flag {
color: $error_secondary;
border: 1px solid $error_secondary;
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<div class="stat-item">
<dt class="stat-title">Filename</dt>
<dd class="stat-data">{{plugin.filename}}
<span ng-if="plugin.is_esm" class="flag esm-flag">ESM</span>
<span ng-if="plugin.is_esm" class="flag esm-flag" title="This plugin has the ESM flag set to true in its file header.">ESM</span>
<span ng-if="plugin.used_dummy_plugins" class="flag dummy-flag" title="The user used a dummy master when analyzing this plugin. Plugin error information may be incomplete.">DUMB</span>
</dd>
</div>

Expand Down

0 comments on commit 31434d6

Please sign in to comment.