Skip to content

Commit 9e35e20

Browse files
committed
ensure aria-hidden attrs are added
1 parent 76d0696 commit 9e35e20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

domvm-v2.0.0-beta/src/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,14 @@ function View(vm, store) {
103103
]),
104104
h("td.col-md-1", [
105105
h("a.remove", {_data: item.id}, [
106-
h("span.glyphicon.glyphicon-remove", {"aria-hidden": true})
106+
h("span.glyphicon.glyphicon-remove", {"aria-hidden": ""})
107107
])
108108
]),
109109
h("td.col-md-6")
110110
])
111111
))
112112
]),
113-
h("span.preloadicon.glyphicon.glyphicon-remove", {"aria-hidden": true})
113+
h("span.preloadicon.glyphicon.glyphicon-remove", {"aria-hidden": ""})
114114
])
115115
])
116116
}

0 commit comments

Comments
 (0)