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
When using CableReady's updates_for mechanism in combination with futurism, you often don't want to render the placeholders after triggering an update. The only way to do this right now is manually by adding a conditional:
<% if bypass_futurism? %><%= render ... %><% else %><%= futurize ... %><% end %>
The proposed API looks like this:
<%= futurize ... unless: bypass_futurism? %> ... <% end %>
In fact everything is already present from the "skip in test" feature, so this should be a quick one.
The text was updated successfully, but these errors were encountered:
Feature Request
When using CableReady's
updates_for
mechanism in combination with futurism, you often don't want to render the placeholders after triggering an update. The only way to do this right now is manually by adding a conditional:The proposed API looks like this:
In fact everything is already present from the "skip in test" feature, so this should be a quick one.
The text was updated successfully, but these errors were encountered: