We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f4b3f commit da2c4d5Copy full SHA for da2c4d5
src/annotation.js
@@ -336,9 +336,16 @@ var TextAnnotation = (function TextAnnotationClosure() {
336
337
Util.inherit(TextAnnotation, Annotation, {
338
339
- appendToOperatorList: function TextAnnotation_appendToOperatorList(
340
- operatorList, dependencies, evaluator) {
341
- return;
+ getOperatorList: function TextAnnotation_getOperatorList(evaluator) {
+ var promise = new Promise();
+ promise.resolve({
342
+ queue: {
343
+ fnArray: [],
344
+ argsArray: []
345
+ },
346
+ dependency: {}
347
+ });
348
+ return promise;
349
},
350
351
hasHtml: function TextAnnotation_hasHtml() {
0 commit comments