diff --git a/js/iD/Connection.js b/js/iD/Connection.js index e055ef982..e32fb2634 100755 --- a/js/iD/Connection.js +++ b/js/iD/Connection.js @@ -208,6 +208,12 @@ iD.Connection = function(apiURL) { connection.loadFromAPI = loadFromAPI; connection.loadFromURL = loadFromURL; connection.getObjectsByBbox = getObjectsByBbox; + connection.doCreateNode = doCreateNode; + connection.doCreateWay = doCreateWay; + connection.doCreateRelation = doCreateRelation; + connection.registerPOI = registerPOI; + connection.unregisterPOI = unregisterPOI; + connection.getPOIs = getPOIs; return connection; }; diff --git a/js/iD/Util.js b/js/iD/Util.js index 0dbbd0860..a5a4e20d2 100644 --- a/js/iD/Util.js +++ b/js/iD/Util.js @@ -38,7 +38,6 @@ iD.Util.presets = function(type, callback) { if (typeof console !== 'undefined') console.error(arguments); }, success: function(resp) { - console.log(resp); iD.Util._presets[type] = resp; return callback(resp); } diff --git a/js/iD/controller/edit/EditBaseState.js b/js/iD/controller/edit/EditBaseState.js index decde3c1e..72b9e0680 100644 --- a/js/iD/controller/edit/EditBaseState.js +++ b/js/iD/controller/edit/EditBaseState.js @@ -40,7 +40,6 @@ declare("iD.controller.edit.EditBaseState", [iD.controller.ControllerState], { // Build presets panel iD.Util.presets(entity.entityType, function(presets) { $presets.empty(); - console.log(presets); _.each(presets, function(pre, category) { $('
') .text(category)