You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2018/10/18 00:50:58 UTC

activemq-artemis git commit: ARTEMIS-2133 Artemis tab not showing on IE browser

Repository: activemq-artemis
Updated Branches:
  refs/heads/2.6.x 878b31018 -> a7256372e


ARTEMIS-2133 Artemis tab not showing on IE browser

The web console on IE doesn't have 'Artemis' showed up because
it doesn't support javascripts => function.

(cherry picked from commit 7c699ff46bedb61c5e9193c39925bdd0ad881427)


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/a7256372
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/a7256372
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/a7256372

Branch: refs/heads/2.6.x
Commit: a7256372e26a3f1ad839bde93a6b73508ab8dfb6
Parents: 878b310
Author: Howard Gao <ho...@gmail.com>
Authored: Wed Oct 17 20:15:17 2018 +0800
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed Oct 17 20:50:54 2018 -0400

----------------------------------------------------------------------
 .../artemis-plugin/src/main/webapp/plugin/js/artemisPlugin.js      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/a7256372/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/artemisPlugin.js
----------------------------------------------------------------------
diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/artemisPlugin.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/artemisPlugin.js
index d58ef82..9ffa6b2 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/artemisPlugin.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/artemisPlugin.js
@@ -362,7 +362,7 @@ var ARTEMIS = (function(ARTEMIS) {
 
       workspace.subLevelTabs = subLevelTabs;
 
-      preLogoutTasks.addTask("clearArtemisCredentials", () => {
+      preLogoutTasks.addTask("clearArtemisCredentials", function () {
           localStorage.removeItem('artemisUserName');
           localStorage.removeItem('artemisPassword');
       });