Skip to content

Instantly share code, notes, and snippets.

@toamitkumar
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save toamitkumar/7e138e85d53bab9014d2 to your computer and use it in GitHub Desktop.

Select an option

Save toamitkumar/7e138e85d53bab9014d2 to your computer and use it in GitHub Desktop.
angular lazy load modules
angular.module('xyzApp', [
'....'
'uiGmapgoogle-maps',
'ui.bootstrap',
'duScroll',
'base64',
'angularModalService',
'oc.lazyLoad'
])
.config(['uiGmapGoogleMapApiProvider', function(uiGmapGoogleMapApiProvider) {
uiGmapGoogleMapApiProvider.configure({
client: 'gme-thomascookukgroup',
v: '3.17'
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment