Christopher Boyd

Results 47 comments of Christopher Boyd

Creating a Widget using the individual Elements (rather than trying to use the generated Polymer Widgets) seems to work fine: ```HTML 25 50 100 ```

I wonder if it'd be possible to specify for certain widgets (like `PaperDrawerPanel` and `PaperDropdownMenu`) to always perform the save/restore regardless of whether or not the element has already been...

I think the only way to handle this (with the current generated Java code) would be to write a JSNI function and pass it `event.getNativeElement()` http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html E.g.: ```java public void...

After further investigation, it seems like images (JPEG or PNG) at least 151x151 pixels get treated differently than smaller images. I tried simply stretching a static image to fit the...

I've created my own fork and taken an initial stab at trying to fix anchor links and such: https://github.com/cpboyd/XmlCommentMarkDownGenerator/commit/fc0fab724c0e8b730242e1673e09e478a9df517b It also adds other things beyond the scope of this PR,...

The home page now seems to default to `light` mode for me, regardless of the system settings. If I manually use `setMode('system')`, it applies the expected theme but shouldn't this...

Xamarin is basically merging into .NET at this point: https://github.com/dotnet/maui It seems feasible to support all .NET platforms by using the C++ library (but I'm not sure what effort is...

@moog16 I just fixed some lint and typing issues. I'm reading up on the screenshot tests at the moment.

@moog16 I added a screenshot test, but I'm still not completely clear on everything involved. I saw the list in **screenshot-test-urls.tsx**, but adding `'slider'` there didn't seem to add it...

@moog16 Commit c431074 basically replicates a substantial portion of the [mdc-slider/foundation.ts](https://github.com/material-components/material-components-web/blob/master/packages/mdc-slider/foundation.ts) Further, I left the `registerBodyInteractionHandler` as I'm not sure there's a more React-like way to add handlers to the...