ingenta-lens
Version:
A novel way of seeing content.
20 lines (12 loc) • 481 B
JavaScript
;
var CompositeView = require("../composite/composite_view");
// Substance.Paragraph.View
// ==========================================================================
var ParagraphView = function(node, viewFactory) {
CompositeView.call(this, node, viewFactory);
};
ParagraphView.Prototype = function() {
};
ParagraphView.Prototype.prototype = CompositeView.prototype;
ParagraphView.prototype = new ParagraphView.Prototype();
module.exports = ParagraphView;