in src/browser/StatusBarProxy.js [21:32]
function notSupported (win, fail) {
//
console.log('StatusBar is not supported');
setTimeout(function () {
if (win) {
win();
}
// note that while it is not explicitly supported, it does not fail
// this is really just here to allow developers to test their code in the browser
// and if we fail, then their app might as well. -jm
}, 0);
}