From 57fc798d5ee2666fecf6387f02eadba2f4da9ff5 Mon Sep 17 00:00:00 2001 From: Ellen Shapiro Date: Wed, 14 Jan 2015 22:58:27 -0600 Subject: [PATCH] Restore triple slashies in the .h --- Library/HUMSlider.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Library/HUMSlider.h b/Library/HUMSlider.h index 369b148..f16d1ef 100644 --- a/Library/HUMSlider.h +++ b/Library/HUMSlider.h @@ -19,35 +19,35 @@ #pragma mark - Ticks -// The color of the ticks you wish to pop up. Defaults to dark gray. +///The color of the ticks you wish to pop up. Defaults to dark gray. @property (nonatomic) UIColor *tickColor; -// How many sections of ticks should be created. NOTE: Needs to be an odd number or math falls apart. Defaults to 9. +///How many sections of ticks should be created. NOTE: Needs to be an odd number or math falls apart. Defaults to 9. @property (nonatomic) NSUInteger sectionCount; -// How many points the tick popping should be adjusted for a custom thumbnail image to account for any space at the top (for example, to balance out a custom shadow). +///How many points the tick popping should be adjusted for a custom thumbnail image to account for any space at the top (for example, to balance out a custom shadow). @property (nonatomic) CGFloat pointAdjustmentForCustomThumb; #pragma mark - Images -// The color to use as the fully-saturated color. Defaults to red. +///The color to use as the fully-saturated color. Defaults to red. @property (nonatomic) UIColor *saturatedColor; -// The color to use as the desaturated color. Defaults to light gray. +///The color to use as the desaturated color. Defaults to light gray. @property (nonatomic) UIColor *desaturatedColor; #pragma mark - Configurable Animation Durations -// How long it should take to adjust tick alpha. Defaults to .2 seconds. +///How long it should take to adjust tick alpha. Defaults to .2 seconds. @property (nonatomic) NSTimeInterval tickAlphaAnimationDuration; -// How long it takes most ticks to pop up from hidden. Defaults to .5 seconds. +///How long it takes most ticks to pop up from hidden. Defaults to .5 seconds. @property (nonatomic) NSTimeInterval tickMovementAnimationDuration; -// How long it takes the tick on either side of the middle tick pop up from hidden. Defaults to .35 seconds. +///How long it takes the tick on either side of the middle tick pop up from hidden. Defaults to .35 seconds. @property (nonatomic) NSTimeInterval secondTickMovementAndimationDuration; -// How long to wait between animating secondary ticks. Defaults to 0.025 seconds. +///How long to wait between animating secondary ticks. Defaults to 0.025 seconds. @property (nonatomic) NSTimeInterval nextTickAnimationDelay; @end