Skip to content
This repository was archived by the owner on Feb 8, 2023. It is now read-only.

Commit dc57a0a

Browse files
Gabriel DelépineGabriel Delépine
Gabriel Delépine
authored and
Gabriel Delépine
committed
Fix #9 (minifying source)
1 parent 003c62a commit dc57a0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

angular-css-injector.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22
/*
3-
* angular-css-injector v1.0.3.1
3+
* angular-css-injector v1.0.4
44
* Written by Gabriel Delépine
55
* Special thanks to (github users) : @kleiinnn
66
* License: MIT
@@ -83,9 +83,9 @@ angular.module('angular.css.injector', [])
8383
};
8484
}
8585

86-
this.$get = function($compile, $rootScope){
86+
this.$get = ['$compile', '$rootScope', function($compile, $rootScope){
8787
return new CssInjector($compile, $rootScope);
88-
};
88+
}];
8989

9090
this.setSinglePageMode = function(mode){
9191
singlePageMode = mode;

0 commit comments

Comments
 (0)