mirror of https://github.com/abpframework/abp.git
7 changed files with 25 additions and 17 deletions
@ -0,0 +1 @@ |
|||
|
|||
@ -0,0 +1,17 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Bundling; |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Packages.Clipboard; |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Packages.JQuery; |
|||
using Volo.Abp.Modularity; |
|||
|
|||
namespace DashboardDemo.Pages.widgets |
|||
{ |
|||
[DependsOn(typeof(JQueryScriptContributor))] |
|||
[DependsOn(typeof(ClipboardScriptBundleContributor))] |
|||
public class MyWidgetScriptBundleContributor : BundleContributor |
|||
{ |
|||
public override void ConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
context.Files.Add("/Pages/widgets/MyDashboard.js"); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue