-
Notifications
You must be signed in to change notification settings - Fork 933
Open
Description
I use requirejs for loading my module. In requirejs, I add below code:
require.config({
baseUrl: 'libs'.
paths: {
'angular': 'path/to/angular',
'angular-timer': 'angular-timer/dist/angular-timer.min',
'humanize-duration': 'path/to/humanize',
'moment': 'path/to/moment'
},
shim: {
'angular-timer': ['angular', 'moment', 'humanize-duration']
}
});
But, the console always said that humanizeDuration is not defined, but moment is defined inside angular-timer.min.js
Metadata
Metadata
Assignees
Labels
No labels