Dataset/JS/AngularCosmoPage/page.js (18 lines of code) (raw):
/**************************************************
* Page Factory *
* Create Page factory to store *
* page variables globally *
**************************************************/
angular.module('cosmo').factory('Page', function(){
return {
id: 0,
title: '',
description: '',
header: '',
subheader: '',
body: '',
url: '',
type: '',
published: '',
published_date: '',
themePages: [],
timestamp: '',
extras: [],
misc: {}
};
});