mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
805 B
21 lines
805 B
using DashboardDemo.Pages.widgets.Chartjs;
|
|
using DashboardDemo.Pages.widgets.Filters;
|
|
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))]
|
|
[DependsOn(typeof(ChartjsScriptContributor))]
|
|
[DependsOn(typeof(RefreshGlobalFilterScriptContributor))]
|
|
public class MonthlyProfitWidgetScriptBundleContributor : BundleContributor
|
|
{
|
|
public override void ConfigureBundle(BundleConfigurationContext context)
|
|
{
|
|
context.Files.Add("/Pages/widgets/MonthlyProfitWidget/MonthlyProfitWidget.js");
|
|
}
|
|
}
|
|
}
|