summaryrefslogtreecommitdiff
path: root/texmf-dist/doc/latex/aeb-pro/aeb.js
diff options
context:
space:
mode:
Diffstat (limited to 'texmf-dist/doc/latex/aeb-pro/aeb.js')
-rw-r--r--texmf-dist/doc/latex/aeb-pro/aeb.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/texmf-dist/doc/latex/aeb-pro/aeb.js b/texmf-dist/doc/latex/aeb-pro/aeb.js
deleted file mode 100644
index 09310d2e..00000000
--- a/texmf-dist/doc/latex/aeb-pro/aeb.js
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- 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();
-});