mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-03-03 18:29:17 +00:00
6 lines
209 B
JavaScript
6 lines
209 B
JavaScript
|
(function () {
|
||
|
var todoapp = angular.module('todoapp');
|
||
|
todoapp.constant('sharepointApi', '/sites/todo/_api/');
|
||
|
todoapp.constant('todoListName', 'Todo');
|
||
|
todoapp.constant('hideFinishedTasks', false);
|
||
|
})();
|