Closed xauxatz closed 7 years ago
In bing.js line 69 there is an error. You have:
+ (opts.offset ? "&offset=" + opts.skip : "")
But it should really be:
+ (opts.skip ? "&offset=" + opts.skip : "")
Yup. You are right. It's fixed with version 3.2.1
In bing.js line 69 there is an error. You have:
But it should really be: