You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If stringParams is enabled and x-foo isn't in the helpers hash, I'd like to be able to catch this in blockHelperMissing, but the problem is that the first parameter of blockHelperMissing ends up getting the undefined result of currentContext['x-foo'], which completely prevents me from doing something special with this value.
Context: this is important for Ember to be able to hook into for the purposes of detecting container-registered helpers and components. Without fixing this directly in handlebars, I'm forced to do this following terrible hax:
If
stringParams
is enabled andx-foo
isn't in thehelpers
hash, I'd like to be able to catch this inblockHelperMissing
, but the problem is that the first parameter ofblockHelperMissing
ends up getting theundefined
result ofcurrentContext['x-foo']
, which completely prevents me from doing something special with this value.Context: this is important for Ember to be able to hook into for the purposes of detecting container-registered helpers and components. Without fixing this directly in handlebars, I'm forced to do this following terrible hax:
The text was updated successfully, but these errors were encountered: