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
{{ message }}
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
Line# 205
constructor (options?) { super(options);
//... is a list tag.
this.tagName = "li";
Though it's requested by new ts version that super should be the first element, it doesn't make sense when js is compiled. It just does't work. Backbone seems to need super call later. How to avoid this?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Line# 205
constructor (options?) {
super(options);
//... is a list tag.
this.tagName = "li";
Though it's requested by new ts version that super should be the first element, it doesn't make sense when js is compiled. It just does't work. Backbone seems to need super call later. How to avoid this?
The text was updated successfully, but these errors were encountered: