(function() { "use strict"; angular .module("app") .constant("appConstant.dataTable", { // How many items will be displayed per 1 page. // Works only for table paging. Don't confuse it with "REQUEST_PAGE_SIZE". "ITEMS_PER_PAGE": 10, // Which page will be first for displaying at the table. "CURRENT_PAGE": 1, // How many items will be displayed per 1 page. "REQUEST_PAGE_SIZE": 10, // Define which number will be first. "REQUEST_PAGE_NUMBER": 1, // Define the css classes for the sortable behaviour. "SORT_OPTIONS": { "DESC_ICON": "ti-angle-down", "ASC_ICON": "ti-angle-up", "ICON": "#table-sorter-icon", "HEADER_ID_PREFIX": "#table-column-" } }); })();