summaryrefslogtreecommitdiffstats
path: root/client/components/main
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/main')
-rw-r--r--client/components/main/layouts.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/components/main/layouts.js b/client/components/main/layouts.js
index 52584169..9838354f 100644
--- a/client/components/main/layouts.js
+++ b/client/components/main/layouts.js
@@ -87,7 +87,7 @@ Template.userFormsLayout.events({
event.stopImmediatePropagation();
Meteor.subscribe('user-authenticationMethod', email, {
- onReady() {
+ onReady() {
return authentication.call(this, instance, email, password);
},
});
@@ -112,7 +112,7 @@ function authentication(instance, email, password) {
// If user doesn't exist, uses the default authentication method if it defined
if (user === undefined) {
user = {
- "authenticationMethod": instance.data.defaultAuthenticationMethod.get()
+ 'authenticationMethod': instance.data.defaultAuthenticationMethod.get(),
};
}
@@ -128,4 +128,4 @@ function authentication(instance, email, password) {
});
}
return this.stop();
-} \ No newline at end of file
+}