diff --git a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadObject.m b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadObject.m index e9127c2..6b98642 100644 --- a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadObject.m +++ b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadObject.m @@ -19,11 +19,15 @@ self.pageJSON = pageJSON; self.modulesJSON = modulesJSON; - self.buttonMap = [pageJSON dictionaryForKey:@"ButtonMap"]; + //self.buttonMap = [pageJSON dictionaryForKey:@"ButtonMap"]; } return self; } +- (NSDictionary *) buttonMap { + return [self.pageJSON dictionaryForKey:@"ButtonMap"]; +} + - (nullable instancetype)initWithRequestParameters:(nullable MVMCoreRequestParameters *)requestParameters dataForPage:(nullable NSDictionary *)dataForPage delegate:(nullable NSObject*)delegate { if (self = [self initWithDelegate:delegate]) { self.requestParameters = requestParameters;