-Removed some mistakenly committed debugger statemets.

This commit is contained in:
tdakanalis 2016-04-11 10:00:15 +03:00
parent a785de2930
commit 3c73a9e160
1 changed files with 0 additions and 2 deletions

View File

@ -1262,7 +1262,6 @@ Node.prototype._updateDomValue = function () {
} }
//If the node has an enum property and it is editable lets create the select element //If the node has an enum property and it is editable lets create the select element
else if (this.enum && this.editable.value) { else if (this.enum && this.editable.value) {
debugger;
if (!this.dom.select) { if (!this.dom.select) {
this.dom.select = document.createElement('select'); this.dom.select = document.createElement('select');
this.id = this.field + "_" + new Date().getUTCMilliseconds(); this.id = this.field + "_" + new Date().getUTCMilliseconds();
@ -1941,7 +1940,6 @@ Node.prototype.updateDom = function (options) {
//Search for any enumeration type in the schema of the current node. //Search for any enumeration type in the schema of the current node.
//Enum types can be also be part of a composite type. //Enum types can be also be part of a composite type.
if(this.schema){ if(this.schema){
debugger;
if(this.schema.hasOwnProperty('enum')){ if(this.schema.hasOwnProperty('enum')){
this.enum = new Object(); this.enum = new Object();
this.enum.enum = this.schema.enum; this.enum.enum = this.schema.enum;