Jeremy Banks
Jeremy Banks
Inside the handler for `app.post('/api/project/:id?', ...)` in `butter/cornfield/app.js` I replaced ``` doc.save(); res.json({ error: 'okay', project: proj }); ``` with ``` doc.save(function (err) { if ( !err ) { res.json({...
Filed upstream: [t1603](https://webmademovies.lighthouseapp.com/projects/65733-popcorn-maker/tickets/1603-support-for-larger-documents)
Something like... ``` function sync( master, slave, offset ) { slave.controls(false); slave.currentTime( master.currentTime() - offset ); if ( master.paused() ) { slave.pause(); } else { slave.play(); } master.on( "seeking", function()...
GitHub clobbered the contents of this comment when I submitted an edit to my most recent comment after pressing _back_ to return to this page. Apparently it got confused about...
Changing the `space` attribute and the font had no effect. Replacing space characters with non-breaking spaces allows them to be copied, but removing whitespace from between nodes doesn't affect the...
I was consulting the SVG spec to see if it described this behaviour. It turns out that you aren't even supposed to be able to select multiple `` elements at...
Using `` and `` as described above worked properly in a test document. I tried two different approaches to transforming the imported SVG, but both resulted in invisible text despite...
I've been working on Firefox in my svg-container branch. It's working for every SVG I test it with, though it isn't yet working in Butter. I've moved all of the...
Dear GitHub, Today I realized that the reason that things weren't working until I re-parsed was because I wasn't creating elements with the correct namespace. Even though HTML5 lets me...