Linting changes to fix build

This commit is contained in:
Knut Sveidqvist
2022-04-12 07:16:14 +02:00
parent 4f833db2d0
commit e48d60f4cf
7 changed files with 625 additions and 468 deletions

View File

@@ -32,9 +32,9 @@ gantt
<script src="./mermaid.js"></script> <script src="./mermaid.js"></script>
<script> <script>
mermaid.initialize({ mermaid.initialize({
logLevel: 3, logLevel: 3,
securityLevel: 'loose', securityLevel: 'loose',
gantt: { axisFormat: '%m/%d/%Y' }, gantt: { axisFormat: '%m/%d/%Y' },
}); });
</script> </script>

539
dist/mermaid.core.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

539
dist/mermaid.js vendored

File diff suppressed because one or more lines are too long

2
dist/mermaid.js.map vendored

File diff suppressed because one or more lines are too long

View File

@@ -4,8 +4,7 @@
* which is generally not displayed and the accDescription is the description element on the chart, * which is generally not displayed and the accDescription is the description element on the chart,
* which is never displayed. * which is never displayed.
* *
* The following charts display their title as a visual and accessibility element: * The following charts display their title as a visual and accessibility element: gantt
* gantt
* *
* @param yy_parser * @param yy_parser
* @param svg * @param svg

View File

@@ -15,7 +15,7 @@ import common from '../common/common';
import ganttDb from './ganttDb'; import ganttDb from './ganttDb';
import { getConfig } from '../../config'; import { getConfig } from '../../config';
import { configureSvgSize } from '../../utils'; import { configureSvgSize } from '../../utils';
import addSVGAccessibilityFields from '../../accessibility' import addSVGAccessibilityFields from '../../accessibility';
parser.yy = ganttDb; parser.yy = ganttDb;
export const setConf = function () { export const setConf = function () {