X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/2e14f0181735b7acd0da023eb4c9524b75a45b56..203aece6993ed334171bd43dd88bc68ed9d4e7c1:/src/editor/plugins/core/canvasElements.js diff --git a/src/editor/plugins/core/canvasElements.js b/src/editor/plugins/core/canvasElements.js index addaeae..229cd47 100644 --- a/src/editor/plugins/core/canvasElements.js +++ b/src/editor/plugins/core/canvasElements.js @@ -1,9 +1,10 @@ define(function(require) { 'use strict'; -var $ = require('libs/jquery'), - genericElement = require('modules/documentCanvas/canvas/genericElement'); // TODO: This should be accessible via plugin infrastructure +var $ = require('libs/jquery'), + genericElement = require('modules/documentCanvas/canvas/genericElement'), // TODO: This should be accessible via plugin infrastructure + linkElement = require('./links/linkElement'); var widgets = { footnoteHandler: function(clickHandler) { @@ -111,7 +112,8 @@ $.extend(footnote, { return [ {tag: 'aside', klass: 'comment', prototype: comment}, - {tag: 'aside', klass: 'footnote', prototype: footnote} + {tag: 'aside', klass: 'footnote', prototype: footnote}, + {tag: 'span', klass: 'link', prototype: linkElement} ];