diff --git a/src/json/jsonp.js b/src/json/jsonp.js index fb3c85c..56c85c2 100644 --- a/src/json/jsonp.js +++ b/src/json/jsonp.js @@ -54,7 +54,6 @@ function jsonp(url, opts, fn) { cleanup(); if (fn) fn(data, null); }; - console.log(url); url += (~url.indexOf('?') ? '&' : '?') + param + '=' + enc(id); url = url.replace('?&', '?'); script = document.createElement('script');