ソースを参照

[fix] hide popovers on blur frappe/erpnext#8721 (#3330)

version-14
Prateeksha Singh 8年前
committed by Rushabh Mehta
コミット
743cfc625e
1個のファイルの変更7行の追加0行の削除
  1. +7
    -0
      frappe/public/js/lib/summernote/summernote.js

+ 7
- 0
frappe/public/js/lib/summernote/summernote.js ファイルの表示

@@ -3833,6 +3833,13 @@
context.triggerEvent('focusout', event);
});

// hack
$editable.on('blur', function (event) {
setTimeout(function() {
$('.note-popover, .note-control-selection').hide();
}, 500);
});

if (!options.airMode) {
if (options.width) {
$editor.outerWidth(options.width);


読み込み中…
キャンセル
保存