Dave de Jong
Dave de Jong
I can confirm this. After refresh or relayout the slider looks corrupted: 
This is my workaround: `$('#MySlider').bootstrapSlider('destroy');` `// workaround for bootstrapslider bug, after destroying the slider cannot be recreated on the old input: we have to replace the input to make it...
The official microsoft solution for bundling an minifying (at least in .net core and .net 5.x) is now the nuget package WebOptimizer. I replaced BundlerMinifier with it and it works...
Because most .net core 3.0 is compatible under .net (core) 5.0. https://docs.microsoft.com/en-us/aspnet/core/client-side/bundling-and-minification?view=aspnetcore-5.0 I spent about 2 hours migrating my bundles...
So the workaround is easy, just call `AddBundles()` in your startup class: ```cs public void ConfigureServices(IServiceCollection services) { // Code deleted for clarity services.AddBundles(); ``` This will cause the bundle...
This PR fixes the problem by always prefixing a slash, but what if you DO want the bundle to be on a relative path? The fix should check if the...
Check on whether the globbing pattern is relative or not. If it contains a forward slash, also apply this slash to the output files, if not, then don't apply it....
I have the same problem. aos seems to be pushing the menu to the right, off-screen. The problem is caused by the aos.css not even the js. If I remove...
Would love to know this as well!
I like my rests appended. If you implement it please make it optional.