AngularJS is an open-source JavaScript framework. Its goal is to augment browser-based applications with Model–View–Controller (MVC) capability, reduce the amount of JavaScript needed to make web applications functional. These type of apps are also known as Single-Page Applications

learn more… | top users | synonyms (1)

1
vote
0answers
89 views
+50

How does angular application handle refresh page and could we use $history on loading directives

So two questions. How does angular applications handle refresh page, b/c from what I heard, $rootScope destroy() on refresh and application gets re-run and re-config -ed, and I was wondering if ...
4
votes
0answers
207 views
+50

Angular Animations and Phonegap not running on mobile

I've added a few ng-view animations (angular v 1.1.5) to a phonegap app. They work great in the browser when testing both using ripple and when pointing the mobile phone's browser to the app online, ...
0
votes
1answer
71 views
+100

AngularJS + d3js: Issues with resizing objects

I'm attempting to integrate AngularJS with d3 for dragging and resizing. I've managed to create a rect object that is draggable in an SVG element, and resizable using resize handles. The resize ...
1
vote
1answer
85 views
+50

Karma Test Runner And Closure Library “NOT SERVED FILE”

We use the closure library across several different projects that share code. We're starting up with AngularJS in one of the projects now and we're trying to get the Karma runner working properly. ...
4
votes
2answers
119 views
+200

How can I set a form contained inside a ng-include to be prestine?

I have the following code: <div modal="modal.shouldBeOpen" close="close()" options="opts"> <div class="modal-body"> <form novalidate name="itemForm" style="margin-bottom: ...
0
votes
2answers
46 views
+50

Using eventjs with angularjs not working

Greetings Overflowers, Using angularjs bind function to register event handlers on elements does not work when including eventjs script! I was under the impression that eventjs will replace default ...
0
votes
1answer
42 views
+50

Why does less directives/more html take longer to compile than more directives/less html?

In our app, we have several layers of nested directives. In an attempt to speed up the digest cycle, we removed some top level directives that have data-bindings to static data. Instead, we just ...