We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 10011b3 + 02503ec commit 738fde5Copy full SHA for 738fde5
rzslider.js
@@ -13,7 +13,7 @@
13
14
angular.module('rzModule', [])
15
16
-.run(function($templateCache) {
+.run(['$templateCache', function($templateCache) {
17
var template = '<span class="rz-bar"></span>' + // 0 The slider bar
18
'<span class="rz-bar rz-selection"></span>' + // 1 Highlight between two handles
19
'<span class="rz-pointer"></span>' + // 2 Left slider handle
@@ -24,7 +24,7 @@ angular.module('rzModule', [])
24
'<span class="rz-bubble"></span>' + // 7 Label above right slider handle
25
'<span class="rz-bubble"></span>'; // 8 Range label when the slider handles are close ex. 15 - 17
26
$templateCache.put('rzSliderTpl.html', template);
27
-})
+}])
28
29
.value('throttle',
30
/**
0 commit comments