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
A namespace is needed because your plugin uses a global function.
In the current structure, only window 1depth objects can be registered.
parse: (value,attribute,element)=>{constfn=(()=>{if(typeofwindow!=="undefined"&&valueinwindow){// @ts-expect-errorreturnwindow[value]// only window 1depth objects can be registered!!}if(typeofglobal!=="undefined"&&valueinglobal){// @ts-expect-errorreturnglobal[value]}})()returntypeoffn==="function" ? fn.bind(element) : undefined},
It would be nice to modify this part so that it can be defined as N depth.
<custom-elefunc="action" /> ( O )
<custom-elefunc="ns.action" /> ( X )
<custom-elefunc="ns.action.get" /> ( X )
The text was updated successfully, but these errors were encountered:
A namespace is needed because your plugin uses a global function.
In the current structure, only window 1depth objects can be registered.
It would be nice to modify this part so that it can be defined as N depth.
The text was updated successfully, but these errors were encountered: