-
Notifications
You must be signed in to change notification settings - Fork 0
nbApp Config
NockBits edited this page Nov 13, 2015
·
1 revision
//-----------------------------------------------------------------------------------------
/**
List of configurable parameters
@namespace nbApp
@module Configuration Set
@class Config
@constructor
*/
nbApp.config = {
/**
Config enable app logger variable
@property ENABLE_APP_LOG
@type { (Boolean) }
@default true
@static
**/
ENABLE_APP_LOG : true,
/**
Config Max characters for upload file module
@property MAX_CHARS_UPLOAD_FILE_MODULE
@type { (Number) }
@default (40) Characters
@final
**/
MAX_CHARS_UPLOAD_FILE_MODULE : 40,
/**
Config Max Upload Size for File Module
@property MAX_SIZE_UPLOAD_FILE_MODULE
@type { (Number) }
@default (1048576*5) 5Mb
@final
**/
MAX_SIZE_UPLOAD_FILE_MODULE: (1048576*5),
/**
Client Config ID
@property CLIENT_CONFIG_SETTINGS
@type { (String) }
@default nbClientConfig
@final
**/
CLIENT_CONFIG_SETTINGS : "nbClientConfig"
};