views.visualEditing.setView('leftColumn', sandbox.getModule('documentCanvas').getView());
},
- nodeHovered: function(canvasNode) {
- commands.highlightDocumentNode(canvasNode);
- },
-
- nodeBlured: function(canvasNode) {
- commands.dimDocumentNode(canvasNode);
- },
-
selectionChanged: function(selection) {
commands.refreshCanvasSelection(selection);
}
var txt = gettext('Do you really want to exit?');
if(documentIsDirty) {
txt += ' ' + gettext('Document contains unsaved changes!');
+ event.returnValue = txt; // FF
+ return txt; // Chrome
}
- event.returnValue = txt; // FF
- return txt; // Chrome
});
/* api */