Skip to content

Commit ad59771

Browse files
authoredSep 5, 2017
Merge pull request #815 from sveltejs/gh-374
a11y checks
2 parents 66c382a + 7c6ea13 commit ad59771

File tree

74 files changed

+686
-232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+686
-232
lines changed
 

‎src/generators/dom/preprocess.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Block from './Block';
22
import { trimStart, trimEnd } from '../../utils/trim';
33
import { assign } from '../../shared/index.js';
4-
import getStaticAttributeValue from '../shared/getStaticAttributeValue';
4+
import getStaticAttributeValue from '../../utils/getStaticAttributeValue';
55
import { DomGenerator } from './index';
66
import { Node } from '../../interfaces';
77
import { State } from './interfaces';

‎src/generators/dom/visitors/Element/Attribute.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import deindent from '../../../../utils/deindent';
33
import visitStyleAttribute, { optimizeStyle } from './StyleAttribute';
44
import { stringify } from '../../../../utils/stringify';
55
import getExpressionPrecedence from '../../../../utils/getExpressionPrecedence';
6-
import getStaticAttributeValue from '../../../shared/getStaticAttributeValue';
6+
import getStaticAttributeValue from '../../../../utils/getStaticAttributeValue';
77
import { DomGenerator } from '../../index';
88
import Block from '../../Block';
99
import { Node } from '../../../../interfaces';

0 commit comments

Comments
 (0)
Please sign in to comment.