editor: make comment not visible on canvas
[fnpeditor.git] / src / editor / plugins / core / canvasElements.js
index addaeae..0d7cffa 100644 (file)
@@ -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) {
@@ -110,8 +111,9 @@ $.extend(footnote, {
 
 
 return [
-    {tag: 'aside', klass: 'comment', prototype: comment},
-    {tag: 'aside', klass: 'footnote', prototype: footnote}
+    {tag: 'aside', klass: 'comment', prototype: null},
+    {tag: 'aside', klass: 'footnote', prototype: footnote},
+    {tag: 'span', klass: 'link', prototype: linkElement}
 ];