Skip to content

Commit

Permalink
Restore triple slashies in the .h
Browse files Browse the repository at this point in the history
  • Loading branch information
designatednerd committed Jan 15, 2015
1 parent eb54127 commit 57fc798
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Library/HUMSlider.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 57fc798

Please sign in to comment.