From b8652c888ba6d2f0d409357d6a0d127f84bee1bf Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Mon, 26 Nov 2012 18:08:02 -0500 Subject: [PATCH] Disable keybindings for now --- css/app.css | 6 +++++- js/iD/id.js | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/css/app.css b/css/app.css index 73683dcf5..a7927cc9f 100644 --- a/css/app.css +++ b/css/app.css @@ -94,6 +94,7 @@ input[type=text]:focus { width:200px; position:absolute; right:300px; + font-size:11px; top:0; padding:10px; } @@ -101,7 +102,6 @@ input[type=text]:focus { #bar .user .logout { text-decoration:underline; margin-left:10px; - font-size:11px; cursor:pointer; } @@ -127,6 +127,10 @@ input[type=text]:focus { color:#eee; } +#bar button.save:hover { + background:#000; +} + #bar button.mini, #bar button.mini { width:auto; diff --git a/js/iD/id.js b/js/iD/id.js index 85b807aed..a0eea97ef 100644 --- a/js/iD/id.js +++ b/js/iD/id.js @@ -134,9 +134,9 @@ var iD = function(container) { if (d3.event.which === 90 && d3.event.metaKey && d3.event.shiftKey) { map.redo(); } - if (d3.event.which === 80) controller.enter(iD.modes.AddPlace); // p - if (d3.event.which === 82) controller.enter(iD.modes.AddRoad); // r - if (d3.event.which === 65) controller.enter(iD.modes.AddArea); // a + // if (d3.event.which === 80) controller.enter(iD.modes.AddPlace); // p + // if (d3.event.which === 82) controller.enter(iD.modes.AddRoad); // r + // if (d3.event.which === 65) controller.enter(iD.modes.AddArea); // a }); var hash = iD.Hash().map(map);