David Klebanoff
David Klebanoff
@bwgjoseph I've dealt with this before and cobbled together a quick solution, but there very well may be a better option out there. What you can do is extend `PieOptions`...
I've thought about this a little more and I've got an idea that will allow this library to be more compatible with plugins. I'll do a pull request when I...
@bwgjoseph That's essentially what I did. Perhaps you left off some needed Jackson annotations? I'll include some concise code snippets below that should get you going. And like I mentioned...
Thoughts on simply replacing the decoding logic with the Java [UrlDecoder](https://docs.oracle.com/javase/6/docs/api/java/net/URLDecoder.html)? ``` java URLDecoder.decode(cookieValue, "UTF-8") ```
Yeah either that, or add an option for specifically for the cancel space. However, I don't see why someone would want spaces for one and not the other. So, my...
I, too, am still experiencing this issue. 2.4.3 works, but 2.4.4 and 2.4.6 have the issues you described.
@birjolaxew - I agree that the tooltips are an unwelcome side effect and @ericcornelissen summed up the conundrum pretty nicely in the linked comment. While we wait for the SVG...
I guess my vote then is to put a mention of the code snippet and its impact in the documentation, and people can use it at their own risk. I...
Just a quick glance at this. But the code won't even compile in its current state. Line 228 needs a parenthesis and semicolon.
Oops nevermind. I was using grails-maven-plugin 2.4.3 which was bringing in springloaded 1.2.0. I upgraded to grails-maven-plugin 2.4.6 which uses springloaded-1.2.4 and the issue was resolved. ~~I'm experiencing this issue,...