sjmerel

Results 12 comments of sjmerel

I am also seeing this in version 4.0.2. When I set a maximum value on the x axis, I get a sporadic crash, and the line disappears when I zoom...

No, will that help? It seems to automatically limit the zoom so I can't zoom out past the extent of the data. (Just to clarify my last post, the line...

Is this library actively maintained? Seems like there hasn't been much response to the most recent bug reports. @philips77 ?

Background scanning seems like it's probably not a very common requirement, whereas the behavior with the current scan filter breaks DFU updates on some devices, so requiring some configuration to...

For what it's worth, in my own Bluetooth code I had found that scan filters worked unreliably on some of my testing devices, so I stopped using them (though again,...

Doesn't seem like this project is being actively maintained, but I found a fix: in src/ng-datepicker/component/ng-datepicker.component.sass line 92, change the line ```width: calc(100% / 7)``` to ```width: calc(99% / 7)```...

Here's an example where this would be useful: I'm storing a date of birth in a database as midnight UTC on that date. When I display that in the datepicker,...

I worked around by converting the dates to the browser's timezone before passing them to the datepicker.

I am seeing the same issue. If I set the redirect URL as my app's custom URL directly (e.g. "myapp://oauth-redirect"), then the callback is called. But if I set the...

The problem seems to be here, in OIDAuthorizationService.m: ``` - (BOOL)shouldHandleURL:(NSURL *)URL { NSURL *standardizedURL = [URL standardizedURL]; NSURL *standardizedRedirectURL = [_request.redirectURL standardizedURL]; return OIDIsEqualIncludingNil(standardizedURL.scheme, standardizedRedirectURL.scheme) && OIDIsEqualIncludingNil(standardizedURL.user, standardizedRedirectURL.user) &&...