- Version:
- 0.0.18
- Tutorials:
Classes
Namespaces
Members
-
staticjMod.build_timestring
-
Date of build
-
staticjMod.build_typestring
-
Current build type (beta|release)
-
staticjMod.debugboolean
-
Is debug mode enabled
-
staticjMod.Loadingobject
-
List of loading states for jMod
Properties:
Name Type Description DOMLoadedboolean CSSAddedboolean documentCompleteboolean jModReadyboolean Completeboolean -
staticjMod.SendMessage
-
Function for sending and receiving data from a remote host function SendMessage
-
staticjMod.versionstring
-
Current API version
Methods
-
staticjMod.deleteValue(key)
F:/Projects/jMod/main/bin/jMod.full.js, line 4391 -
Delete a value from the default storage engine (see
Storage configuration)Name Type Description keystring name to be deleted -
staticjMod.Element(2)(data, data2)
F:/Projects/jMod/main/bin/jMod.full.js, line 2340 -
Name Type Description datastring | object (string) Command to execute | (object) options for new element data2* optional Arguments for command -
staticjMod.extend(arg1, arg2, arg3)
F:/Projects/jMod/main/bin/jMod.full.js, line 969 -
Copy all the properties of one object onto another. If only a single object is given, the properties are copied onto the jMod object.
This version of extend is designed to handle scope and permission issues by cloning the object into the correct scope when an error occurs.
Based on jQuery.extendName Type Description arg1boolean | object (boolean) make deep copy, (object) target object if multiple object arguments exist, (object) object to copy onto jMod object if it is the only input arg2object optional Object to copy to target (if arg1 is object) or target object (if arg1 is boolean and arg3 exists) or object to copy onto jMod object arg3object optional repeatable Object to copy onto target object -
staticjMod.extendp(arg1, arg2, arg3)
F:/Projects/jMod/main/bin/jMod.full.js, line 1057 -
Same as
jMod.extendexcept arrays are preserved. So if both target[x] and input[x] are arrays, instead of being overwritten, all the elements of input[x] are appended to target[x].
Based on jQuery.extendName Type Description arg1boolean | object (boolean) make deep copy, (object) target object if multiple object arguments exist, (object) object to copy onto jMod object if it is the only input arg2object optional Object to copy to target (if arg1 is object) or target object (if arg1 is boolean and arg3 exists) or object to copy onto jMod object arg3object optional repeatable Object to copy onto target object - See:
-
staticjMod.getJSON(key, def)
F:/Projects/jMod/main/bin/jMod.full.js, line 4355 -
Get a JSON object from the default storage engine (see
Storage configuration)Name Type Description keystring name defobject optional default value to return if key does not exist -
staticjMod.getValue(key, def)
F:/Projects/jMod/main/bin/jMod.full.js, line 4319 -
Get a value from the default storage engine (see
Storage configuration)Name Type Description keystring name defstring | boolean | number optional default value to return if key does not exist -
staticjMod.Modal(2)(data, data2)
F:/Projects/jMod/main/bin/jMod.full.js, line 6777 -
Name Type Description datastring | object (string) Command to execute | (object) options for new modal to display data2object | boolean optional (object) Arguments for command | (boolean) show new modal immediately -
staticjMod.Notification(2)(data, data2)
F:/Projects/jMod/main/bin/jMod.full.js, line 5767 -
Name Type Description datastring | object Command to execute or notification data data2* optional repeatable - See:
-
staticjMod.RealTypeOf(_obj){string}
F:/Projects/jMod/main/bin/jMod.full.js, line 880 -
Determine the real type of an object.
Designed to handle scope and permission issues by cloning the object into the correct scope when an error occurs.Name Type Description _objobject Returns:
Type Description string undefined, object, map, number, nan, null, date, invaliddate, array, regex -
staticjMod.setJSON(key, value)
F:/Projects/jMod/main/bin/jMod.full.js, line 4373 -
Set an object in the default storage engine (see
Storage configuration)Name Type Description keystring name valuestring | boolean | number optional value to be set -
staticjMod.Settings(2)(data, data2)
F:/Projects/jMod/main/bin/jMod.full.js, line 7267 -
Name Type Description datastring | object (string) Command to execute | (object) options for new settings modal data2object | boolean optional (object) Arguments for command | (boolean) show new settings modal immediately -
staticjMod.setValue(key, value)
F:/Projects/jMod/main/bin/jMod.full.js, line 4337 -
Set a value in the default storage engine (see
Storage configuration)Name Type Description keystring name valuestring | boolean | number optional value to be set