ingenta-lens
Version:
A novel way of seeing content.
22 lines (15 loc) • 502 B
JavaScript
var Annotation = require('../annotation/annotation');
var Superscript = function(node, doc) {
Annotation.call(this, node, doc);
};
Superscript.type = {
id: "superscript",
parent: "annotation",
properties: {}
};
Superscript.Prototype = function() {};
Superscript.Prototype.prototype = Annotation.prototype;
Superscript.prototype = new Superscript.Prototype();
Superscript.prototype.constructor = Superscript;
Superscript.fragmentation = Annotation.DONT_CARE;
module.exports = Superscript;