Skip to content

Commit c8358c2

Browse files
Make sure the library can be minified (#19)
1 parent b3ba6d6 commit c8358c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ion.rangeslider-angularjs",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"homepage": "https://github.com/lght/ion-range-slider-angularjs/",
55
"authors": [
66
"Geoffrey Bauduin <[email protected]>"

ionic-range-slider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
angular.module("ion.rangeslider", []);
66

77
angular.module("ion.rangeslider").directive("ionRangeSlider",
8-
function($timeout) {
8+
['$timeout', function($timeout) {
99
return {
1010
restrict: "A",
1111
scope: {
@@ -147,5 +147,5 @@ angular.module("ion.rangeslider").directive("ionRangeSlider",
147147
}
148148
};
149149

150-
}
150+
}]
151151
);

0 commit comments

Comments
 (0)