|
5 | 5 | @inject ICachedUniqueKeyPerUser CachedUniqueKeyPerUser
|
6 | 6 | @inject IGetScriptsResponsePerUserConfiguration GetScriptsResponsePerUserConfiguration
|
7 | 7 |
|
8 |
| -<environment names="Development"> |
9 |
| - @*core scripts start*@ |
10 |
| - <script src="~/libs/jquery/jquery.js" asp-append-version="true"></script> |
11 |
| - @*core scripts end*@ |
12 |
| - |
13 |
| - @*admin-lte scripts start*@ |
14 |
| - <script src="~/libs/bootstrap/dist/js/bootstrap.bundle.js" asp-append-version="true"></script> |
15 |
| - <script src="~/libs/datatables/js/jquery.dataTables.min.js" asp-append-version="true"></script> |
16 |
| - <script src="~/view-resources/Views/_Bundles/helpers.min.js" asp-append-version="true"></script> |
17 |
| - <script src="~/view-resources/Views/_Bundles/datatables.ajax.min.js" asp-append-version="true"></script> |
18 |
| - <script src="~/libs/datatables/js/dataTables.bootstrap4.min.js" asp-append-version="true"></script> |
19 |
| - <script src="~/libs/datatables/js/dataTables.responsive.min.js" asp-append-version="true"></script> |
20 |
| - <script src="~/libs/datatables/js/responsive.bootstrap4.min.js" asp-append-version="true"></script> |
21 |
| - <script src="~/libs/datatables/js/dataTables.buttons.js" asp-append-version="true"></script> |
22 |
| - <script src="~/libs/datatables/js/buttons.bootstrap4.js" asp-append-version="true"></script> |
23 |
| - <script src="~/libs/admin-lte/dist/js/adminlte.js" asp-append-version="true"></script> |
24 |
| - @*admin-lte scripts end*@ |
25 |
| - |
26 |
| - @*abp scripts start*@ |
27 |
| - <script src="~/libs/block-ui/jquery.blockUI.js" asp-append-version="true"></script> |
28 |
| - <script src="~/libs/spin/spin.js" asp-append-version="true"></script> |
29 |
| - <script src="~/libs-ext/spin/jquery.spin.js" asp-append-version="true"></script> |
30 |
| - <script src="~/libs/sweetalert/sweetalert.min.js" asp-append-version="true"></script> |
31 |
| - <script src="~/libs/toastr/toastr.min.js" asp-append-version="true"></script> |
32 |
| - <script src="~/libs/moment/moment-with-locales.js" asp-append-version="true"></script> |
33 |
| - <script src="~/libs/signalr/dist/browser/signalr.js" asp-append-version="true"></script> |
34 |
| - <script src="~/libs/abp-web-resources/Abp/Framework/scripts/abp.js" asp-append-version="true"></script> |
35 |
| - <script src="~/libs/abp-web-resources/Abp/Framework/scripts/libs/abp.jquery.js" asp-append-version="true"></script> |
36 |
| - <script src="~/libs/abp-web-resources/Abp/Framework/scripts/libs/abp.toastr.js" asp-append-version="true"></script> |
37 |
| - <script src="~/libs/abp-web-resources/Abp/Framework/scripts/libs/abp.blockUI.js" asp-append-version="true"></script> |
38 |
| - <script src="~/libs/abp-web-resources/Abp/Framework/scripts/libs/abp.spin.js" asp-append-version="true"></script> |
39 |
| - <script src="~/libs/abp-web-resources/Abp/Framework/scripts/libs/abp.sweet-alert.js" asp-append-version="true"></script> |
40 |
| - <script src="~/libs/abp-web-resources/Abp/Framework/scripts/libs/abp.signalr-client.js" asp-append-version="true"></script> |
41 |
| - @*abp scripts end*@ |
42 |
| - |
43 |
| - @*other scripts start*@ |
44 |
| - <script src="~/libs/jquery-validate/jquery.validate.js" asp-append-version="true"></script> |
45 |
| - <script src="~/libs/jquery-validate/jquery.validate.unobtrusive.js" asp-append-version="true"></script> |
46 |
| - <script src="~/libs/push.js/push.js" asp-append-version="true"></script> |
47 |
| - @*other scripts end*@ |
48 |
| - |
49 |
| - @*custom scripts start*@ |
50 |
| - <script src="~/js/abp.dataTable.js" asp-append-version="true"></script> |
51 |
| - <script src="~/js/main.js" asp-append-version="true"></script> |
52 |
| - @*custom scripts end*@ |
53 |
| - |
54 |
| - <script type="text/javascript"> |
55 |
| - // This is used to get the application's root path from javascript. |
56 |
| - // It's useful if you're running application in a virtual directory under IIS. |
57 |
| - var abp = abp || {}; |
58 |
| - abp.appPath = '@ApplicationPath'; |
59 |
| - </script> |
60 |
| -</environment> |
61 |
| - |
62 |
| -<environment names="Staging,Production"> |
63 |
| - <script src="~/view-resources/Views/_Bundles/shared-layout.min.js" asp-append-version="true"></script> |
64 |
| - <script type="text/javascript"> |
65 |
| - // This is used to get the application's root path from javascript. |
66 |
| - // It's useful if you're running application in a virtual directory under IIS. |
67 |
| - var abp = abp || {}; |
68 |
| - abp.appPath = '@ApplicationPath'; |
69 |
| - </script> |
70 |
| -</environment> |
| 8 | +<script src="~/view-resources/Views/_Bundles/shared-layout.min.js" asp-append-version="true"></script> |
| 9 | +<script type="text/javascript"> |
| 10 | + // This is used to get the application's root path from javascript. |
| 11 | + // It's useful if you're running application in a virtual directory under IIS. |
| 12 | + var abp = abp || {}; |
| 13 | + abp.appPath = '@ApplicationPath'; |
| 14 | +</script> |
71 | 15 |
|
72 | 16 | @if (CultureInfo.CurrentUICulture.Name != "en")
|
73 | 17 | {
|
|
0 commit comments