Açıklama Yok

example.js 593B

123456789101112131415161718192021222324
  1. (function (angular, humanize) {
  2. angular.module('example', ['ng', 'angular-humanize']).
  3. controller(
  4. 'Example',
  5. ['$scope',
  6. function ($scope) {
  7. $scope.data = [
  8. {
  9. name: 'bruce_timm.png',
  10. filesize: 230757,
  11. uploaded: 1405652728
  12. },
  13. {
  14. name: 'joker.gif',
  15. filesize: '76160',
  16. uploaded: 1393729528
  17. }
  18. ];
  19. }]
  20. );
  21. })(angular, window.humanize);