add module base class method for ScrollToTop

This commit is contained in:
sbwalker
2023-05-26 07:39:06 -04:00
parent 0f093b1238
commit 4ad5522f9e
3 changed files with 16 additions and 8 deletions

View File

@ -291,6 +291,12 @@ namespace Oqtane.Modules
}
}
public async Task ScrollToTop()
{
var interop = new Interop(JSRuntime);
await interop.ScrollTo(0, 0, "smooth");
}
// logging methods
public async Task Log(Alias alias, LogLevel level, string function, Exception exception, string message, params object[] args)
{