You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }]);