Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E0E422004F5 for ; Fri, 1 Sep 2017 14:36:50 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DF71516CE55; Fri, 1 Sep 2017 12:36:50 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 596D316CE53 for ; Fri, 1 Sep 2017 14:36:50 +0200 (CEST) Received: (qmail 9986 invoked by uid 500); 1 Sep 2017 12:36:49 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 9975 invoked by uid 99); 1 Sep 2017 12:36:49 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Sep 2017 12:36:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 14FD6F32EA; Fri, 1 Sep 2017 12:36:49 +0000 (UTC) From: michaelandrepearce To: dev@activemq.apache.org Reply-To: dev@activemq.apache.org References: In-Reply-To: Subject: [GitHub] activemq-artemis pull request #1501: ARTEMIS-1270 Enforce Theming Content-Type: text/plain Message-Id: <20170901123649.14FD6F32EA@git1-us-west.apache.org> Date: Fri, 1 Sep 2017 12:36:49 +0000 (UTC) archived-at: Fri, 01 Sep 2017 12:36:51 -0000 Github user michaelandrepearce commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/1501#discussion_r136564765 --- Diff: artemis-hawtio/activemq-branding/src/main/webapp/plugin/js/plugin.js --- @@ -59,10 +59,14 @@ var activemqBranding = (function (self) { self.module = angular.module(self.pluginName, ['hawtioCore']); self.module.run(function (branding) { - self.log.debug("ActivMQ theme loaded"); + self.log.info("ActiveMQ theme loaded"); + if (localStorage['theme'] != 'activemq' || localStorage['branding'] != 'activemq') { + localStorage['theme'] = 'activemq'; + localStorage['branding'] = 'activemq'; + location.reload(); --- End diff -- @mtaylor if you have reproducer we can remove and you can retest to check? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---