Skip to content

Commit

Permalink
fixed 2 correct references of this.executeQuery.
Browse files Browse the repository at this point in the history
They should have been `this.executeQueryTask`.
  • Loading branch information
tmcgee committed Nov 4, 2015
1 parent ce1cd46 commit 26f0d98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions widgets/AttributesTable/_QueryTaskMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ define([
lq.spatialRelationship = qp.spatialRelationship;
}

this.executeQuery({
this.executeQueryTask({
queryOptions: {
queryParameters: lq,
isLinkedQuery: true
Expand Down Expand Up @@ -335,7 +335,7 @@ define([
var qParams = lang.clone(this.queryParameters);
qParams.bufferGeometry = geometries[0];

this.executeQuery({
this.executeQueryTask({
queryOptions: {
queryParameters: qParams,
bufferParameters: this.bufferParameters,
Expand Down

0 comments on commit 26f0d98

Please sign in to comment.