No scope is shown in Batarang

519 views Asked by At

I installed batarang from chrome store. Run a sample script. The html works fine. But batarang shows no scope. Please help me. Thanks. Chrome is the latest version.

screenshot (http://s16.postimg.org/hvy1cveqp/image.jpg)

Regards,

3

There are 3 answers

1
squiroid On

Batarang is RIP. The last release of Batarang was over 10 months ago. It looks like it is no longer supported and does not work with Angular 1.2.x

Update

Still you can check Angular Stable Batarang.

0
Lingfeng Zhuang On

From the issue link given by Claies, batarang never work anymore. As the thread asked, I tried 0.4.3. Not work also. I am giving up using batarang now. Thank you for everyone helping.

0
pranavjindal999 On

Angular Batarang needs debug info to be enabled.

Run the following in console after loading website:

angular.reloadWithDebugInfo();

or set debug info enabled in app config:

myApp.config(['$compileProvider', function ($compileProvider) {
  $compileProvider.debugInfoEnabled(true);
}]);