sbin/res/jsdoc/app/test/module.js
author hamidouk
Tue, 27 Dec 2011 10:26:02 +0100
branchpopcorn-port
changeset 532 5249bb0cd964
parent 520 fe008e95a716
permissions -rw-r--r--
cosmetical change - moved css code from jquery.css to the stylesheet.

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

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

	var myPrivateMethod = function () {
	}

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