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
/**
* Renders the view only if it is active and part of the DOM.
* @method _renderIfDisplayed
* @private
*/
_renderIfDisplayed: function() {
if (this.isActive() && this.isAttached()) {
this.render();
}
}
Specifically, the view rendering should know if the content inside it will be affected if rendered detatched or deactivated. The view rendering should add it's own prerender logic to block a render command. I don't want to have to think about whether to use myChildView.render() or myChildView.renderIfAttached()
No description provided.
The text was updated successfully, but these errors were encountered: