Skip to content

Commit

Permalink
remove useless logging, bump to 3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tieniber committed Feb 18, 2022
1 parent 6647149 commit 0523241
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 16 deletions.
Binary file modified dist/GridSearch.mpk
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "GridSearch",
"version": "3.2.2",
"version": "3.2.3",
"description": "Search Mendix Grids and Lists using a number of search widgets.",
"license": "Apache 2",
"author": "Eric Tieniber",
Expand Down
3 changes: 0 additions & 3 deletions src/GridSearch/widget/ActiveFilters.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ define([
blankOptionLabel: "",

postCreate: function () {
mx.logger.debug(this.id + ".postCreate");
this.superPostCreate();

//retrieve state (if available)
Expand All @@ -35,8 +34,6 @@ define([
},

update: function (obj, callback) {
mx.debug(this.id + ".update");

//this._setupGrid();

this._contextObj = obj;
Expand Down
1 change: 0 additions & 1 deletion src/GridSearch/widget/AssociationCheckbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ define([
},

update: function (obj, callback) {
mx.logger.debug(this.id + ".update");
this._setupGrid(this._finishGridSetup.bind(this));

this._contextObj = obj;
Expand Down
2 changes: 0 additions & 2 deletions src/GridSearch/widget/GridFilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ define([
},

update: function (obj, callback) {
mx.logger.debug(this.id + ".update");

this._setupGrid(this._finishGridSetup.bind(this));

this._contextObj = obj;
Expand Down
3 changes: 0 additions & 3 deletions src/GridSearch/widget/GridSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ define([

postCreate: function () {
this.superPostCreate();
mx.logger.debug(this.id + ".postCreate");

if (this.renderAsTextarea) {
this._searchNode = this.searchNodeMulti;
Expand All @@ -54,7 +53,6 @@ define([
},

update: function (obj, callback) {
mx.logger.debug(this.id + ".update");
this._setupGrid(this._finishGridSetup.bind(this));
this._contextObj = obj;
this._updateRendering(callback);
Expand All @@ -63,7 +61,6 @@ define([
t("searchValue", this._searchNode.value);
},
_updateRendering: function (callback) {
mx.logger.debug(this.id + "._updateRendering");

if (callback) { callback() };
},
Expand Down
1 change: 0 additions & 1 deletion src/GridSearch/widget/GridSearchMX.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ define([
},

postCreate: function () {
mx.logger.debug(this.id + ".postCreate");
this.superPostCreate();

this.pathToAttribute = this.pathToAttribute || this.stringPathToAttribute;
Expand Down
3 changes: 0 additions & 3 deletions src/GridSearch/widget/LocalCheckbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ define([
},

postCreate: function () {
mx.debug(this.id + ".postCreate");
this.superPostCreate();

//get static options
Expand All @@ -51,8 +50,6 @@ define([
},

update: function (obj, callback) {
mx.logger.debug(this.id + ".update");

this._setupGrid(this._finishGridSetup.bind(this));

this._contextObj = obj;
Expand Down
1 change: 0 additions & 1 deletion src/GridSearch/widget/ResetButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ define([
buttonCaption: null,
templateString: widgetTemplate,
update: function (obj, callback) {
mx.logger.debug(this.id + ".update");
this.resetButton.innerText = this.buttonCaption || "";

this._setupGrid();
Expand Down
2 changes: 1 addition & 1 deletion src/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://www.mendix.com/package/1.0/">
<clientModule name="GridSearch" version="3.2.1" xmlns="http://www.mendix.com/clientModule/1.0/">
<clientModule name="GridSearch" version="3.2.3" xmlns="http://www.mendix.com/clientModule/1.0/">
<widgetFiles>
<widgetFile path="GridSearch/Comparison.xml"/>
<widgetFile path="GridSearch/GridFilter.xml"/>
Expand Down

0 comments on commit 0523241

Please sign in to comment.