issue_80: Rageshake handling

Rageshake doesn't work on the image upload screen #80

- Define the navigation bar tint color.
- Disable navigation bar tint color change according to HS status.
- Set RageShake manager.
This commit is contained in:
giomfo
2016-02-10 22:12:17 +01:00
parent e16dae4caa
commit d22417ee94
19 changed files with 99 additions and 9 deletions
+4
View File
@@ -25,6 +25,8 @@ UIColor *kVectorColorOrange;
UIColor *kVectorTextColorBlack;
UIColor *kVectorTextColorGray;
UIColor *kVectorNavBarTintColor;
@implementation VectorDesignValues
+ (void)load
@@ -40,6 +42,8 @@ UIColor *kVectorTextColorGray;
kVectorTextColorBlack = [UIColor colorWithRed:(60.0 / 255.0) green:(60.0 / 255.0) blue:(60.0 / 255.0) alpha:1.0];
kVectorTextColorGray = [UIColor colorWithRed:(157.0 / 255.0) green:(157.0 / 255.0) blue:(157.0 / 255.0) alpha:1.0];
kVectorNavBarTintColor = kVectorColorLightGrey;
// Colors copied from Vector web
kVectorColorLightGreen = UIColorFromRGB(0x50e2c2);