mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2025-10-31 11:56:46 -07:00
15 lines
629 B
HTML
15 lines
629 B
HTML
<script type="text/javascript">
|
|
function sendMessage(msg){
|
|
window.parent.postMessage(msg, '*');
|
|
}
|
|
|
|
</script>
|
|
|
|
<div class="container">
|
|
<button class="btn m-1" onclick="sendMessage({type:'toast', target:'webui', content:{text:'This is an error', type:'error'}});">Error Toast</button>
|
|
<button class="btn m-1" onclick="sendMessage({type:'toast', target:'webui', content:{text:'This is a success', type:'success'}});">Success Toast</button>
|
|
<button class="btn m-1" onclick="sendMessage({type:'toast', target:'webui', content:{text:'This is a toast', type:'default'}});">Classic Toast</button>
|
|
|
|
</div>
|
|
|