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,
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,
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);
}]);
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.
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.