(function () { "use strict"; angular.module('shared') .constant('constantValues', { "GRID_VIEW":"grid", "LIST_VIEW":"list", "RESOURCES_PER_PAGE":48, "TYPE_GRAPHIC_COMIC_HUMOR_BOOKS": 'graphic-comic-humor', "TYPE_LEVELED_BOOKS" : 'leveled-books', "TYPE_CLASSIC_BOOKS" : 'classic-books', "TYPE_FICTION_SERIES" : 'fiction-series', "TYPE_CLOSE_READ_PASSAGES" : 'close-read-passages', "POETRY_NURSERY_SONG" : 'poetry-nursery-song', "SORT_OPTIONS": [{field:'sortableTitle', key:'sortable_title', reverse:false, name:'Alphabetical A to Z'}, {field:'sortableTitle', key:'title desc', reverse:true, name:'Alphabetical Z to A'}, {field:'downloadCount', key:'download_count desc', reverse:true, name:'Most Popular'}, {field:'createAt', key:'create_at desc', reverse:false, name:'Newest Books First'}] } ) })();