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 do not know if there is global enable disable alertify flag option currently available or not . so it will be good to have global flag where we could enable disable alertify globally. like in development we use alerts but in product we do not want to show alerts of success errors etc.
The text was updated successfully, but these errors were encountered:
Your request doesn't require any modification of alertify or how to implement it.
Another solution would be on every usage where it is not needed in production make use of a simple check:
if(development){alertify.alert(title,text);}// or a wrapperfunctionprintError(){if(development){alertify.alert.apply(alertify,arguments);}}printError(title,text);
i do not know if there is global enable disable alertify flag option currently available or not . so it will be good to have global flag where we could enable disable alertify globally. like in development we use alerts but in product we do not want to show alerts of success errors etc.
The text was updated successfully, but these errors were encountered: