mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
15 lines
357 B
Text
15 lines
357 B
Text
|
@{
|
||
|
ViewBag.Title = "Test";
|
||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||
|
}
|
||
|
|
||
|
@{Html.RenderAction("RootDir");}
|
||
|
|
||
|
|
||
|
@(Html.Telerik().ScriptRegistrar().Scripts(c => c.AddGroup("TestGroup", group => group
|
||
|
.Add("telerik.common.js")
|
||
|
.Add("telerik.combobox.js")
|
||
|
.Add("telerik.list.js")
|
||
|
.Add("telerik.autocomplete.js")
|
||
|
)))
|