sbin/res/jsdoc/app/test/module.js
author hamidouk
Fri, 20 Jan 2012 17:26:55 +0100
branchpopcorn-port
changeset 690 b7ac9cfefda4
parent 520 fe008e95a716
permissions -rw-r--r--
WIP - nearly fixed all the bugs with the sliceWidget.js. I still have got to replicate the code for the right handle.

/** @namespace */
myProject = myProject || {};

/** @namespace */
myProject.myModule = (function () {
	/** describe myPrivateVar here */
	var myPrivateVar = "";

	var myPrivateMethod = function () {
	}

	/** @scope myProject.myModule */
	return {
		myPublicMethod: function () {
		}
	};
})();