Give the 'Light' theme link a title too
... mostly to make it appear on the Firefox style menu.
This commit is contained in:
parent
686a3c693a
commit
61c5253dbf
|
@ -22,11 +22,13 @@
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
<% for (var i=0; i < htmlWebpackPlugin.files.css.length; i++) {
|
<% for (var i=0; i < htmlWebpackPlugin.files.css.length; i++) {
|
||||||
var file = htmlWebpackPlugin.files.css[i];
|
var file = htmlWebpackPlugin.files.css[i];
|
||||||
var match = file.match(/^bundles\/.*?\/theme-((?!light\.).*)\.css$/);
|
var match = file.match(/^bundles\/.*?\/theme-(.*)\.css$/);
|
||||||
if (match) {
|
if (match) {
|
||||||
var title = match[1].charAt(0).toUpperCase() + match[1].slice(1);
|
var title = match[1].charAt(0).toUpperCase() + match[1].slice(1);
|
||||||
|
var light = match[1] == 'light';
|
||||||
%>
|
%>
|
||||||
<link rel="alternate stylesheet" title="<%= title %>" href="<%= file %>">
|
<link rel="<%= light ? '' : 'alternate ' %>stylesheet" title="<%= title %>"
|
||||||
|
href="<%= file %>">
|
||||||
<% } else { %>
|
<% } else { %>
|
||||||
<link rel="stylesheet" href="<%= file %>">
|
<link rel="stylesheet" href="<%= file %>">
|
||||||
<% }
|
<% }
|
||||||
|
|
Loading…
Reference in New Issue