accessibility: elimate duplicate root id (#86)
This commit is contained in:
Родитель
3c16ef2bb7
Коммит
2b3c68a184
|
@ -28,7 +28,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
<div id="rootdiv"></div>
|
||||
<div style="display: none;">OCR Form Labeling Tool</div>
|
||||
<!--
|
||||
This HTML file is a template.
|
||||
|
|
|
@ -8,7 +8,7 @@ body.no-focus-outline :focus {
|
|||
outline: none;
|
||||
}
|
||||
|
||||
#root {
|
||||
#rootdiv {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ ReactDOM.render(
|
|||
<Provider store={store}>
|
||||
<App/>
|
||||
</Provider>
|
||||
, document.getElementById("root"));
|
||||
, document.getElementById("rootdiv"));
|
||||
|
||||
// If you want your app to work offline and load faster, you can change
|
||||
// unregister() to register() below. Note this comes with some pitfalls.
|
||||
|
|
Загрузка…
Ссылка в новой задаче