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
I don't know of a good way to protect private vars from being overwritten. I know @toddself accidentally ran into the situation where he overwrote a private var. Perhaps we could add a list of private vars not to overwrite.
this._hasWindow=typeofwindow!=='undefined'this._id=null// represents the id of the root nodethis._ncID=null// internal nanocomponent idthis._proxy=nullthis._loaded=false// Used to debounce on-load when child-reorderingthis._rootNodeName=nullthis._name=name||'nanocomponent'this._arguments=[]this._handleLoad=this._handleLoad.bind(this)this._handleUnload=this._handleUnload.bind(this)
The text was updated successfully, but these errors were encountered:
I don't know of a good way to protect private vars from being overwritten. I know @toddself accidentally ran into the situation where he overwrote a private var. Perhaps we could add a list of private vars not to overwrite.
The text was updated successfully, but these errors were encountered: