output direct link for export
This commit is contained in:
parent
2bd7ec3818
commit
90d156e3f2
|
@ -28,7 +28,7 @@
|
|||
<canvas id="canvas_export" width="256" height="256" hidden name="test.png"></canvas>
|
||||
<img id="imageExport" src="" hidden/>
|
||||
<p id="exportSaveMessage" hidden>To save right click and choose "Save image as..."</p>
|
||||
<input type="text" id="fullNeomojiName" name="" value="" readonly hidden/>
|
||||
<a id="fullNeomojiName" hidden></a>
|
||||
<p>Neomojis are from the following sources: </p>
|
||||
<ul>
|
||||
<li><b><a href="https://volpeon.ink/emojis/neofox/" target="_blank" class="links">Neofox</a></b> by <a href="https://is-a.wyvern.rip/@volpeon" target="_blank" class="links">Volpeon</a></li>
|
||||
|
|
|
@ -282,7 +282,9 @@ const NeomojiMixer = (function(NeomojiMixer) {
|
|||
|
||||
ctx.clearRect(0, 0, canvas.width, canvas.height);
|
||||
|
||||
neomoji_name.value = part_handlers.body.getSelectedEntry()[0] + "_" + part_handlers.eyes.getSelectedEntry()[0] + "_" + part_handlers.mouth.getSelectedEntry()[0] + "_" + part_handlers.arms.getSelectedEntry()[0]; //Set name for the emoji to use as the image name and to show as shortcode
|
||||
//Set name for the emoji to use as the image name and to show as shortcode
|
||||
neomoji_name.innerText = part_handlers.body.getSelectedEntry()[0] + "_" + part_handlers.eyes.getSelectedEntry()[0] + "_" + part_handlers.mouth.getSelectedEntry()[0] + "_" + part_handlers.arms.getSelectedEntry()[0];
|
||||
neomoji_name.href = new URL("#" + part_handlers.body.getSelectedEntry()[0] + "+" + part_handlers.eyes.getSelectedEntry()[0] + "+" + part_handlers.mouth.getSelectedEntry()[0] + "+" + part_handlers.arms.getSelectedEntry()[0], document.location.href)
|
||||
|
||||
let export_layers = [
|
||||
part_handlers.body.createExportImage(),
|
||||
|
|
Loading…
Reference in New Issue