Skip to content

Commit 123a193

Browse files
committed
Merge pull request #4 from erundook/patch-1
meteor 0.6.5 compatibility
2 parents 62c262e + 587a3d0 commit 123a193

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

login_buttons.js

+16-12
Original file line numberDiff line numberDiff line change
@@ -108,25 +108,29 @@
108108
};
109109

110110
Accounts._loginButtons.getLoginServices = function () {
111-
var ret = [];
112-
// make sure to put password last, since this is how it is styled
113-
// in the ui as well.
114-
_.each(
115-
['facebook', 'github', 'google', 'twitter', 'weibo', 'password'],
116-
function (service) {
117-
if (Accounts[service])
118-
ret.push({name: service});
119-
});
111+
// First look for OAuth services.
112+
var services = Package['accounts-oauth'] ? Accounts.oauth.serviceNames() : [];
113+
114+
// Be equally kind to all login services. This also preserves
115+
// backwards-compatibility. (But maybe order should be
116+
// configurable?)
117+
services.sort();
120118

121-
return ret;
119+
// Add password, if it's there; it must come last.
120+
if (this.hasPasswordService())
121+
services.push('password');
122+
123+
return _.map(services, function(name) {
124+
return {name: name};
125+
});
122126
};
123127

124128
Accounts._loginButtons.hasPasswordService = function () {
125-
return Accounts.password;
129+
return !!Package['accounts-password'];
126130
};
127131

128132
Accounts._loginButtons.dropdown = function () {
129-
return Accounts._loginButtons.hasPasswordService() || Accounts._loginButtons.getLoginServices().length > 1;
133+
return this.hasPasswordService() || getLoginServices().length > 1;
130134
};
131135

132136
// XXX improve these. should this be in accounts-password instead?

package.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Package.describe({
33
});
44

55
Package.on_use(function (api) {
6-
api.use(['accounts-password','stylus','accounts-urls', 'accounts-base', 'underscore', 'templating', 'bootstrap-3'], 'client');
6+
api.use(['handlebars', 'accounts-password','stylus', 'accounts-base', 'underscore', 'templating', 'bootstrap-3'], 'client');
77

88
api.add_files([
99
'accounts_ui.js',

smart.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"description": "Meteor's accounts templates styled for bootstrap-3",
44
"homepage": "https://github.com/mangasocial/meteor-accounts-ui-bootstrap-3",
55
"author": "Manga Social Team (http://mangasocial.com)",
6-
"version": "0.2.0",
6+
"version": "0.2.1",
77
"git": "https://github.com/mangasocial/meteor-accounts-ui-bootstrap-3.git"
88
}

0 commit comments

Comments
 (0)