From 08b29ba99998e38aeec76cc7ed543099ac7fb3c0 Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Thu, 25 Oct 2012 19:34:40 -0400 Subject: [PATCH] First shot at create drawway --- js/iD/controller/DrawWay.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 js/iD/controller/DrawWay.js 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) { + } +};