fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
integration wip: highlight/dim/select node via breadcrumbs
[fnpeditor.git]
/
src
/
editor
/
modules
/
documentCanvas
/
documentCanvas.js
diff --git
a/src/editor/modules/documentCanvas/documentCanvas.js
b/src/editor/modules/documentCanvas/documentCanvas.js
index
88538c4
..
3ca4e46
100644
(file)
--- a/
src/editor/modules/documentCanvas/documentCanvas.js
+++ b/
src/editor/modules/documentCanvas/documentCanvas.js
@@
-40,7
+40,6
@@
return function(sandbox) {
setDocument: function(wlxmlDocument) {
canvas.loadWlxmlDocument(wlxmlDocument);
canvasWrapper.find('#rng-module-documentCanvas-content').empty().append(canvas.view());
setDocument: function(wlxmlDocument) {
canvas.loadWlxmlDocument(wlxmlDocument);
canvasWrapper.find('#rng-module-documentCanvas-content').empty().append(canvas.view());
- sandbox.publish('documentSet');
},
getDocument: function() {
return canvas.toXML();
},
getDocument: function() {
return canvas.toXML();
@@
-54,14
+53,14
@@
return function(sandbox) {
}
sandbox.publish('currentNodeElementChanged', currentNodeElement);
},
}
sandbox.publish('currentNodeElementChanged', currentNodeElement);
},
- highlightElement: function(
element
) {
-
element.toggleHighlight(
true);
+ highlightElement: function(
node
) {
+
canvas.toggleElementHighlight(node,
true);
},
},
- dimElement: function(
element
) {
-
element.toggleHighlight(
false);
+ dimElement: function(
node
) {
+
canvas.toggleElementHighlight(node,
false);
},
},
- jumpToElement: function(
element
) {
- canvas.setCurrentElement(
element
);
+ jumpToElement: function(
node
) {
+ canvas.setCurrentElement(
node
);
},
command: function(command, params) {
commands.run(command, params, canvas);
},
command: function(command, params) {
commands.run(command, params, canvas);