sbin/res/jsdoc/app/test/module.js
author hamidouk
Tue, 14 Feb 2012 17:13:44 +0100
branchpopcorn-port
changeset 808 f7de8a24fc74
parent 520 fe008e95a716
permissions -rw-r--r--
forgot to remove an image reference. It's in css now.

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

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

	var myPrivateMethod = function () {
	}

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