Commit c3ee14b16c801ff7e6a458226a8d0dc9e52ba6be

Authored by Beau Harrison
Committed by GitHub
1 parent 1841eddb5c
Exists in master

Change icon hrefs to the root level.

When navigating to a page such as /documents/new the favicon was not available as this file was referencing the image /documents/favicon.png which does not exist.
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
... ... @@ -3,8 +3,8 @@
3 3 <title>Application Name</title>
4 4 <meta name="description" content="A description for the application.">
5 5 <meta name="viewport" content="initial-scale=1, minimal-ui, maximum-scale=1, minimum-scale=1" />
6   - <link rel="shortcut icon" type="image/png" href="favicon.png?v1" sizes="16x16 32x32 64x64">
7   - <link rel="apple-touch-icon" sizes="120x120" href="apple-touch-icon-precomposed.png">
  6 + <link rel="shortcut icon" type="image/png" href="/favicon.png?v1" sizes="16x16 32x32 64x64">
  7 + <link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-precomposed.png">
8 8 </head>
9 9  
10 10 <body>
... ...