소스 검색

Fix summernote ul/ol issue

version-14
Faris Ansari 8 년 전
부모
커밋
07ce1c94d6
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      frappe/public/js/frappe/form/control.js

+ 3
- 2
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 <br>.
// 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() + '<br>' );
$this.html($this.html() + '<br>' );
});
},
onChange: function(value) {


불러오는 중...
취소
저장