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
Starting a discussion about what patterns to use in our JS :
AMD module pattern
So we are using requireJS for AMD pattern. Makes the code easier to use and allows loose coupling of all modules ( read more about loose coupling ) . Also makes conditional loading super easy, only load what is required, when it is required.
''' load bootstrap modal JS only when some action requiring modal is called, rather than including it by default'''
The text was updated successfully, but these errors were encountered:
Starting a discussion about what patterns to use in our JS :
AMD module pattern
So we are using requireJS for AMD pattern. Makes the code easier to use and allows loose coupling of all modules ( read more about loose coupling ) . Also makes conditional loading super easy, only load what is required, when it is required.
''' load bootstrap modal JS only when some action requiring modal is called, rather than including it by default'''
The text was updated successfully, but these errors were encountered: