removed Meta and allowed binding of HTML

This commit is contained in:
Misko Hevery 2010-04-12 14:30:57 -07:00
parent 2637d4e90c
commit 841640e540

View file

@ -103,9 +103,9 @@ foreach({
}); });
} }
if (state === null){ if (state === null && this['$invalidWidgets']){
// request in flight, mark widget invalid, but don't show it to user // request in flight, mark widget invalid, but don't show it to user
(this['$invalidWidgets']||[]).push(this.$element); this['$invalidWidgets'].markInvalid(this.$element);
} }
return state; return state;
} }