mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-08 22:14:53 +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);
|
|
})(); |