From e90fc20266c7e39b4893701a3e14ee5e3ba3cc22 Mon Sep 17 00:00:00 2001 From: Alexey Elizarov Date: Tue, 3 Nov 2015 03:20:25 +0300 Subject: [PATCH] fix(statusbar): typo in the method backgroundColorByHexString instead backgroundColorByHexName because that method doesn't exisrs in cordova-plugin-statusbar --- ionic/platform/statusbar/statusbar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ionic/platform/statusbar/statusbar.ts b/ionic/platform/statusbar/statusbar.ts index 5e676d5a92..5c9ca914d4 100644 --- a/ionic/platform/statusbar/statusbar.ts +++ b/ionic/platform/statusbar/statusbar.ts @@ -84,7 +84,7 @@ export class StatusBar { */ static setHexColor(hex) { this.ifPlugin(() => { - window.StatusBar.backgroundColorByHexName(hex); + window.StatusBar.backgroundColorByHexString(hex); }); }