Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

upload.controller.js 394B

1234567891011121314
  1. angular.module('app')
  2. .controller('UploadController', ['$scope', '$state', '$mdDialog',
  3. function($scope, $state, $mdDialog) {
  4. $scope.image = null;
  5. $scope.fileDropped = function(content, file)
  6. {
  7. $scope.image = {
  8. content: content,
  9. name: file.name
  10. };
  11. };
  12. }]);