/**
|
* ngTable: Table + Angular JS
|
*
|
* @author Vitalii Savchuk <esvit666@gmail.com>
|
* @url https://github.com/esvit/ng-table/
|
* @license New BSD License <http://creativecommons.org/licenses/BSD/>
|
*/
|
|
(function () {
|
/**
|
* @ngdoc object
|
* @name ngTableDefaultParams
|
* @module ngTable
|
* @description Default Parameters for ngTable
|
*/
|
angular.module('ngTable')
|
.value('ngTableDefaults', {
|
params: {},
|
settings: {}
|
});
|
})();
|