Skip to content

Commit 1bfdfb4

Browse files
authored
updating for minification
1 parent 48dd5a3 commit 1bfdfb4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

angular-hx-utils.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ angular.module('hxUtils', [])
3232
return timeString;
3333
};
3434
})
35-
.filter('millisecondsToHxDonuts', function ($filter) {
35+
.filter('millisecondsToHxDonuts', ['$filter', function ($filter) {
3636
return function (millseconds) {
3737
var neg = false;
3838
if (millseconds < 0) {
@@ -88,7 +88,7 @@ angular.module('hxUtils', [])
8888

8989
return hxDonuts;
9090
};
91-
})
91+
}])
9292
.filter("emptyDateFilter", function () {
9393
return function (input) {
9494
if (!input)
@@ -170,4 +170,4 @@ angular.module('hxUtils', [])
170170
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>'
171171
}
172172
})
173-
;
173+
;

0 commit comments

Comments
 (0)