UNPKG

zettapi_client

Version:

Admin panel and client-side CRUD operations in angular to use with zettapi_server rest api to get started quickly in any CMS project.

13 lines (12 loc) 250 B
app.factory('$page', function(projectTitle) { var scaffold = " - " + projectTitle; var title = ""; return { title: function() { return title + scaffold; }, setTitle: function(newTitle) { title = newTitle; } }; });