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:
Michael Krotscheck 2014-04-24 10:58:44 -07:00
parent 0c1d28d251
commit 72c29d2c11
3 changed files with 11 additions and 2 deletions

3
.gitignore vendored
View File

@ -9,4 +9,5 @@ npm-debug.log
reports
cover
.tox
src/theme/custom/**.less
src/theme/custom/**.less
src/theme/custom/**.ico

View File

@ -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'
}
]
}

View File

Before

Width:  |  Height:  |  Size: 113 KiB

After

Width:  |  Height:  |  Size: 113 KiB