|
@@ -106,13 +106,13 @@ export default {
|
106
|
106
|
registerScreen,
|
107
|
107
|
getRegisteredScreen,
|
108
|
108
|
registerComponent,
|
109
|
|
- showModal: _.throttle(showModal, 500, {leading: true, trailing: false}),
|
110
|
|
- dismissModal: _.throttle(dismissModal, 500, {leading: true, trailing: false}),
|
111
|
|
- dismissAllModals: _.throttle(dismissAllModals, 500, {leading: true, trailing: false}),
|
112
|
|
- showLightBox: _.throttle(showLightBox, 500, {leading: true, trailing: false}),
|
113
|
|
- dismissLightBox: _.throttle(dismissLightBox, 500, {leading: true, trailing: false}),
|
114
|
|
- showInAppNotification: _.throttle(showInAppNotification, 500, {leading: true, trailing: false}),
|
115
|
|
- dismissInAppNotification: _.throttle(dismissInAppNotification, 500, {leading: true, trailing: false}),
|
116
|
|
- startTabBasedApp: _.throttle(startTabBasedApp, 500, {leading: true, trailing: false}),
|
117
|
|
- startSingleScreenApp: _.throttle(startSingleScreenApp, 500, {leading: true, trailing: false})
|
|
109
|
+ showModal: _.throttle(showModal, 1000, {leading: true, trailing: false}),
|
|
110
|
+ dismissModal: dismissModal,
|
|
111
|
+ dismissAllModals: dismissAllModals,
|
|
112
|
+ showLightBox: _.throttle(showLightBox, 1000, {leading: true, trailing: false}),
|
|
113
|
+ dismissLightBox: dismissLightBox,
|
|
114
|
+ showInAppNotification: showInAppNotification,
|
|
115
|
+ dismissInAppNotification: dismissInAppNotification,
|
|
116
|
+ startTabBasedApp: _.throttle(startTabBasedApp, 1000, {leading: true, trailing: false}),
|
|
117
|
+ startSingleScreenApp: _.throttle(startSingleScreenApp, 1000, {leading: true, trailing: false})
|
118
|
118
|
};
|