Fix event reference

This commit is contained in:
John Firebaugh
2013-01-23 12:39:45 -05:00
parent 278bb4a51c
commit 18b3331003
+1 -1
View File
@@ -192,7 +192,7 @@ window.iD = function(container) {
.on('⌃+Z', function() { history.undo(); })
.on('⌘+⇧+Z', function() { history.redo(); })
.on('⌃+⇧+Z', function() { history.redo(); })
.on('⌫', function(e) { e.preventDefault(); });
.on('⌫', function() { d3.event.preventDefault(); });
d3.select(document)
.call(keybinding);