Namespace baja.browser.registry
Defined in: browser.js.
| Constructor Attributes | Constructor Name and Description |
|---|---|
|
This namespace is for documentation purposes only and will not actually
be available to Bajascript Apps.
|
| Method Attributes | Method Name and Description |
|---|---|
| <private> <static> |
baja.browser.registry.clearStorage()
In a browser, this overrides
baja.registry.clearStorage
and will clear the web storage content (if the browser supports web storage). |
| <private> <static> |
baja.browser.registry.loadFromStorage()
In a browser, this overrides
baja.registry.loadFromStorage
and will attempt to read any registry information previously stored in web storage
(if the browser supports web storage). |
| <private> <static> |
baja.browser.registry.save(regStorage)
In a browser, this overrides
baja.registry.saveToStorage
and will write its contents to web storage (if the browser supports web storage). |
Namespace Detail
baja.browser.registry
This namespace is for documentation purposes only and will not actually
be available to Bajascript Apps. It details enhancements/decorations
applied to functions in
baja.registry when Bajascript is
deployed to a web browser environment.
Method Detail
<private> <static>
baja.browser.registry.clearStorage()
In a browser, this overrides
baja.registry.clearStorage
and will clear the web storage content (if the browser supports web storage).
<private> <static>
baja.browser.registry.loadFromStorage()
In a browser, this overrides
baja.registry.loadFromStorage
and will attempt to read any registry information previously stored in web storage
(if the browser supports web storage).
<private> <static>
baja.browser.registry.save(regStorage)
In a browser, this overrides
baja.registry.saveToStorage
and will write its contents to web storage (if the browser supports web storage).
- Parameters:
- {Object} regStorage
- the BajaScript registry information to store