diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-10-22 11:03:08 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-10-22 11:03:08 -0400 |
| commit | 4c8236d887f4f57a54f78e140536ffbe5a15615f (patch) | |
| tree | 0477da5690f694c4a57846e1b0bf4b5e382f0662 | |
| parent | f19227c0e0d4557fa1c860829488bb83fba477fd (diff) | |
switch drag & drop lib
| -rw-r--r-- | MediaBrowser.WebDashboard/Api/DashboardService.cs | 3 | ||||
| -rw-r--r-- | MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj | 9 |
2 files changed, 4 insertions, 8 deletions
diff --git a/MediaBrowser.WebDashboard/Api/DashboardService.cs b/MediaBrowser.WebDashboard/Api/DashboardService.cs index be64fc2f4..030dc7f33 100644 --- a/MediaBrowser.WebDashboard/Api/DashboardService.cs +++ b/MediaBrowser.WebDashboard/Api/DashboardService.cs @@ -335,8 +335,7 @@ namespace MediaBrowser.WebDashboard.Api 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")); + CopyFile(Path.Combine(creator.DashboardUIPath, "bower_components", "Sortable", "Sortable.min.js"), Path.Combine(path, "bower_components", "Sortable", "Sortable.min.js")); } MinifyCssDirectory(Path.Combine(path, "css")); diff --git a/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj b/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj index 945198d99..50bad0aa9 100644 --- a/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj +++ b/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj @@ -110,12 +110,6 @@ <Content Include="dashboard-ui\apiclient\sync\serversync.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
- <Content Include="dashboard-ui\bower_components\dragula.js\dist\dragula.min.css">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="dashboard-ui\bower_components\dragula.js\dist\dragula.min.js">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
<Content Include="dashboard-ui\bower_components\fastclick\lib\fastclick.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
@@ -137,6 +131,9 @@ <Content Include="dashboard-ui\bower_components\requirejs\require.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
+ <Content Include="dashboard-ui\bower_components\Sortable\Sortable.min.js">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
<Content Include="dashboard-ui\bower_components\swipebox\src\css\swipebox.min.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
|
