Browse Source

AMBARI-2606. Set favicon for Ambari. (yusaku)

Yusaku Sako 12 years ago
parent
commit
8e211a4219
1 changed files with 3 additions and 1 deletions
  1. 3 1
      ambari-web/app/assets/index.html

+ 3 - 1
ambari-web/app/assets/index.html

@@ -29,11 +29,13 @@
   <script>
       $(document).ready(function() {
           require('initialize');
+          // make favicon work in firefox
+          $('link[type*=icon]').detach().appendTo('head');
           $('#loading').remove();
       });
   </script>
   <title>Ambari</title>
-  <link rel="shortcut icon" href="/img/logo-micro.gif">
+  <link rel="shortcut icon" href="/img/logo.png" type="image/x-icon">
 </head>
 <body>
     <div id="loading">...Loading...</div>