Skip to content

Instantly share code, notes, and snippets.

@metavige
Created January 8, 2014 08:13
Show Gist options
  • Save metavige/8313450 to your computer and use it in GitHub Desktop.
Save metavige/8313450 to your computer and use it in GitHub Desktop.
controller sample
define([''], function () {
'use strict';
return {
initialize: function () {
// initialize function!
},
/**
* 初始化要顯示在操作區的 View, Home 首頁
*/
index: "home index view",
/**
* 設定 Global Action
*/
globalAction: [{
id: 'id',
disable: false,
text: 'text',
icon: 'icon',
title: 'title',
click: function () {
// Click Code
},
}],
// ==================================================
// 定義 Dialog
// ==================================================
dialogs: [{
id: 'id',
view: 'viewname',
dialogOptions: {}
}]
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment