All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.components.template.Model.js Maven / Gradle / Ivy

The newest version!
define(function(require){

	var $ = require("jquery"),
		MV = require("mv"),
		ViewTemplate = require("text!./View.html");

	return function(cfg){
		
		var self = this;
		
		this.html = ViewTemplate;
		
		this.config = $.extend({
			title: "Template",
			version: "",
			items: [{
				href: "#",
				title: "Start"
			}],
			logoutButton: typeof(cfg.logout) === "function"
			//logout: fn()
		}, cfg);
		

		
	};

});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy