9787220f by Adam Heath

Prefix userName/password with 'form', so that each provider has it's own

prefix on its variables.
1 parent 1b03da06
...@@ -133,8 +133,8 @@ define(function(require) { ...@@ -133,8 +133,8 @@ define(function(require) {
133 }; 133 };
134 this.attachProviderData = function(data) { 134 this.attachProviderData = function(data) {
135 _.extend(data, { 135 _.extend(data, {
136 userName: this.get('userName'), 136 formUserName: this.get('userName'),
137 password: this.get('password'), 137 formPassword: this.get('password'),
138 }); 138 });
139 }; 139 };
140 bindMethods(this, 'login', 'logout', 'attachProviderData'); 140 bindMethods(this, 'login', 'logout', 'attachProviderData');
......