Core

UWA Runtime Core.

Credits

Partially based on MooTools, My Object Oriented Javascript Tools.  Copyright © 2006-2007 Valerio Proietti, http://mad4milk.net, MIT Style License.

Summary
CoreUWA Runtime Core.
Functions
extendCopies all the properties from the second passed object to the first passed Object.
mergeCopies the properties from the second passed object to the first passed Object if it not exists already.
logLog a message to a console, if one available.

Functions

extend

UWA.extend = function(original,
extended)

Copies all the properties from the second passed object to the first passed Object.

See also

http://docs.mootools.net/Core/Core.js#$extend

Example

TODO

merge

UWA.merge = function()

Copies the properties from the second passed object to the first passed Object if it not exists already.

log

UWA.log = function(message)

Log a message to a console, if one available.

Example

widget.log("Widget is loading ...")
UWA.extend = function(original,
extended)
Copies all the properties from the second passed object to the first passed Object.
UWA.merge = function()
Copies the properties from the second passed object to the first passed Object if it not exists already.
UWA.log = function(message)
Log a message to a console, if one available.