Questions tagged [batarang]

Extends the Chrome Developer Tools, adding tools for debugging and profiling AngularJS applications.

Batarang is a Google Chrome application by Angular which can be used to debug, profile and develop AngularJS applications.

29 questions
1
vote
1 answer

angular-ui typeahead batarang conflict?

I am using ui-bootstrap 0.11.2 on angular 1.2.25 and chased this all morning until I came across a somewhat unrelated post that provided some hints. My use of the ui-angular typeahead directive stopped working in Chrome. Specifically, it would not…
John Lynch
  • 31
  • 4
1
vote
1 answer

Can batarang debug angular inside jsp?

I am new to angularjs and downloaded latest batarang chrome extension. We have a jsp pages with angularjs in it. Could such application be debugged by batarang ?
Anurag Sharma
  • 2,409
  • 2
  • 16
  • 34
1
vote
2 answers

Batarang on Chrome mobile devtools doesn't work

I'm debuggin a mobile application using Chrome devtools, I can inspect the device, network tab, console tab, etc are working fine, I can see the batarang tab AngularJS, when I click Enable the page is reload on the chrome mobile tab but the batarang…
Diego
  • 709
  • 7
  • 13
1
vote
0 answers

Angular 1.2.6 app works until I enable Batarang 0.4.3

Here's the error I get when I enable Batarang: Uncaught Error: [$injector:modulerr] Failed to instantiate module myApp due to: Error: [$injector:modulerr] Failed to instantiate module myApp.services due to: Error: [ng:areq] Argument 'fn' is not a…
Eric Johnson
  • 1,084
  • 13
  • 24
0
votes
1 answer

Uncaught Error: [ng:btstrpd]

I am facing the following error in my AngularJS application: Uncaught Error: [ng:btstrpd] http://errors.angularjs.org/1.2.26/ng/btstrpd?p0=document Someone can help me?
0
votes
1 answer

AngularJS application initializes only half of the time, throws no errors

Used the yeoman angular generator to scaffold out a fresh ng1 app. Had the following basic code for my main module. Notice that I am using ui-router for my routing system. 'use strict'; angular .module('myApp', [ 'ngMessages', …
0
votes
0 answers

What are some great tools I should know before starting performance analysis of angularjs application?

I need work on analysing and improving the performance of an angular application. This app handles a lot of data, tables with few thousand rows, multiple input forms in the form of custom directives. It also has a few reactJs components as integral…
0
votes
1 answer

Angular One time binding still has watchers on it

I used a simple AngularJS interpolation with one-time binding. The code works as expected and any further changes to that scope variable are not reflecting. However, when I was checking the performance of my application using Batarang (Chrome…
manikawnth
  • 2,739
  • 1
  • 25
  • 39
0
votes
1 answer

Running a filter from console for inspecting value

Is there any way to run a $filter in console using inspector? Using batarang I can get the scope attached to a specific element, but I want to run a general filter on the values in scope, how can I do it?
FarazShuja
  • 2,287
  • 2
  • 23
  • 34
0
votes
1 answer

angularjs - Disable access to $scope and stop manipulation from the console

I have a web-page in AngularJS and I want to perform some validations on the client-side itself. So I compare the $scope's values and validate the user's events. For example: $scope.limit = 5; $scope.reached = 5; $scope.check = function () { if…
Keval
  • 3,389
  • 2
  • 24
  • 41
0
votes
1 answer

A Batarang issue when build MEANJS demo (Uncaught TypeError: Cannot read property 'getToggleElement' of null)

I'm trying to use AngularJS Batarang when lean to build a MEANJS App. Here is the tutorial URL: http://www.bossable.com/656/mean-stack-mongodb-angular-scope/ What I find is my "Scopes" tab's presentation is different from the tutorial video and has…
cryst
  • 11
  • 2
0
votes
3 answers

No scope is shown in Batarang

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,
0
votes
0 answers

AngularJs LoginController not found

I am getting this strange error : Error: The controller function for LoginController could not be found. Is the function registered under that name? Here is my login controller code : define( [ 'app', ], function (app) { …
VishwaKumar
  • 3,433
  • 8
  • 44
  • 72
0
votes
1 answer

$scope.form contains field names but not values

I cannot get at a form value through $scope.form. In the view and Batarang I see that the form object has the right name for all fields, but no values. On the other hand, the value in the actual form field is correct, as is the…
iftheshoefritz
  • 5,829
  • 2
  • 34
  • 41
1
2