File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ angular.module('hxUtils', [])
32
32
return timeString ;
33
33
} ;
34
34
} )
35
- . filter ( 'millisecondsToHxDonuts' , function ( $filter ) {
35
+ . filter ( 'millisecondsToHxDonuts' , [ '$filter' , function ( $filter ) {
36
36
return function ( millseconds ) {
37
37
var neg = false ;
38
38
if ( millseconds < 0 ) {
@@ -88,7 +88,7 @@ angular.module('hxUtils', [])
88
88
89
89
return hxDonuts ;
90
90
} ;
91
- } )
91
+ } ] )
92
92
. filter ( "emptyDateFilter" , function ( ) {
93
93
return function ( input ) {
94
94
if ( ! input )
@@ -170,4 +170,4 @@ angular.module('hxUtils', [])
170
170
template : '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" perserveAspectRatio="xMinYMid" style="transform: rotate({{deg}}deg);"> <g> <circle style="fill:none;" r="49" cy="50%" cx="50%" stroke="{{borderStrokeColor}}" stroke-width="{{borderStrokeWidth}}"></circle> <circle style="fill:none;" r="42" cy="50%" cx="50%" stroke="{{backStrokeColor}}" stroke-width="{{backStrokeWidth}}"></circle> <circle style="fill:none;" id="circle" r="42" cy="50%" cx="50%" stroke-dasharray="{{dashArray}}" stroke-dashoffset="{{dashOffset}}" stroke="{{frontStrokeColor}}" stroke-width="{{frontStrokeWidth}}"></circle> </g> <h1>{{title}}</h1> <h2>{{name}}</h2> <h3>{{subtitle}}</h3></svg>'
171
171
}
172
172
} )
173
- ;
173
+ ;
You can’t perform that action at this time.
0 commit comments