Daily Archives: 02.08.2013
AngularJS: использование фильтра в контроллере
1 2 3 4 |
controller('MyCtrl', ['$scope', '$filter', function ChatCtrl($scope, $filter) { ... $scope.msg = $filter('formatTime')($scope.created * 1000); }]); |