diff --git a/js/iD/controller/DrawWay.js b/js/iD/controller/DrawWay.js new file mode 100644 index 000000000..b07364d93 --- /dev/null +++ b/js/iD/controller/DrawWay.js @@ -0,0 +1,8 @@ +iD.DrawWay = { + enter: function(map) { + console.log('entering'); + return 'foo'; + }, + exit: function(map) { + } +};