Mastering Web Application
Building AngularJS Web Applications for an International Audience The exact technology to be used to translate partials during t ...
Chapter 10 If we need to support multiple languages we can't simply hard-code a message's text in the JavaScript code. Instead w ...
Building AngularJS Web Applications for an International Audience Patterns, tips, and tricks The last part of this chapter is de ...
Chapter 10 Considering this strategy a user might target our sample application with following types of URLs: http://host.com/f ...
Building AngularJS Web Applications for an International Audience While this approach would work it is tedious and error-prone t ...
Chapter 10 In the current version of AngularJS a locale needs to be selected upfront, before an application is initialized. The ...
Building AngularJS Web Applications for an International Audience In AngularJS we can create a decorator over any existing servi ...
Chapter 10 The other, brute force solution is to simply edit a file with locale- specific settings for a given locale. The drawb ...
...
Writing Robust AngularJS Web Applications Web applications' performance is one of the non-functional requirements that we need t ...
Writing Robust AngularJS Web Applications Be able to identify and address CPU-utilization and memory-consumption bottlenecks in ...
Chapter 11 Updating models in response to DOM events AngularJS propagates changes from the DOM tree to the model through DOM eve ...
Writing Robust AngularJS Web Applications The simple-bind directive presented here takes an expression (provided as a DOM attrib ...
Chapter 11 After getting familiar with the scope $watch mechanism we should realize that our simple-model directive would also b ...
Writing Robust AngularJS Web Applications The idea behind AngularJS model-changes tracking mechanism is based on the observation ...
Chapter 11 Or, we could change the default strategy and propagate model updates only after the user leaves the input field: //DO ...
Writing Robust AngularJS Web Applications To understand how AngularJS achieves its goals we need to remember that web browsers h ...
Chapter 11 AngularJS will keep executing the $digest loop and re-evaluating all the watches on all scopes till there are no chan ...
Writing Robust AngularJS Web Applications If you run this example and inspect output of the console, you will notice that two lo ...
Chapter 11 A page will be rendered even if the configured limit of 10 turns per $digest loop is exceeded. The error is not easy ...
«
10
11
12
13
14
15
16
17
18
19
»
Free download pdf