2
に発射window.blur機能TinyMCEは - エディタのフォーカス
$(window).blur(function(){
_doing_something_wrong.resume();
$('#_put_an_eye_on_users_activity_modal').modal({show : true, keyboard: false,backdrop: 'static'});
});
とTinyMCE
init
を次のように
tinymce.init({
selector:'._editor_statement_question',
setup: function (_editor) {
_editor.on("focus", function() {
$(this.contentAreaContainer.parentElement).find("div.mce-toolbar-grp").show();
});
}
});
を次のように私はwindow.blur
機能を持っているが、私はeditor
で一部のコンテンツを入力しようとしていたときに(_editor.on('focus',function(){}
)window.blur
関数が実行中です。modal
が表示されていることを意味します。 どうすればこの問題を避けることができますか?
私はunbinding
ぼかし機能を試してみましたが、いくつかのヒントが、私はそれを考え出した