diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-06-30 13:21:20 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-06-30 13:21:20 -0400 |
| commit | 86571a629764be30e6d2e671db9e87c42a72a7f4 (patch) | |
| tree | efd2914bd1018c821dbdf41b9fd12b6a5a17ccd1 /MediaBrowser.WebDashboard/Api/DashboardService.cs | |
| parent | 51bb88fd5a463da4b65ab083e8f1c30b06311896 (diff) | |
update action sheet
Diffstat (limited to 'MediaBrowser.WebDashboard/Api/DashboardService.cs')
| -rw-r--r-- | MediaBrowser.WebDashboard/Api/DashboardService.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.WebDashboard/Api/DashboardService.cs b/MediaBrowser.WebDashboard/Api/DashboardService.cs index 8793a80ea..b7f08da3e 100644 --- a/MediaBrowser.WebDashboard/Api/DashboardService.cs +++ b/MediaBrowser.WebDashboard/Api/DashboardService.cs @@ -319,8 +319,9 @@ namespace MediaBrowser.WebDashboard.Api // But we do need this CopyFile(Path.Combine(creator.DashboardUIPath, "bower_components", "webcomponentsjs", "webcomponents-lite.min.js"), Path.Combine(path, "bower_components", "webcomponentsjs", "webcomponents-lite.min.js")); CopyFile(Path.Combine(creator.DashboardUIPath, "bower_components", "velocity", "velocity.min.js"), Path.Combine(path, "bower_components", "velocity", "velocity.min.js")); - CopyFile(Path.Combine(creator.DashboardUIPath, "bower_components", "swipebox", "src", "css", "swipebox.min.css"), Path.Combine(path, "bower_components", "swipebox", "src", "css", "swipebox.min.css")); - CopyFile(Path.Combine(creator.DashboardUIPath, "bower_components", "swipebox", "src", "js", "jquery.swipebox.min.js"), Path.Combine(path, "bower_components", "swipebox", "src", "js", "jquery.swipebox.min.js")); + CopyDirectory(Path.Combine(creator.DashboardUIPath, "bower_components", "swipebox", "src", "css"), Path.Combine(path, "bower_components", "swipebox", "src", "css")); + CopyDirectory(Path.Combine(creator.DashboardUIPath, "bower_components", "swipebox", "src", "js"), Path.Combine(path, "bower_components", "swipebox", "src", "js")); + CopyDirectory(Path.Combine(creator.DashboardUIPath, "bower_components", "swipebox", "src", "img"), Path.Combine(path, "bower_components", "swipebox", "src", "img")); } MinifyCssDirectory(Path.Combine(path, "css")); |
