Mike Chambers

Results 59 comments of Mike Chambers

noticed that it behaves like this for any change of state in pagination/filter/toggle/keyword etc.. `data-jump-to-start="true"` seems to resolve for the control state changes, haven't had chance to check the empty...

my bad.. was a css cascading issue... removed all but my `cssHereAsync` and works as expected.

So native smidge works.. but in umbraco.. filewatcher seems to not work at all.. Even reverting to the native ConfigCacheBuster, the appended version with filewatcher is v1.. ```csharp private readonly...

yep.. though also tried overriding the builder... ``` public class BundleComposer : IComposer { public void Compose(IUmbracoBuilder builder) { builder.Services.Configure(options => { options.DefaultBundleOptions.ProductionOptions.FileWatchOptions.Enabled = true; options.DefaultBundleOptions.DebugOptions.FileWatchOptions.Enabled = true; //options.DefaultBundleOptions.ProductionOptions.SetCacheBusterType(); //options.DefaultBundleOptions.ProductionOptions.CacheControlOptions.CacheControlMaxAge...

Is it also not odd that setting ``` "smidge": { "dataFolder": "Smidge", //where the cache files are stored "version": "125", //can be any string } ``` isn't respected by the...

It is for my frontend (though just the umbraco mvc and not a headless implementation) Can I have a native smidge implementation for the front end? and leave the backoffice...

guessing this might be in the mix.. lots of alter smidge to umbraco requirements... https://github.com/umbraco/Umbraco-CMS/blob/contrib/src/Umbraco.Web.Common/DependencyInjection/UmbracoBuilderExtensions.cs#L291-L321 ```csharp public static IUmbracoBuilder AddRuntimeMinifier(this IUmbracoBuilder builder) { // Add custom ISmidgeFileProvider to include the...

Is it that I need to extend the Smidge FileSystem to allow watching, although my files are in the wwwroot/css/ folder anyway? https://github.com/Shazwazza/Smidge/blob/develop/src/Smidge/SmidgeStartup.cs#L156 ``` foreach (var webFileType in new[] {...

tracked this down to using `bucket="tsd/wc"` with `prefix="media/"` to allow us to have a single bucket with client subfolders. whilst this works for media and cache support.. once we hit...

Could it be ` section.Diagnostics.AddRange(RouteTable.Routes.Select(r => (Route)r).Select(r => new Diagnostic(r.RouteHandler.GetType().Name, r.Url)));` might need to be.. `section.Diagnostics.AddRange(RouteTable.Routes.OfType().Select(r => new Diagnostic(r.RouteHandler.GetType().Name, r.Url)));` Dropping webApi routes?