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 was archived by the owner on Nov 11, 2022. It is now read-only.
I'm using webpack with angular so I require() angular librairies. Angular and angular ui have a cool convention, when you require the module it returns its name (e.g. angular-resource for ngResource).
This allow using syntax such as
// cool syntaxangular.module('app',[require('angular-resource')]);// i dont like this onerequire('angular-resource');angular.module('app',['ngResource']);
I noticed that ngToast returns nothing (Object{}), can we make it return the string "ngToast" ?
Hello,
I'm using webpack with angular so I
require()angular librairies. Angular and angular ui have a cool convention, when you require the module it returns its name (e.g.angular-resourcefor ngResource).This allow using syntax such as
I noticed that
ngToastreturns nothing (Object{}), can we make it return the string"ngToast"?