Skip to content

Commit 6c7fdf8

Browse files
committed
Clean up whitespace
1 parent 3f35bfd commit 6c7fdf8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ECSlidingViewController/ECSlidingViewController.m

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ - (void)animateOperation:(ECSlidingViewControllerOperation)operation {
564564
return;
565565
}
566566
if (self.transitionInProgress) return;
567-
567+
568568
self.view.userInteractionEnabled = NO;
569569

570570
self.transitionInProgress = YES;
@@ -675,23 +675,23 @@ - (UIViewController *)viewControllerWillDisappearForSuccessfulOperation:(ECSlidi
675675

676676
- (void)updateTopViewGestures {
677677
BOOL topViewIsAnchored = self.currentTopViewPosition == ECSlidingViewControllerTopViewPositionAnchoredLeft ||
678-
self.currentTopViewPosition == ECSlidingViewControllerTopViewPositionAnchoredRight;
678+
self.currentTopViewPosition == ECSlidingViewControllerTopViewPositionAnchoredRight;
679679
UIView *topView = self.topViewController.view;
680-
680+
681681
if (topViewIsAnchored) {
682682
if (self.topViewAnchoredGesture & ECSlidingViewControllerAnchoredGestureDisabled) {
683683
topView.userInteractionEnabled = NO;
684684
} else {
685685
self.gestureView.frame = topView.frame;
686-
686+
687687
if (self.topViewAnchoredGesture & ECSlidingViewControllerAnchoredGesturePanning &&
688688
![self.customAnchoredGesturesViewMap objectForKey:self.panGesture]) {
689689
[self.customAnchoredGesturesViewMap setObject:self.panGesture.view forKey:self.panGesture];
690690
[self.panGesture.view removeGestureRecognizer:self.panGesture];
691691
[self.gestureView addGestureRecognizer:self.panGesture];
692692
if (!self.gestureView.superview) [self.view insertSubview:self.gestureView aboveSubview:topView];
693693
}
694-
694+
695695
if (self.topViewAnchoredGesture & ECSlidingViewControllerAnchoredGestureTapping &&
696696
![self.customAnchoredGesturesViewMap objectForKey:self.resetTapGesture]) {
697697
[self.gestureView addGestureRecognizer:self.resetTapGesture];

0 commit comments

Comments
 (0)