summaryrefslogtreecommitdiff
path: root/ui/app/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index 75c7cb8..a27cba6 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -21,12 +21,12 @@ class Application {
start() {
Provider.list(false).then(domains => {
- Account.initialize_list(domains)
+ Account.initializeList(domains)
Account.active().then(account => {
if (account == null) {
this.show('greeter')
} else {
- Account.add_primary(account)
+ Account.addPrimary(account)
this.show('main', {initialAccount: account})
}
}, error => {