lichen-annotate-pdf
Version:
Annotation layer for pdf.js in vue fork of Aaron Leong pdf-annotate-vue
14 lines (13 loc) • 335 B
JavaScript
export default {
annotationLayerName: 'annotationLayer',
textLayerName: 'textLayer',
annotationSvgQuery: function() {
return 'svg.' + this.annotationLayerName;
},
annotationClassQuery: function() {
return '.' + this.annotationLayerName;
},
textClassQuery: function() {
return '.' + this.textLayerName;
}
};