Reputation: 191
I am using the RC. Signaling was working (i use it alot) but then suddenly it stopped and i don't find why.
you see in this code this.signals is quite empty and doesn't contain my name "machines-fetched" (it has some values from translations
BindingSignaler.prototype.signal = function signal(name) {
var bindings = this.signals[name];
if (!bindings) {
return;
}
var i = bindings.length;
while (i--) {
bindings[i].call(_aureliaBinding.sourceContext);
}
};
It only contains some value from translation signal.
Greetings Felix
Upvotes: 0
Views: 567
Reputation: 191
It seems that i added some piece of code with invalid If.bind that caused the signaling from not working anymore:
<span class="badge" if.bind="">
<a click.trigger="totop()">
<i class="material-icons" style="font-size:1.2em"></i>
</a>
</span>
Removing the if.bind="" (or adding a proper variable inside) fixed the problem
Upvotes: 1