Commit 33ed19cd authored by Paul Salaberria's avatar Paul Salaberria

Fix for #59

parent 10011b37
This diff is collapsed.
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
angular.module('rzModule', []) angular.module('rzModule', [])
.run(function($templateCache) { .run(['$templateCache', function($templateCache) {
var template = '<span class="rz-bar"></span>' + // 0 The slider bar var template = '<span class="rz-bar"></span>' + // 0 The slider bar
'<span class="rz-bar rz-selection"></span>' + // 1 Highlight between two handles '<span class="rz-bar rz-selection"></span>' + // 1 Highlight between two handles
'<span class="rz-pointer"></span>' + // 2 Left slider handle '<span class="rz-pointer"></span>' + // 2 Left slider handle
...@@ -24,7 +24,7 @@ angular.module('rzModule', []) ...@@ -24,7 +24,7 @@ angular.module('rzModule', [])
'<span class="rz-bubble"></span>' + // 7 Label above right slider handle '<span class="rz-bubble"></span>' + // 7 Label above right slider handle
'<span class="rz-bubble"></span>'; // 8 Range label when the slider handles are close ex. 15 - 17 '<span class="rz-bubble"></span>'; // 8 Range label when the slider handles are close ex. 15 - 17
$templateCache.put('rzSliderTpl.html', template); $templateCache.put('rzSliderTpl.html', template);
}) }])
.value('throttle', .value('throttle',
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment