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
Both frameworks seem to have a button() function so there are intermittent order of execution errors depending on what gets loaded when. So far, I think this issue has been masked but some simple code cleanup has exposed this to be an issue.
Solution is to completely migrate off of jQuery UI as discussed.
The text was updated successfully, but these errors were encountered:
Thinking about this some more. It seems like the best idea is to move all common libraries to common and have each view/collection/model/etc simply include common and call these objects via common.
Example:
Common.backbone.View.extend
vs.
Backbone.View.extend
This way we can better control the order of execution with regard to vendor libs.
Both frameworks seem to have a button() function so there are intermittent order of execution errors depending on what gets loaded when. So far, I think this issue has been masked but some simple code cleanup has exposed this to be an issue.
Solution is to completely migrate off of jQuery UI as discussed.
The text was updated successfully, but these errors were encountered: