|
|
|
|
|
by danielbarla
4263 days ago
|
|
This is a distinct possibility, and I did run into one or two of these situations already. In my case, digging slightly into Angular's internals for workarounds was relatively successful. An example is Angular's treatment of HTML forms and input elements, w.r.t. things that you'd expect, such as name / id interpolation (namely: Angular doesn't interpolate dynamic form names as you'd expect - [1] and [2]). In cases like this, digging into the internals to resolve the initial surprise and later solve the problem was slightly frustrating. [1] https://github.com/angular/angular.js/issues/1404 [2] http://jsfiddle.net/Thinkscape/23RPt/ |
|