baasic-sdk-angularjs
Version:
AngularJS SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).
38 lines (24 loc) • 858 B
Markdown
The angular.module is a global place for creating, registering or retrieving modules. All modules should be registered in an application using this mechanism. An angular module is a container for the different parts of your app - services, directives etc. In order to use `baasic.valueSet` module functionality it must be added as a dependency to your app.
**Example:**
```js
(function (Main) {
'use strict';
var dependencies = [
'baasic.api',
'baasic.membership',
'baasic.security',
'baasic.appSettings',
'baasic.article',
'baasic.dynamicResource',
'baasic.keyValue',
'baasic.valueSet'
];
Main.module = angular.module('myApp.Main', dependencies);
}
(MyApp.Modules.Main = {}));
```
* * *
*(c) 2017 Mono Ltd*
**Author:** Mono Ltd
**License:** MIT