sbin/res/jsdoc/app/test/module.js
author durandn
Fri, 03 Jul 2015 17:00:33 +0200
changeset 1040 be314c4ea4ac
parent 520 fe008e95a716
permissions -rw-r--r--
New widget CurrentSegmentInfobox that displays infos on currently viewed Segment (future features will allow for possibility to edit title descriptions and tags for current segment)

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

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

	var myPrivateMethod = function () {
	}

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