Favicon Whitelabel
This change allows us to whitelabel the favicon in the browser. Much like the simple-whitelabel patch already landed, this makes use of array ordering and file resolution to determine which favicon 'wins'. In this case, both icons are copied, however if the custom font icon actually exists, it will override storyboard's default icon. Change-Id: Ic412a920d034b965ced25a7b63a51f82c4447a3d
This commit is contained in:
parent
0c1d28d251
commit
72c29d2c11
3
.gitignore
vendored
3
.gitignore
vendored
@ -9,4 +9,5 @@ npm-debug.log
|
||||
reports
|
||||
cover
|
||||
.tox
|
||||
src/theme/custom/**.less
|
||||
src/theme/custom/**.less
|
||||
src/theme/custom/**.ico
|
10
Gruntfile.js
10
Gruntfile.js
@ -213,7 +213,7 @@ module.exports = function (grunt) {
|
||||
cwd: dir.source,
|
||||
dest: dir.output,
|
||||
src: [
|
||||
'**/*.{ico,txt,eot,ttf,woff}',
|
||||
'**/*.{txt,eot,ttf,woff}',
|
||||
'*.html',
|
||||
'robots.txt'
|
||||
]
|
||||
@ -226,6 +226,14 @@ module.exports = function (grunt) {
|
||||
src: [
|
||||
'fonts/*.*'
|
||||
]
|
||||
},
|
||||
{
|
||||
src: dir.theme + '/storyboard/favicon.ico',
|
||||
dest: dir.output + '/favicon.ico'
|
||||
},
|
||||
{
|
||||
src: dir.theme + '/custom/favicon.ico',
|
||||
dest: dir.output + '/favicon.ico'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 113 KiB |
Loading…
x
Reference in New Issue
Block a user