Skip to content

Commit

Permalink
Fix "module not available" error
Browse files Browse the repository at this point in the history
  • Loading branch information
wembernard committed Mar 31, 2016
1 parent cf51169 commit dd61cfa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/ws-script-loader.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(function() {


angular.module('wsScriptLoader')
angular.module('wsScriptLoader', [])
.service('wsScriptLoader', ["$q", function($q) {
var service = this;

Expand Down
2 changes: 1 addition & 1 deletion dist/ws-script-loader.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/wsScriptLoader.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
angular.module('wsScriptLoader')
angular.module('wsScriptLoader', [])
.service('wsScriptLoader', function($q) {
var service = this;

Expand Down

0 comments on commit dd61cfa

Please sign in to comment.