15 lines
227 B
JavaScript
15 lines
227 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @ngdoc overview
|
|
* @name angularBootstrapCalendarApp
|
|
* @description
|
|
* # angularBootstrapCalendarApp
|
|
*
|
|
* Main module of the application.
|
|
*/
|
|
angular
|
|
.module('mwl.calendar', [
|
|
'ui.bootstrap'
|
|
]);
|