added jsdoc support, and a script to generate the docs.
Also added sample documentation for the IriSP.widget base class.
/**
* @constructor
*/
function Outer() {
/**
* @constructor
*/
function Inner(name) {
/** The name of this. */
this.name = name;
}
this.open = function(name) {
return (new Inner(name));
}
}