diff options
author | codecalm <codecalm@gmail.com> | 2020-03-25 23:40:27 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-03-25 23:40:27 +0100 |
commit | c0605bce101fbe34fd31cf1288c9d7513eb1c023 (patch) | |
tree | b408b59a58cfcd0fd194f32fcd78a3fdfa97ec7b /src/editor.html | |
parent | toolbar fixes (diff) | |
download | tabler-icons-c0605bce101fbe34fd31cf1288c9d7513eb1c023.tar.xz |
subscript, superscript #11
Diffstat (limited to 'src/editor.html')
-rw-r--r-- | src/editor.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editor.html b/src/editor.html index 193bcff2..7eefad1f 100644 --- a/src/editor.html +++ b/src/editor.html @@ -2,7 +2,7 @@ layout: default --- -{% assign toolbar = 'arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough|align-left,align-center,align-right,align-justified,line-height|list,list-check|link,photo,table|sort-ascending,sort-descending|indent-increase,indent-decrease' | split: '|' %} +{% assign toolbar = 'arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough|align-left,align-center,align-right,align-justified,line-height|list,list-check|link,photo,table|sort-ascending,sort-descending|indent-increase,indent-decrease|subscript,superscript' | split: '|' %} <div class="container"> @@ -79,7 +79,7 @@ layout: default {% assign buttons = group | split: ',' %} <div class="buttons"> {% for button in buttons %} - <div class="button js-icon" data-icon="{{ name }}">{% include icon.html name=button %}</div> + <div class="button js-icon" data-icon="{{ button }}">{% include icon.html name=button %}</div> {% endfor %} </div> {% endfor %} |