mvcct-templates
Advanced tools
Comparing version 1.1.3 to 1.1.5
{ | ||
"name": "mvcct-templates", | ||
"version": "1.1.3", | ||
"version": "1.1.5", | ||
"homepage": "https://github.com/MvcControlsToolkit/MvcControlsToolkit.Templates", | ||
@@ -5,0 +5,0 @@ "description": "mvcct-templates installs content files needed by Mvc Controls Toolkit into asp.net core.", |
@@ -13,3 +13,17 @@ # mvcct-templates | ||
**Important:** 1.1.2 version fixed a JavaScript critical run. Developers, who scaffolded a project prior to that version must fix manually the bug, since the mvcct-templates can't be run twice on the same project. The fix is as follows: | ||
Move the line of code: | ||
``` | ||
<script src="~/lib/mvcct-enhancer/mvcct.enhancer.min.js"></script> | ||
``` | ||
from Views\Shared\\_EnhancementFallbackPartial.cshtml to Views\Shared\\_GlobalizationScriptsPartial.cshtml just after `@using System.Globalization`, as shown in the snippet below: | ||
``` | ||
@using System.Globalization | ||
<script src="~/lib/mvcct-enhancer/mvcct.enhancer.min.js"></script> | ||
``` | ||
This project is part of the Mvc Controls Toolkit . You can find instructions, | ||
documentation and more information on the Mvc Controls Toolkit in the [Home repository](https://github.com/MvcControlsToolkit/Home) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
15704
29