v1.0
只读模式 group, 分享 评论更多问题 博客标签总是存在一个
This commit is contained in:
9
public/tinymce/classes/LegacyInput.js
Normal file → Executable file
9
public/tinymce/classes/LegacyInput.js
Normal file → Executable file
@ -54,9 +54,12 @@ define("tinymce/LegacyInput", [
|
||||
},
|
||||
|
||||
u: function(dom, node) {
|
||||
replaceWithSpan(node, {
|
||||
textDecoration: 'underline'
|
||||
});
|
||||
// HTML5 allows U element
|
||||
if (editor.settings.schema === "html4") {
|
||||
replaceWithSpan(node, {
|
||||
textDecoration: 'underline'
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
strike: function(dom, node) {
|
||||
|
Reference in New Issue
Block a user