Skip to content

Commit

Permalink
Remove object logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Jelte Lagendijk committed May 2, 2018
1 parent da0d327 commit 9563d78
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "calendar",
"version": "5.4.0",
"version": "5.4.1",
"description": "This is a calendar widget for Mendix. It shows a Calendar and can render objects as events in it.",
"license": "Apache License, Version 2.0, January 2004",
"author": "Mendix 2016",
Expand Down
4 changes: 2 additions & 2 deletions src/calendar/widget/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ define([
},

_onEventChange: function(event, dayDelta, revertFunc) {
logger.debug(this.id + "._onEventChange", event);
logger.debug(this.id + "._onEventChange");
var obj = event.mxobject;
this._setVariables(obj, event, this.startAttr, this.endAttr, event.allDay);
if (this.resourceEntity && this.resourceEventPath) {
Expand All @@ -447,7 +447,7 @@ define([
},

_onEventClick: function(event) {
logger.debug(this.id + "._onEventClick", event);
logger.debug(this.id + "._onEventClick");
var obj = event.mxobject;
this._setVariables(obj, event, this.startAttr, this.endAttr, event.allDay);
if (this.resourceEntity && this.resourceEventPath) {
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="Calendar" version="5.4.0" xmlns="http://www.mendix.com/clientModule/1.0/">
<clientModule name="Calendar" version="5.4.1" xmlns="http://www.mendix.com/clientModule/1.0/">
<widgetFiles>
<widgetFile path="calendar/calendar.xml"/>
<widgetFile path="calendar/calendar-scheduler.xml"/>
Expand Down
Binary file modified test/widgets/calendar.mpk
Binary file not shown.

0 comments on commit 9563d78

Please sign in to comment.