Make Facebook login popup taller

This commit is contained in:
riking 2014-03-23 21:59:13 -07:00
parent a3344a6be3
commit c978eade56
1 changed files with 4 additions and 2 deletions

View File

@ -37,13 +37,15 @@ Discourse.LoginMethod.reopenClass({
"yahoo", "yahoo",
"github" "github"
].forEach(function(name){ ].forEach(function(name){
if(Discourse.SiteSettings["enable_" + name + "_logins"]){ if (Discourse.SiteSettings["enable_" + name + "_logins"]) {
var params = {name: name}; var params = {name: name};
if(name === "google") { if (name === "google") {
params.frameWidth = 850; params.frameWidth = 850;
params.frameHeight = 500; params.frameHeight = 500;
} else if (name === "facebook") {
params.frameHeight = 420;
} }
methods.pushObject(Discourse.LoginMethod.create(params)); methods.pushObject(Discourse.LoginMethod.create(params));