UNPKG

baasic-sdk-angularjs

Version:

AngularJS SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).

12 lines 448 B
/* globals module */ /** * @module baasicConstants * @description Baasic constants contain values such as _id_ property name and _model_ property name parameters that can be used in case manual model or option transformation is needed. */ (function (angular, module, undefined) { 'use strict'; module.constant('baasicConstants', { idPropertyName: 'id', modelPropertyName: 'model' }); }(angular, module));