mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
11 lines
194 B
JavaScript
11 lines
194 B
JavaScript
/**
|
|
* Create a wrapping module to ease having to include too many
|
|
* modules.
|
|
*/
|
|
var IonicModule = angular.module('ionic', [
|
|
// Angular deps
|
|
'ngAnimate',
|
|
'ngSanitize',
|
|
'ui.router'
|
|
]);
|