Chris M. Welsh
Chris M. Welsh
Don't release Zalgo: http://blog.izs.me/post/59142742143/designing-apis-for-asynchrony ``` If you have an API which takes a callback, and sometimes that callback is called immediately, and other times that callback is called at some...
Hi Sam, random coder chiming in here. Thanks for contributing these changes. They worked well for me. I hope the owner of this repository accepts your help!
I've heard people recommend against `setInterval` (see the section about stacking calls at [JavaScript Garden](http://bonsaiden.github.io/JavaScript-Garden/#other.timeouts). Perhaps you could emulate it with `setTimeout`.
That won't work which is why I'm using the wait until loaded plug in. Because you can't rely on the image load event. --- Chris Welsh Sent from my phone...
I am seeing this as well. It comes down to this check here: https://github.com/thedersen/backbone.validation/blob/master/dist/backbone-validation-amd.js#L263 I am going to have to figure out a workaround and report back.
I decided to just hack this part out: `&& _.intersection(_.keys(result.invalidAttrs), _.keys(changedAttrs)).length > 0`
It converts my ` ` values to the ASCII character instead of leaving them as escaped entities.
Try loading it into a gist https://gist.github.com/ or indent the entire thing by 4 spaces to use code formatting mode.
This plugin is still broken if you load skrollr with AMD. I hacked around this by setting `window.skrollr` variable manually. ``` window.skrollr = skrollr; define('skrollr', function () { return skrollr;...
I am authoring a language like Kaffeine. My thoughts are to steal from LiveScript in this instance: http://livescript.net/ The keywords used there are much less ambiguous (do I use one...