adonespitogo / angular-base64-upload

Converts files from file input into base64 encoded models.
283 stars 121 forks source link

Export module name for use with CommonJS syntax #71

Closed craigcabrey closed 8 years ago

craigcabrey commented 8 years ago

35 added support for browserify, but it doesn't correctly export the angular module symbol. this is important when you want to require() directly in the module list:

angular
  .module('app', [
    require('angular-base64-upload')
  ]);
kocsenc commented 8 years ago

:+1: