'use strict'
angular.module('myHR')
.directive('uploadFile', function(){
  return {
    restrict: 'E',
    scope: {
      filetype: '@type',
      fileobj: '=obj',
      filepath: '@path',
      filewidth: '@width',
      fileheight: '@height',
      delchange: '@delChange'
    },
    controller: 'UploadFile',
    templateUrl: '../uploadfile.html',
    link: function($scope){
    }
  }
})