diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-10-21 01:10:02 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-10-21 01:10:02 -0400 |
| commit | 546bf571ae4a4a9ab4d627bd383438ff95eca5da (patch) | |
| tree | 923108af2cfbf5c8664319028294968958475348 | |
| parent | 0c7e06648c23f557bfd0038da99c0138a172834a (diff) | |
fix editor icons
| -rw-r--r-- | MediaBrowser.WebDashboard/Api/DashboardService.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.WebDashboard/Api/DashboardService.cs b/MediaBrowser.WebDashboard/Api/DashboardService.cs index 3cb4a4cee..be64fc2f4 100644 --- a/MediaBrowser.WebDashboard/Api/DashboardService.cs +++ b/MediaBrowser.WebDashboard/Api/DashboardService.cs @@ -334,6 +334,9 @@ namespace MediaBrowser.WebDashboard.Api CopyDirectory(Path.Combine(creator.DashboardUIPath, "bower_components", "swipebox", "src", "img"), Path.Combine(path, "bower_components", "swipebox", "src", "img")); CopyFile(Path.Combine(creator.DashboardUIPath, "bower_components", "hammerjs", "hammer.min.js"), Path.Combine(path, "bower_components", "hammerjs", "hammer.min.js")); + + CopyFile(Path.Combine(creator.DashboardUIPath, "bower_components", "dragula.js", "dist", "dragula.min.js"), Path.Combine(path, "bower_components", "dragula.js", "dist", "dragula.min.js")); + CopyFile(Path.Combine(creator.DashboardUIPath, "bower_components", "dragula.js", "dist", "dragula.min.css"), Path.Combine(path, "bower_components", "dragula.js", "dist", "dragula.min.css")); } MinifyCssDirectory(Path.Combine(path, "css")); |
