mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-08 22:14:53 +00:00
15 lines
297 B
JavaScript
15 lines
297 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
var todoapp = angular.module('todoapp', [
|
|
'officeuifabric.core',
|
|
'officeuifabric.components'
|
|
]);
|
|
|
|
todoapp.config(['$logProvider', function ($logProvider) {
|
|
if ($logProvider.debugEnabled) {
|
|
$logProvider.debugEnabled(true);
|
|
}
|
|
}]);
|
|
})();
|