From fd0e7f51cadc0eef55d459665b6e988cd3e4824c Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Fri, 25 Jan 2013 11:44:46 -0500 Subject: [PATCH] Add shortcut for "Move" mode --- js/id/id.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/id/id.js b/js/id/id.js index fa3c1ddb7..c61112e4d 100644 --- a/js/id/id.js +++ b/js/id/id.js @@ -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()); })