Add shortcut for "Move" mode

This commit is contained in:
John Firebaugh
2013-01-25 11:44:46 -05:00
parent da41235b94
commit fd0e7f51ca
+1
View File
@@ -207,6 +207,7 @@ window.iD = function(container) {
});
var keybinding = d3.keybinding('main')
.on('M', function() { if (map.editable()) controller.enter(iD.modes.Browse()); })
.on('P', function() { if (map.editable()) controller.enter(iD.modes.AddPoint()); })
.on('L', function() { if (map.editable()) controller.enter(iD.modes.AddLine()); })
.on('A', function() { if (map.editable()) controller.enter(iD.modes.AddArea()); })