handleman
8/18/2014 - 12:40 PM

Typical module definition

Typical module definition

var MYAPP = MYAPP || {}; //isolated namespace
//общий для всех страниц модуль Функционал общий для всех страниц
MYAPP.mainPage = (function() {
// variables
	var that = {};
	that.settings = {}; //свойства по умолчанию
//dependences	
	var common = MYAPP.common;
//private

// methods
	//инициализация общих свойств
	that.init = function(options) {
		$.extend(this.settings, options);
		var that = this;
			
		
	};
	return that;
}());