In case you need to use Google Chrome internal favicons.
A note about suffixes:
@1xmeans 16x16 icon size@2xmeans 32x32 icon size
You'll have to copy/paste these paths.
| var isInputSupported = function (type) { | |
| var i = document.createElement('input'); | |
| i.setAttribute('type', type); | |
| // The browser will replace your input type with text if not supported | |
| return i.type !== 'text'; | |
| }; |
| app.config(function ($httpProvider) { | |
| $httpProvider.interceptors.push('customHttpInterceptor'); | |
| }); |