ingenta-lens
Version:
A novel way of seeing content.
28 lines (20 loc) • 660 B
JavaScript
var Document = require('../../../substance/document');
var Annotation = require('../annotation/annotation');
var InlineImage = function(node, doc) {
Annotation.call(this, node, doc);
};
InlineImage.type = {
id: "inline-image",
parent: "annotation",
properties: {
"target": "image"
}
};
InlineImage.Prototype = function() {};
InlineImage.Prototype.prototype = Annotation.prototype;
InlineImage.prototype = new InlineImage.Prototype();
InlineImage.prototype.constructor = InlineImage;
// Do not fragment this annotation
InlineImage.fragmentation = Annotation.NEVER;
Document.Node.defineProperties(InlineImage);
module.exports = InlineImage;