diff options
author | codecalm <codecalm@gmail.com> | 2020-09-18 10:35:14 +0200 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-09-18 10:35:14 +0200 |
commit | 80bc52fc55b2937b855ac05d5861cefd24c5e6f6 (patch) | |
tree | 12d26f19d656179b1fa1b798e72aa539244667b7 /src/editor.html | |
parent | filled icons fix (diff) | |
download | tabler-icons-80bc52fc55b2937b855ac05d5861cefd24c5e6f6.tar.xz |
3 new icons: `circle-square`, `circles`, `triangle-square-circle`
Fixed icons: `circle`, `heart`, `hexagon`, `octagon`, `square-rotated`, `square`, `triangle`
Diffstat (limited to 'src/editor.html')
-rw-r--r-- | src/editor.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/editor.html b/src/editor.html index 9b8e953e..b6c3af72 100644 --- a/src/editor.html +++ b/src/editor.html @@ -62,6 +62,10 @@ layout: default <a class="tab">Tab 3</a> </div> + <div class="mb"> + <textarea rows="10" class="input js-textarea"></textarea> + </div> + <div class="mt-auto"> <input class="input-range js-input-range" type="range" min="1.25" max="2.75" step=".25" value="2"> @@ -116,6 +120,8 @@ layout: default $('.js-icon-manager svg').replaceWith($(this).find('>svg:eq(0)').clone()); + $('.js-textarea').val($(this)[0].innerHTML.trim()); + e.preventDefault(); return false; }) |