-Removed some mistakenly committed debugger statemets.
This commit is contained in:
parent
a785de2930
commit
3c73a9e160
|
@ -1262,7 +1262,6 @@ Node.prototype._updateDomValue = function () {
|
|||
}
|
||||
//If the node has an enum property and it is editable lets create the select element
|
||||
else if (this.enum && this.editable.value) {
|
||||
debugger;
|
||||
if (!this.dom.select) {
|
||||
this.dom.select = document.createElement('select');
|
||||
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.
|
||||
//Enum types can be also be part of a composite type.
|
||||
if(this.schema){
|
||||
debugger;
|
||||
if(this.schema.hasOwnProperty('enum')){
|
||||
this.enum = new Object();
|
||||
this.enum.enum = this.schema.enum;
|
||||
|
|
Loading…
Reference in New Issue