TipPanel_wev8.js 425 Bytes
define(['mUtil', "Component"],function(mUtil, Component) {
	var TipPanel = function(options) {
		Component.super(this, options);
		this.type = "TipPanel";
		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(TipPanel);
});