Skip to content

Commit 6641094

Browse files
committed
Merge pull request #185 from sirbarrence/master
fix #184 : remove extra "|| null"
2 parents f3bc633 + 6a8c1ca commit 6641094

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/intro.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
} else {
77
return factory(angular);
88
}
9-
}(typeof angular === 'undefined' ? null : angular || null, function(angular) {
9+
}(typeof angular === 'undefined' ? null : angular, function(angular) {
1010

11-
var module = angular.module('angularFileUpload', []);
11+
var module = angular.module('angularFileUpload', []);

0 commit comments

Comments
 (0)