Tom Carden
Tom Carden
@ForbesLindesay that's good pseudocode for the old layout feature - basically what `express-partials` offers. To be backwards compatible you want `layout.ejs` if `options.layout` is true or undefined, or to use...
I finished up and published my fork of `express-partials` as `ejs-locals` - with support for `layout`, `include`, `block` and `partial`. Feedback welcome: https://github.com/randometc/ejs-locals/ _update_: fixed link
This looks simple enough - can you add some tests maybe an example? Apologies up-front that the tests are a little bit of a rats' nest, feel free to start...
Great, thanks Mark. It's a weekend project for me but hopefully I'll find a moment soon.
I haven't yet found a moment to get these changes upstream but I pushed my own usage of the RunKeeper API in node up to https://github.com/RandomEtc/runboxer - hopefully I'll get...
Sounds great! Apologies if it takes a few days to get to testing/merging this. Thanks for the contribution!
Thanks for the timely response. Do you think my defeat of the algorithm means that there should be a better algorithm, or that I've misunderstood what the algorithm is doing...
You can certainly catch the click event on all `a` tags and prevent the link from being followed, in jQuery: ``` javascript $('a').click(function(e){ e.preventDefault(); }) ``` This also catches command-click...
I should say that I am a big fan of the stacking of paths and pages to the right as I navigate. And I really like the way this enables...