summaryrefslogtreecommitdiff
path: root/xfa_test/process/script.txt
blob: aceb48c50583763604f20f5fdbd3e2eec6c5a208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function Process(request)
{

//var c = new MyJSObject();

//this.log(c.property1);

var c = app.activeDocs;


if(options["param1"] != "x")
{
	this.output["hello"] = 1;
	log(request.host);
}
else
{
	this.output["hello"] = 2;
	log(request.host);
}
}