Meet JS Summit - Gdańsk, 19 October 2013
<ANY ng-show="{expression}">
<input ng-model="variable">
<ng-view> <any ng-view>
<ANY ng-class="{expression}">
<ANY ng-switch="expression">
<ANY ng-switch-when="matchValue1">...</ANY>
<ANY ng-switch-when="matchValue2">...</ANY>
...
<ANY ng-switch-default>...</ANY>
</ANY>
<div ng-repeat="project in projects | filter:search | orderBy:'name'"> </div>
<form ng-submit="addTodo()">
<input ng-model="todoText" />
</form>
function HelloCtrl($scope, $window, $log) {
$scope.message = 'Display me in view';
$window.alert('Use window via $window service - that improves testability');
$log.log('We can even test console log calls - thats to $log wrapper');
}