Ben Alman
Ben Alman
For example, the `extDot` option for file globbing was added in `0.4.3` but the docs don't state this. Someone using an older version of Grunt might be confused as to...
Right now it's a little simple. Maybe we can add more filtering options. Or something. Whatever.
I'd like to add the ability to stop a currently-running server. I propose that: - the plugin keeps a cache of running server instances by target name - if the...
LOL ``` js // You know, you could always just do: var stack = new Error().stack // Instead of: var stack; try { omgwtf } catch(e) { stack = e.stack;...
Ideally, adjacent text nodes should be "collapsed" into a single text node. For example: ``` $('foobarbaz') .find('span') .remove() .end() .contents() .get(); // [ "foo", "baz" ] ```
If so, can you point me to it? Thanks! I'd rather not duplicate work that someone has already done.
(to work around Google's crawlable AJAX URL spec) Reference http://code.google.com/web/ajaxcrawling/docs/getting-started.html
Justin's idea http://twitter.com/justinbmeyer/status/22037575805 and very cool.
Investigate using https://github.com/felixge/node-stack-trace instead of getting CallSites manually. Might be unnecessary.
While `$.isUrlInternal('http://benalman.com/')` returns true, `$.isUrlInternal('http://benalman.com')` (trailing slash omitted) returns false. Fix?