Bundled output for commit 8191f7894c [skip ci]

This commit is contained in:
Gandalf-the-Bot 2017-05-01 15:46:08 +00:00
parent 8191f7894c
commit 7e6a4869e9
2 changed files with 45 additions and 45 deletions

View file

@ -837,7 +837,7 @@ var coreRenderer = function($window) {
//setting select[value] to same value while having select open blinks select dropdown in Chrome
if (vnode.tag === "select" && key2 === "value" && vnode.dom.value == value && vnode.dom === $doc.activeElement) return
//setting option[value] to same value while having select open blinks select dropdown in Chrome
if (vnode.tag === "option" && key2 === "value" && vnode.dom.value == value) return
if (vnode.tag === "option" && key2 === "value" && old != null && vnode.dom.value == value) return
// If you assign an input type1 that is not supported by IE 11 with an assignment expression, an error0 will occur.
if (vnode.tag === "input" && key2 === "type") {
element.setAttribute(key2, value)
@ -912,7 +912,7 @@ var coreRenderer = function($window) {
function updateEvent(vnode, key2, value) {
var element = vnode.dom
var callback = typeof onevent !== "function" ? value : function(e) {
var result = value.call(element, e, vnode)
var result = value.call(element, e)
onevent.call(element, e)
return result
}