Martin
Martin
which is the current main fork? there are a bunch of them but none seems to be maintained
This can't be the end. There has to be a way that allow us to load these files from disk.
This looks promising! I'm still waiting on full support to upgrade (plus tab-groups) but I'll give a try using a separate firefox installation. Have you tried the addon folder approach?...
well nowadays we have things like `querySelector` along with great native APIs, I dont think jQuery is required anymore Besides we not using cross-browser, or heavy `ajax` scripts
I've implemented this on #38 Any chance somebody with write access could take a look?
You could use just `www.bing.com.js` and then check for `/search` on `location.href` Think there's an example on the README on how to check for the path.
@limulus Oh, you're right! My understanding was that such return will trigger the _call me again_ that the test is actually trying to make sure wont happen. So yes, I...
@limulus any update on this?
anybody?
Here is a counter-example, to show why `var` should not be used: 1. This will print an error, as the var is not defined ```js function varCheck() { console.log(x) //...