Gary Hewett
Gary Hewett
May I add https://mandrillapp.com/api/docs/ to the list? I've looked at the code briefly - I have code in Java that has delivered close to 1 billion emails over the past...
Is there a workaround for this in the interim? I've managed to split my code up into several (duplicated) blocks to work around it for now however that approach adds...
Is there at least a work-around for this yet (other than backing down to Java 8)?
I'll add a ditto to this. Based on what I thought I read in the README this would have been as simple as adding: `` README claims: "Does not force...
Extremely helpful - thank you! If only `insertHTML` would have a similar companion like `wrapWithHTML` we'd be all set :) A generic routine that finds both end points of a...
Ha! ` ` works! It is "block-level" based NOT selection based so it's a little funky depending on what blocks are (almost) in your current selection. It grabs outwards to...
There's likely a million things wrong with this as I'm not really all that well versed in JavaScript but this worked:  I'm sure it could be genericized properly...
Slightly better... We need to change 'code' to an array of acceptable things to look for, do a "contains" and grab the index and then instead of hard coding 'code'...
There are no booleans :) I have a design principle that says there is either precisely one thing or an infinite number of things. (Or at least Integer.MAX...) There is...
If we modify the defaults: ``` var defaults = { hotKeys: { "Ctrl+b meta+b": "bold", "Ctrl+i meta+i": "italic", "Ctrl+u meta+u": "underline", "Ctrl+z": "undo", "Ctrl+y meta+y meta+shift+z": "redo", "Ctrl+l meta+l": "justifyleft",...