forked from relativitydev/relativity-forms-development-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEH Fiddle.cs
More file actions
33 lines (31 loc) · 949 Bytes
/
Copy pathEH Fiddle.cs
File metadata and controls
33 lines (31 loc) · 949 Bytes
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
using kCura.EventHandler;
namespace EH_Fiddle
{
[kCura.EventHandler.CustomAttributes.Description("RelativityForms PageInteractionEventHandler for EH Fiddle")]
[System.Runtime.InteropServices.Guid("d1316a39-0baf-48a7-b88c-f38eac9eb56c")]
public class EH_Fiddle : kCura.EventHandler.PageInteractionEventHandler
{
public override Response PopulateScriptBlocks()
{
// Leave Empty - It is ignored by RelativityForms.
return new kCura.EventHandler.Response();
}
public override string[] ScriptFileNames
{
get
{
return new string[] {
"EH Fiddle.js"
};
}
}
public override string[] AdditionalHostedFileNames
{
get
{
return new string[] {
};
}
}
}
}