Jared Jacobs
Jared Jacobs
This will get the demo working again. Need to merge next pull request too. Fixes #60.
This fixes the demo in Chrome and IE by loading antiscroll.js from learnboost.github.io instead of from raw.github.com. It's also important to make sure that the latest version of antiscroll.js is...
The following quote from [Selectors Level 3: 5. Groups of Selectors](http://www.w3.org/TR/css3-selectors/#grouping) explains Chrome's behavior: > **Warning:** the equivalence is true in this example because all the selectors are valid selectors....
Would be great to support [Yarn workspaces](https://yarnpkg.com/lang/en/docs/workspaces/) (a way to modularize a node package). We’d like to run `nlf` in the project’s root directory and get a unified result for...
My employer’s codebase currently has 130 occurrences of this pattern: ```java ImmutableList.builder().addAll(items) ``` That pattern can be useful for appending items and/or collections. The need for an explicit type argument...
Right now I get “xpisign: error: Key file does not contain a private key” unless I use a real file on Mac OS X. I’d prefer not to write my...
This commit does not change anything for most users -- those who do not specify box-sizing for the token-list `ul` or who specify `box-sizing: content-box`. It just gives users the...
Also making "destroy" more complete. It now removes the data and event bindings added to the original input during "init".
HTML4 frameset documents don't have a body. Appending the dropdown to the html element if there is no body ensures that it will display even in these documents. This commit...