deletefile.js 492 B

12345678910111213141516171819
  1. ;(function(){
  2. angular.module('app.controllers')
  3. .controller('deleteFileCtr',deleteFileCtr);
  4. deleteFileCtr.$inject = ['$scope','$http', '$mdDialog','file'];
  5. function deleteFileCtr($scope,$http,$mdDialog,file){
  6. }
  7. })();
  8. ;(function(){
  9. angular.module('app.controllers')
  10. .controller('deleteFileCtr',deleteFileCtr);
  11. deleteFileCtr.$inject = ['$scope','$http', '$mdDialog','file'];
  12. function deleteFileCtr($scope,$http,$mdDialog,file){
  13. }
  14. })();