Duane Maxwell

Results 7 comments of Duane Maxwell

This might be a duplicate of issue #404 Do you get any errors on the browser console output?

I ran into this same problem when build a metacoffee parser for LISP (actually Maru) S-expressions, where backtick is a common syntactic shortcut for creating calls to "quasiquote". The solution...

I was originally thinking that the "end" on stdout would be sufficient to end the command, but that won't work for a command that only consumes "stdin", or that also...

A mixin makes sense - bash-style command line parsing isn't very complicated (at least for the basics), but may be more than people want to have out of the box.

I ran into this same error (select_elt is undefined) in Safari 7.1.2, jQuery 1.7.1, with: ``` js var output = jQuery(document.createElement('form')) .attr('action', 'javascript:void(0)') .attr('style', 'display:inline'), selected = ''; var select_elt...

Sorry, I messed up the language in my post - the code supplied _fixes_ the problem - basically eliminating the chaining on the creation of select_elt.

Hi, this is still failing for me, problem and solution same as above. The problem is the assignment chain, since attr(name,value) returns undefined, select_elt ends up nil, and thus the...