BwDrawer.prototype.draw = function() {
   var selector = this.selector;
-  d3.json(BwDrawer.onionoo_url, function(error, raw_data) {
-    d3.select(selector).text("");
-    BwDrawer.draw_bandwidth_graph(raw_data, selector);
+  d3.json(BwDrawer.onionoo_url)
+    .then(function(raw_data) {
+      d3.select(selector).text("");
+      BwDrawer.draw_bandwidth_graph(raw_data, selector);
   });
 };