blob: 09310d2e400f7e5fbff204659ffa9c2cf0b23647 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
AEB Import FDF Methods
Copyright (C) 2006--2016 AcroTeX.Net
D. P. Story
http://www.acrotex.net
Version 1.0
*/
if ( typeof aebTrustedFunctions == "undefined") {
aebTrustedFunctions = app.trustedFunction( function ( doc, oFunction, oArgs )
{
app.beginPriv();
var retn = oFunction( oArgs, doc )
app.endPriv();
return retn;
});
}
aebImportAnFDF = app.trustPropagatorFunction( function ( oArgs, doc )
{
app.beginPriv();
doc.importAnFDF(oArgs);
app.endPriv();
});
|