add image filters

This commit is contained in:
ray 2014-12-10 15:12:50 +01:00
parent 0a2126fa74
commit 253564b8bf
2 changed files with 8 additions and 1 deletions

View file

@ -62,7 +62,8 @@ var Bing = function( options ) {
+ qs.stringify({ "Query": "'" + query + "'" })
+ "&$top=" + opts.top
+ "&$skip=" + opts.skip
+ (opts.market ? "&Market=%27" + opts.market + "%27" : '');
+ (opts.market ? "&Market=%27" + opts.market + "%27" : '')
+ (opts.imagefilters ? "&ImageFilters=%27" + opts.imagefilters + "%27" : '');
request({
uri: reqUri,