mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-19 22:08:34 -04:00
24 lines
413 B
Plaintext
24 lines
413 B
Plaintext
@namespace MenuProject.Modals
|
|
@inherits MenuProject.Modals.BaseModal
|
|
@using Sandbox;
|
|
@using Menu;
|
|
@using System;
|
|
@using Sandbox.UI
|
|
|
|
<root class="news-modal">
|
|
|
|
<WebPanel class="browser" Url=@Url></WebPanel>
|
|
|
|
</root>
|
|
|
|
@code
|
|
{
|
|
public Sandbox.Services.News News { get; set; }
|
|
public string Url;
|
|
|
|
protected override void OnParametersSet()
|
|
{
|
|
Url = $"https://sbox.game{News.Url}";
|
|
}
|
|
}
|