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;
}());