Skip to content

Commit

Permalink
Add a flag to skip branding check
Browse files Browse the repository at this point in the history
  • Loading branch information
gashcrumb committed Aug 21, 2013
1 parent b6a1058 commit 87f05d4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hawtio-web/src/main/webapp/app/branding/js/brandingPlugin.ts
Expand Up @@ -15,6 +15,11 @@ module Branding {
}, {
success: (response) => {

if (response.value['hawtio.disableBranding']) {
console.log("not enabling branding");
return;
}

var found = false;

var property = propertiesToCheck.find((property) => { return response.value[property]; });
Expand Down

0 comments on commit 87f05d4

Please sign in to comment.