Skip to content

Commit

Permalink
fix: adjust commonjs export
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-gasser authored and juristr committed Nov 7, 2016
1 parent 1d00b46 commit 69bc8e1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/angular-translate-loader-pluggable.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
var moduleName = 'angular-translate-loader-pluggable';

angular
.module('angular-translate-loader-pluggable', [
.module(moduleName, [
'pascalprecht.translate'
])
.provider('translatePluggableLoader', translatePluggableLoaderProvider);
Expand Down Expand Up @@ -63,3 +65,5 @@ function translatePluggableLoaderProvider() {
};
};
}

return moduleName;

0 comments on commit 69bc8e1

Please sign in to comment.