プロジェクトの 1 つに tinymce エディターを使用しています。すべて正常に動作しますが、リンク追加ポップアップの動作を変更するだけです。
実際には、ユーザーがエディターから addlink ボタンをクリックしたときに、ポップアップ ウィンドウを特定の場所 (上から 500 ピクセル、左から 500 ピクセル) に配置する必要があります。これも特定のサイズ、つまり 600*600 のみです。
また、もう1つの問題は、フルスクリーンモード(F11を押すことによる)の場合、ポップアップウィンドウの幅と高さが画面(特にmozzilaの場合)と同じですが、サイズ600 * 600のポップアップが重なっている必要がありますメインウィンドウ。これで、フルスクリーン モードで新しいタブが開きます。
tinymce のコードを調べましたが、コードをカスタマイズする場所のファイルを取得できませんでした。基本リンクポップアップを使用しています。
ここに私の初期化コードがあります、
<script type="text/javascript">
tinyMCE.init({mode : "specific_textareas",
theme : "advanced",
editor_selector : "elm1",
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,link,unlink",
theme_advanced_buttons2 :"",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
width: "100%",
skin : "cirkuit",
relative_urls : false,
convert_urls : false ,
oninit : "setPlainText",
plugins : "paste,style",
paste_remove_spans: true,
paste_remove_styles: true,
paste_strip_class_attributes: "all",
inline_styles : false,
content_css:"<?php echo base_url("assets/css/tiny_mce/custom_content.css");?>"
});
</script>
これに対する助けはありますか??
ありがとう