Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Added low and high pointer classes #41

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/angular-slider.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ sliderDirective = ($timeout) ->
ngModelLow: '=?'
ngModelHigh: '=?'
translate: '&'
template: '<span class="bar"></span><span class="bar selection"></span><span class="pointer"></span><span class="pointer"></span><span class="bubble selection"></span><span ng-bind-html-unsafe="translate({value: floor})" class="bubble limit"></span><span ng-bind-html-unsafe="translate({value: ceiling})" class="bubble limit"></span><span class="bubble"></span><span class="bubble"></span><span class="bubble"></span>'
template: '<span class="bar"></span><span class="bar selection"></span><span class="pointer low"></span><span class="pointer high"></span><span class="bubble selection"></span><span ng-bind-html-unsafe="translate({value: floor})" class="bubble limit"></span><span ng-bind-html-unsafe="translate({value: ceiling})" class="bubble limit"></span><span class="bubble"></span><span class="bubble"></span><span class="bubble"></span>'
compile: (element, attributes) ->

# Expand the translation function abbreviation
Expand Down