Commit 738fde52 authored by Rafal Zajac's avatar Rafal Zajac

Merge pull request #61 from xingped/minifyFix

Fixed minification.
parents 10011b37 02503ece
......@@ -13,7 +13,7 @@
angular.module('rzModule', [])
.run(function($templateCache) {
.run(['$templateCache', function($templateCache) {
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-pointer"></span>' + // 2 Left slider handle
......@@ -24,7 +24,7 @@ angular.module('rzModule', [])
'<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
$templateCache.put('rzSliderTpl.html', template);
})
}])
.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