WIP - nearly fixed all the bugs with the sliceWidget.js. I still have got to
replicate the code for the right handle.
/**
* @constructor
*/
function Outer() {
/**
* @constructor
*/
function Inner(name) {
/** The name of this. */
this.name = name;
}
this.open = function(name) {
return (new Inner(name));
}
}