Dark mode beta

You’ve been asking for dark mode for years.
The dark mode beta is finally here.

Change your preferences any time.

All Questions

Filter by
Sorted by
Tagged with
1
vote
0answers
123 views

AngularJS multi screen validation on last step

I have an angularJS application. I have implemented a generic workflow using $routeProvider, templateUrl & Controllers. Each step(screen) is verified when user click on next button and moves to ...
0
votes
1answer
400 views

Change child scope using broadcast from app.run

I have an angular app with the name DemoProject. I have an app.run controller and one child controller JS var app = angular.module("DemoProject", ['ngRoute', 'ngAnimate', 'ngMessages', 'ngMaterial']...
0
votes
2answers
2k views

AngularJS - $rootScope variable initialization fails

I'm trying to initialize a $rootScope array variable (arrayX) and use it in a $rootScope function in the same controller (controllerA). The reason i'm using $rootScope instead of $scope for this ...
0
votes
2answers
84 views

Angularjs - How can editable data be shared between run, factory and controller blocks?

tl;dr - app.run resets $rootScope.variable's value every time I invoke an API - I need help finding a way around that. I have an AngularJS + ASP.NET Web API setup. I need AngularJS to send a token in ...