Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 841640e

Browse files
author
Misko Hevery
committed
removed Meta and allowed binding of HTML
1 parent 2637d4e commit 841640e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/validators.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ foreach({
103103
});
104104
}
105105

106-
if (state === null){
106+
if (state === null && this['$invalidWidgets']){
107107
// request in flight, mark widget invalid, but don't show it to user
108-
(this['$invalidWidgets']||[]).push(this.$element);
108+
this['$invalidWidgets'].markInvalid(this.$element);
109109
}
110110
return state;
111111
}

0 commit comments

Comments
 (0)