Skip to content

Commit

Permalink
Remove console.debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Jelte Lagendijk committed Nov 3, 2015
1 parent 8d470c0 commit e740804
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/CKEditorForMendix/widget/CKEditorForMendix.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ define([

this._hasStarted = true;

console.debug('ckeditorformendix - startup');
//console.debug('ckeditorformendix - startup');

// Create childnodes
if (!this.readOnly) {
Expand All @@ -66,7 +66,7 @@ define([
},

update: function (obj, callback) {
console.debug('ckeditorformendix - update');
//console.debug('ckeditorformendix - update');

this._contextObj = obj;
this._resetSubscriptions();
Expand Down Expand Up @@ -119,7 +119,7 @@ define([
},

_editorChange: function (data) {
console.debug('ckeditorformendix - content has changed. - ' + data);
//console.debug('ckeditorformendix - content has changed. - ' + data);
if (this._contextObj !== null) {
this._contextObj.set(this.messageString, data);
}
Expand All @@ -137,7 +137,7 @@ define([
var seperator1 = null,
seperator2 = null;

console.debug('ckeditorformendix - BASEPATH - ' + window.CKEDITOR_BASEPATH);
//console.debug('ckeditorformendix - BASEPATH - ' + window.CKEDITOR_BASEPATH);

// Create new config
this._settings = [];
Expand Down Expand Up @@ -280,7 +280,7 @@ define([
// in case of data not loaded into editor, because editor was not ready
this._updateRendering();

console.debug('ckeditorformendix - createChildNodes events');
//console.debug('ckeditorformendix - createChildNodes events');
},

_handleValidation: function (validations) {
Expand Down Expand Up @@ -315,7 +315,7 @@ define([

_updateRendering: function () {
if (this._contextObj) {
console.debug(this._contextObj.get(this.messageString));
//console.debug(this._contextObj.get(this.messageString));

domStyle.set(this.domNode, "visibility", "visible");

Expand Down
Binary file modified test/widgets/CKEditorForMendix.mpk
Binary file not shown.

0 comments on commit e740804

Please sign in to comment.