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
An issue in View.prototype.render manifested itself in a recent project: when View.prototype.redraw is called at the same time as View.prototype.render, and the stars align just right, View.prototype.el can end up unset at the time self.el.addClass(self.className); is called. Here's the relevant code in lavaca/mvc/View:
An issue in
View.prototype.render
manifested itself in a recent project: whenView.prototype.redraw
is called at the same time asView.prototype.render
, and the stars align just right,View.prototype.el
can end up unset at the timeself.el.addClass(self.className);
is called. Here's the relevant code inlavaca/mvc/View
:The specific situation reads like this:
Where
childView
callsredraw
on its model's"reset"
event. Changing that to:Appears to have fixed the issue. Observed only on Android compiled so far.
The text was updated successfully, but these errors were encountered: