-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathClientCode.js
39 lines (39 loc) · 1.27 KB
/
ClientCode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
///////////////////////////////////////////////////////////////////////
function createInitialSetup()
{
triggerInit();
init();
}
///////////////////////////////////////////////////////////////////////
//exact name required
function continueInitialization()
{
continueInit();
}
///////////////////////////////////////////////////////////////////////
//exact name required
//function processQueue()//due to library architecture now gone-off, same definition twice makes confusion
//{
// processQueue();
//}
///////////////////////////////////////////////////////////////////////
function deleteTrellinatorWebhooks()
{
deleteWebhooks();
}
///////////////////////////////////////////////////////////////////////
//function trialFun(arg, signat, tim)
//{
// if(tim)
// {
// //Browser.msgBox("timestamp from original queue row: " + tim.toString());
// }
//}
/////////////////////////////////////////////////////////////////////////
//function testingSohail()
//{
// var htmlData = HtmlService.createTemplateFromFile("trellinator/TimeTrigUI").getRawContent();
// htmlData = htmlData.replace("{{board-Tab-Name}}","name [some-board-id]");
// var htmlOut = HtmlService.createTemplate(htmlData).evaluate();
// SpreadsheetApp.getUi().showModalDialog(htmlOut, "Options for Time Trigger");
//}