UNPKG
mdui.editor
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Material Design 样式的富文本编辑器
github.com/zdhxiong/mdui.editor
zdhxiong/mdui.editor
mdui.editor
/
es
/
menus
/
ol.js
14 lines
(13 loc)
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
'mdui.jq/es/methods/find'
;
import
MenuListAbstract
from
'../abstracts/menuListAbstract'
;
/** * 有序列表 */
class
Ol
extends
MenuListAbstract
{
getName
(
) {
return
'ol'
; } }
Ol
.
icon
=
'format_list_numbered'
;
Ol
.
title
=
'有序列表'
;
export
default
Ol
;