From c1e51388623023369bfa7c7ad96238d525566632 Mon Sep 17 00:00:00 2001 From: Matthew Kelly Date: Sat, 26 Feb 2022 20:58:00 +0000 Subject: [PATCH] #270: clean-up --- examples/full.ps1 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/examples/full.ps1 b/examples/full.ps1 index 62e1a8a8..a9adc8ff 100644 --- a/examples/full.ps1 +++ b/examples/full.ps1 @@ -102,10 +102,6 @@ Start-PodeServer -StatusPageExceptions Show { Show-PodeWebToast -Message "Message of the day: $($WebEvent.Data.Value)" Show-PodeWebNotification -Title 'Hello, there' -Body 'General Kenobi' -Icon '/pode.web/images/icon.png' } - New-PodeWebButton -Name 'Example' -Colour Cyan -Outline -NewLine -ScriptBlock { - Show-PodeWebToast -Message "Message of the day: $($WebEvent.Data.Value)" - Show-PodeWebNotification -Title 'Hello, there' -Body 'General Kenobi' -Icon '/pode.web/images/icon.png' - } New-PodeWebContainer -Content @( New-PodeWebButton -Name 'Dark Theme' -NoAuth -Icon 'moon-new' -Colour Dark -ScriptBlock { Update-PodeWebTheme -Name Dark } New-PodeWebButton -Name 'Light Theme' -NoAuth -Icon 'weather-sunny' -Colour Light -ScriptBlock { Update-PodeWebTheme -Name Light }