- Refactoring: Add favicon no-op to suppress favicon 404s until
loaded dynamically (might make configurable in future)master
parent
e50dfe77e0
commit
cd5f80eac0
|
@ -46,6 +46,8 @@
|
||||||
- Refactoring: Switch from `$.param.querystring` to `URL`
|
- Refactoring: Switch from `$.param.querystring` to `URL`
|
||||||
- Refactoring: Ensure file-global jsdoc tags are at beginning of file
|
- Refactoring: Ensure file-global jsdoc tags are at beginning of file
|
||||||
- Refactoring: Move `build-html` to `build` directory
|
- Refactoring: Move `build-html` to `build` directory
|
||||||
|
- Refactoring: Add favicon no-op to suppress favicon 404s until
|
||||||
|
loaded dynamically (might make configurable in future)
|
||||||
- Linting (ESLint): Simplify regexes
|
- Linting (ESLint): Simplify regexes
|
||||||
- Linting (ESLint): Replace `innerHTML` with `textContent` from old demo
|
- Linting (ESLint): Replace `innerHTML` with `textContent` from old demo
|
||||||
- Linting (ESLint): Update as per latest ash-nazg
|
- Linting (ESLint): Update as per latest ash-nazg
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
<meta name="viewport"
|
<meta name="viewport"
|
||||||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||||
|
|
||||||
|
<!-- No-op until loaded dynamically (could make configurable) -->
|
||||||
|
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon" />
|
||||||
|
|
||||||
<!-- STYLESHEETS (others loaded dynamically) -->
|
<!-- STYLESHEETS (others loaded dynamically) -->
|
||||||
<style id="styleoverrides" media="screen"></style>
|
<style id="styleoverrides" media="screen"></style>
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,10 @@
|
||||||
<meta name="viewport"
|
<meta name="viewport"
|
||||||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||||
|
|
||||||
|
<!-- No-op until loaded dynamically (could make configurable) -->
|
||||||
|
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon" />
|
||||||
|
|
||||||
<!-- STYLESHEETS (others loaded dynamically) -->
|
<!-- STYLESHEETS (others loaded dynamically) -->
|
||||||
<style id="styleoverrides" media="screen"></style>
|
<style id="styleoverrides" media="screen"></style>
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,10 @@
|
||||||
<meta name="viewport"
|
<meta name="viewport"
|
||||||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||||
|
|
||||||
|
<!-- No-op until loaded dynamically (could make configurable) -->
|
||||||
|
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon" />
|
||||||
|
|
||||||
<!-- STYLESHEETS (others loaded dynamically) -->
|
<!-- STYLESHEETS (others loaded dynamically) -->
|
||||||
<style id="styleoverrides" media="screen"></style>
|
<style id="styleoverrides" media="screen"></style>
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,10 @@
|
||||||
<meta name="viewport"
|
<meta name="viewport"
|
||||||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||||
|
|
||||||
|
<!-- No-op until loaded dynamically (could make configurable) -->
|
||||||
|
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon" />
|
||||||
|
|
||||||
<!-- STYLESHEETS (others loaded dynamically) -->
|
<!-- STYLESHEETS (others loaded dynamically) -->
|
||||||
<style id="styleoverrides" media="screen"></style>
|
<style id="styleoverrides" media="screen"></style>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue