add ScrollToPageTop method to ThemeBase

This commit is contained in:
sbwalker 2023-06-08 08:39:20 -04:00
parent 2f5d1cebb0
commit 160477d612

View File

@ -170,6 +170,12 @@ namespace Oqtane.Themes
}
}
public async Task ScrollToPageTop()
{
var interop = new Interop(JSRuntime);
await interop.ScrollTo(0, 0, "smooth");
}
[Obsolete("ContentUrl(int fileId) is deprecated. Use FileUrl(int fileId) instead.", false)]
public string ContentUrl(int fileid)
{