fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Saving dialog, storing change description
[fnpeditor.git]
/
modules
/
documentCanvas
/
documentCanvas.js
diff --git
a/modules/documentCanvas/documentCanvas.js
b/modules/documentCanvas/documentCanvas.js
index
df11ea0
..
9d2e725
100644
(file)
--- a/
modules/documentCanvas/documentCanvas.js
+++ b/
modules/documentCanvas/documentCanvas.js
@@
-6,7
+6,7
@@
define([
'./wlxmlNode',
\r
'libs/text!./template.html'], function(_, transformations, wlxmlNode, template) {
\r
\r
'./wlxmlNode',
\r
'libs/text!./template.html'], function(_, transformations, wlxmlNode, template) {
\r
\r
-
\r
+'use strict';
\r
\r
return function(sandbox) {
\r
\r
\r
return function(sandbox) {
\r
\r
@@
-57,7
+57,7
@@
return function(sandbox) {
_.each(mutation.addedNodes, function(node) {
\r
node = $(node);
\r
node.parent().find('[wlxml-tag]').each(function() {
\r
_.each(mutation.addedNodes, function(node) {
\r
node = $(node);
\r
node.parent().find('[wlxml-tag]').each(function() {
\r
- tag = $(this);
\r
+
var
tag = $(this);
\r
if(!tag.attr('id'))
\r
tag.attr('id', 'xxxxxxxx-xxxx-xxxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {var r = Math.random()*16|0,v=c=='x'?r:r&0x3|0x8;return v.toString(16);}));
\r
});
\r
if(!tag.attr('id'))
\r
tag.attr('id', 'xxxxxxxx-xxxx-xxxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {var r = Math.random()*16|0,v=c=='x'?r:r&0x3|0x8;return v.toString(16);}));
\r
});
\r
@@
-239,8
+239,8
@@
return function(sandbox) {
},
\r
modifyCurrentNode: function(attr, value) {
\r
if(view.currentNode) {
\r
},
\r
modifyCurrentNode: function(attr, value) {
\r
if(view.currentNode) {
\r
- view.
currentNode
.attr('wlxml-'+attr, value);
\r
- sandbox.publish('content
Edit
ed');
\r
+ view.
getNodeElement(view.currentNode)
.attr('wlxml-'+attr, value);
\r
+ sandbox.publish('content
Chang
ed');
\r
}
\r
},
\r
highlightNode: function(wlxmlNode) {
\r
}
\r
},
\r
highlightNode: function(wlxmlNode) {
\r