3
我有一個在twitter引導模式下的CKEditor實例,它工作得很好,除了當您嘗試使用具有文本框或對話框的對話框時下拉不可訪問。CKEditor 4 - 鏈接對話框在twitter引導模式下不起作用
我想知道是否有其他人有這樣的問題,並找到一種方法,使其工作。
感謝
編輯:
我做了一些挖掘和發現hack是固定的問題。
我有一個在twitter引導模式下的CKEditor實例,它工作得很好,除了當您嘗試使用具有文本框或對話框的對話框時下拉不可訪問。CKEditor 4 - 鏈接對話框在twitter引導模式下不起作用
我想知道是否有其他人有這樣的問題,並找到一種方法,使其工作。
感謝
編輯:
我做了一些挖掘和發現hack是固定的問題。
只是把這個引導腳本之後,所有的問題都會固定
<script>
//The final solution code for all bugs ckeditor in twitter bootstrap3' modal
$.fn.modal.Constructor.prototype.enforceFocus = function() {
var $modalElement = this.$element;
$(document).on('focusin.modal',function(e) {
var $parent = $(e.target.parentNode);
if ($modalElement[0] !== e.target
&& !$modalElement.has(e.target).length
&& $(e.target).parentsUntil('*[role="dialog"]').length === 0) {
$modalElement.focus();
}
});
};
</script>
同樣的問題..你解決? –