From cee8c7c15a4d67af6658fdf98fa444fddf32c121 Mon Sep 17 00:00:00 2001 From: PliablePixels Date: Sun, 26 Jul 2015 16:54:12 -0400 Subject: Added slider with alarm frame tick marks and scrubbing --- .../src/core/template/slider.tmpl.js | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 www/lib/angular-awesome-slider/src/core/template/slider.tmpl.js (limited to 'www/lib/angular-awesome-slider/src/core/template') diff --git a/www/lib/angular-awesome-slider/src/core/template/slider.tmpl.js b/www/lib/angular-awesome-slider/src/core/template/slider.tmpl.js new file mode 100644 index 00000000..9529f46d --- /dev/null +++ b/www/lib/angular-awesome-slider/src/core/template/slider.tmpl.js @@ -0,0 +1,29 @@ +(function(angular, undefined) { +'use strict'; + + angular.module('angularAwesomeSlider') + .run(['$templateCache', function ($templateCache) { + $templateCache.put('ng-slider/slider-bar.tmpl.html', + '' + + '
' + + '
' + + ''+ + ''+ + ''+ + ''+ + ''+ + ''+ + ''+ + '
' + + '
' + + '
' + + '
{{options.dimension}}
' + + '
{{options.dimension}}
' + + '
{{options.dimension}}
' + + '
{{options.dimension}}
' + + '
' + + '
' + + '
'); + }]); + +})(window.angular); -- cgit v1.2.3