diff --git a/Yep/Show.storyboard b/Yep/Show.storyboard
index d5aab744..1280b6fb 100644
--- a/Yep/Show.storyboard
+++ b/Yep/Show.storyboard
@@ -98,6 +98,9 @@
+
+
+
@@ -113,11 +116,17 @@
+
+
+
-
-
+
+
+
+
+
@@ -127,9 +136,12 @@
+
+
+
@@ -137,8 +149,11 @@
+
+
+
@@ -170,12 +185,15 @@
+
+
+
@@ -190,8 +208,11 @@
+
+
+
diff --git a/Yep/ViewControllers/Show/ShowStepGeniusViewController.swift b/Yep/ViewControllers/Show/ShowStepGeniusViewController.swift
index e643b2b8..6b0b70a2 100644
--- a/Yep/ViewControllers/Show/ShowStepGeniusViewController.swift
+++ b/Yep/ViewControllers/Show/ShowStepGeniusViewController.swift
@@ -18,6 +18,9 @@ class ShowStepGeniusViewController: UIViewController {
@IBOutlet weak var topRedDot: UIImageView!
@IBOutlet weak var rightBlueDot: UIImageView!
@IBOutlet weak var centerBlueDot: UIImageView!
+ @IBOutlet weak var centerOrangeDot: UIImageView!
+ @IBOutlet weak var rightYellowDot: UIImageView!
+ @IBOutlet weak var rightGreenDot: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
@@ -34,6 +37,9 @@ class ShowStepGeniusViewController: UIViewController {
repeatAnimate(topRedDot, alongWithPath: UIBezierPath(ovalInRect: CGRectInset(topRedDot.frame, 1, 1)), duration: 2)
repeatAnimate(rightBlueDot, alongWithPath: UIBezierPath(ovalInRect: CGRectInset(rightBlueDot.frame, 1, 1)), duration: 3)
repeatAnimate(centerBlueDot, alongWithPath: UIBezierPath(ovalInRect: CGRectInset(centerBlueDot.frame, 1, 1)), duration: 3)
+ repeatAnimate(centerOrangeDot, alongWithPath: UIBezierPath(ovalInRect: CGRectInset(centerOrangeDot.frame, 1, 1)), duration: 3)
+ repeatAnimate(rightYellowDot, alongWithPath: UIBezierPath(ovalInRect: CGRectInset(rightYellowDot.frame, 1, 1)), duration: 3)
+ repeatAnimate(rightGreenDot, alongWithPath: UIBezierPath(ovalInRect: CGRectInset(rightGreenDot.frame, 1, 1)), duration: 3)
}
func repeatAnimate(view: UIView, alongWithPath path: UIBezierPath, duration: CFTimeInterval) {