Jared Jacobs
Jared Jacobs
For the record, this is a problem with the demo (see #60), not the library. The demo is broken in IE because the library fails to load.
Still doesn't work in Chrome 27 / Mac. Also doesn't work in IE 9 / Win 7: ``` SEC7112: Script from https://raw.github.com/LearnBoost/antiscroll/master/antiscroll.js was blocked due to mime type mismatch SCRIPT438:...
May I ask why the `gh-pages` branch is so far behind to begin with? Is it intentional?
I encountered this issue in my own stylesheets and was very surprised. Anything that a stylesheet processor doesn’t understand, it should leave alone.
Here’s the workaround I’m using, in case it helps others: ``` less border-radius: '%s' % inherit ```
Also, please stick with the indentation level this file is already using: 2 spaces. Thanks. P.S. Good news, Firefox 52 (scheduled for release March 7) [has the selection events API](https://bugzilla.mozilla.org/show_bug.cgi?id=1309612).
My team has seen sporadic test failures for all async endpoints that use `StreamingResponseBody` or, more generally, any async endpoints that use the `WebAsyncManager.startCallableProcessing` code path. All of these failures...
@ruurd In Java, validation in a constructor (throwing an exception like `IllegalArgumentException` or `NullPointerException`) is standard practice. For example: - [new java.util.Properties(int)](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Properties.html#%3Cinit%3E(int)) - [new java.net.InetSocketAddress(String, int)](https://docs.oracle.com/javase/9/docs/api/java/net/InetSocketAddress.html#InetSocketAddress-java.lang.String-int-) - [new java.io.File(URI)](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/File.html#%3Cinit%3E(java.net.URI)) It’s...
@ruurd That `new Properties(int)` constructor was added in Java 10 (released in Mar 2018, 3 years ago); it’s [not in Java 9](https://docs.oracle.com/javase/9/docs/api/java/util/Properties.html#constructor.summary). I was just looking for well-known examples to...
The redundancy of `Something.SomethingBuilder` can be avoided if you import the inner builder class directly, as in: ```java import some.package.Something; import some.package.Something.SomethingBuilder; ... SomethingBuilder builder = Something.builder(); ``` Also, in...