Skip to content

baasicValueSet.moduleDefinition

Baasic edited this page Jan 18, 2017 · 8 revisions

baasic.valueSet

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:

(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

Clone this wiki locally