+3
-2
lines changedFilter options
+3
-2
lines changed Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
1
1
/* @flow */
2
2
3
-
import { isIE9 } from 'core/util/env'
3
+
import { isIE9, isEdge } from 'core/util/env'
4
4
5
5
import {
6
6
extend,
@@ -42,8 +42,9 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {
42
42
}
43
43
}
44
44
// #4391: in IE9, setting type can reset value for input[type=radio]
45
+
// #6666: IE/Edge forces progress value down to 1 before setting a max
45
46
/* istanbul ignore if */
46
-
if (isIE9 && attrs.value !== oldAttrs.value) {
47
+
if ((isIE9 || isEdge) && attrs.value !== oldAttrs.value) {
47
48
setAttr(elm, 'value', attrs.value)
48
49
}
49
50
for (key in oldAttrs) {
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4