429
回編集
12行目: | 12行目: | ||
置換前 | 置換前 | ||
置換<span style="background-color: navy; color: white;" />後 | 置換<span style="background-color: navy; color: white;" />後 | ||
* とりあえず,空<span>タグはTextRichEditor終了時に削り取るコードを追加 | |||
* extensions/FCKeditor/plugins/mediawiki/fckplugin.js を以下のように修正 | |||
<syntaxhighlight lang="php"> | |||
case 'fck_mw_gallery' : | |||
sNodeName = 'gallery' ; | |||
break ; | |||
case 'fck_mw_onlyinclude' : | |||
sNodeName = 'onlyinclude' ; | |||
break ; | |||
// NIJC: remove empty span elements | |||
default: | |||
if ( htmlNode.innerHTML.match(/^\s*$/) ) | |||
return; | |||
} | |||
</syntaxhighlight> |