Skip to content

Commit

Permalink
Removed space
Browse files Browse the repository at this point in the history
  • Loading branch information
gagan-bansal authored Oct 4, 2019
1 parent cf281a0 commit 0d05bab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/dataTables.cellEdit.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,9 @@ function getInputHtml(currentColumnIndex, settings, oldValue) {
case "number-confirm" :
input.html = startWrapperHtml + "<input id='ejbeatycelledit' type='number' class='" + inputCss + "' value='"+oldValue+"'" + (listenToKeys ? " onkeyup='if(event.keyCode==13) {$(this).updateEditableCell(this);} else if (event.keyCode===27) {$(this).cancelEditableCell(this);}'" : "") + "></input>&nbsp;<a href='javascript:void(0);' class='" + confirmCss + "' onclick='$(this).updateEditableCell(this)'>Confirm</a> <a href='javascript:void(0);' class='" + cancelCss + "' onclick='$(this).cancelEditableCell(this)'>Cancel</a>" + endWrapperHtml;
break;
default: // text input
input.html = startWrapperHtml + "<input id='ejbeatycelledit' class='" + inputCss + "' onfocusout='$(this).updateEditableCell(this)' value='" + oldValue + "'></input>" + endWrapperHtml;
break;
default: // text input
input.html = startWrapperHtml + "<input id='ejbeatycelledit' class='" + inputCss + "' onfocusout='$(this).updateEditableCell(this)' value='" + oldValue + "'></input>" + endWrapperHtml;
break;
}
return input;
}
Expand Down

0 comments on commit 0d05bab

Please sign in to comment.