MessagePanel_wev8.js 437 Bytes
define(['mUtil', "Component"],function(mUtil, Component) {
	var MessagePanel = function(options) {
		Component.super(this, options);
		this.type = "MessagePanel";
		this.tpl = this.type + "_html";
		this.css = this.type + "_css";

		var vm = this.viewModel = {
			layoutType:"vertical",
			iconPath:"/mobilemode/piclibrary/03-E9_flat/success.png",
			title : "",
			subtitle : ""
		};
    };

    return Component.init(MessagePanel);
});