diff --git a/frappe/public/js/frappe/form/control.js b/frappe/public/js/frappe/form/control.js
index a6981d437a..d95d2fe0e4 100755
--- a/frappe/public/js/frappe/form/control.js
+++ b/frappe/public/js/frappe/form/control.js
@@ -1651,9 +1651,10 @@ frappe.ui.form.ControlTextEditor = frappe.ui.form.ControlCode.extend({
// firefox hack that puts the caret in the wrong position
// when div is empty. To fix, seed with a
.
// See https://bugzilla.mozilla.org/show_bug.cgi?id=550434
- $(".note-editable[contenteditable='true']").on('focus', function(){
+ // this function is executed only once
+ $(".note-editable[contenteditable='true']").one('focus', function() {
var $this = $(this);
- $this.html( $this.html() + '
' );
+ $this.html($this.html() + '
' );
});
},
onChange: function(value) {