Only Show Pips

Instead of having the values shown for the first/last point, we could only show pips. This might be good when we just need to show the user how many options they have without showing explicit values.

</>
($)
                <div class="slider"></div>
            
                $(".slider")
                    .slider({
                        max: 30
                    })
                    .slider("pips", {
                        first: "pip",
                        last: "pip"
                    });