angular / batarang

AngularJS WebInspector Extension for Chrome
MIT License
2.43k stars 338 forks source link

Does not work anymore? #322

Open Jokero opened 5 years ago

Jokero commented 5 years ago

Installed last version (0.10.9) from Chrome Web Store, Chrome version is 69.0.3497.100. Instead of useful info I see just blank page, the extension shows nothing: image

On extension page there are a lot of one-star reviews that the extension does not work. Are there any plans to fix that?

zfarrugia commented 5 years ago

Sorry, I am not able to replicate your issue running the same versions you provided.

Angular JS Batarang: 0.10.9 Chrome version: 69.0.3497.100 OS: Windows 10 (Build 17134.345) Test Site: https://angularjs.org/

image

Could you try using the extension on https://angularjs.org/ ? You will need to provide more info if you are looking for support.

Jokero commented 5 years ago

Can confirm that it works on angularjs.org. In my case the problem is that DOMContentLoaded handler is not called here https://github.com/angular/batarang/blob/742336144b5dafcc4a3e8bc26029f298b5795285/dist/hint.js#L716

Maybe something like this will help:

angular.element(document).ready(() => {
    maybeBootstrap();
});
Jokero commented 5 years ago

@zfarrugia Any thoughts?