Skip to content

Commit ce5ff8f

Browse files
author
Ameya Chikodi
committed
removed callback from query.columns function
1 parent 48aac77 commit ce5ff8f

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

ClearBlade.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1264,14 +1264,17 @@ if (!window.console) {
12641264
* query.columns(["name","age"], callback);
12651265
* //gets values in columns name and age
12661266
*/
1267-
query.columns = function(queryString,callback){
1267+
query.columns = function(queryString){
1268+
12681269
var reqOptions = {
12691270
method: 'GET',
12701271
qs: 'query=' + _parseQuery({"SELECTCOLUMNS": JSON.parse(queryString)}),
12711272
user: this.user,
12721273
endpoint: this.endpoint,
12731274
URI: this.URI
1274-
};
1275+
};
1276+
1277+
};
12751278

12761279
/**
12771280
* Removes an item or set of items from the Query

0 commit comments

Comments
 (0)