A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/vuejs/vue/commit/c64f9ae1649175ee8cac1c7ecf3283897c948202 below:

properly render value on <progress> in IE/Edge · vuejs/vue@c64f9ae · GitHub

File tree Expand file treeCollapse file tree 1 file changed

+3

-2

lines changed

Filter options

Expand file treeCollapse file tree 1 file changed

+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