Browse Source

fix authchoice.js

tags/2.0.0-rc
dima 10 years ago
parent
commit
97b4c505ad
  1. 12
      extensions/authclient/assets/authchoice.js

12
extensions/authclient/assets/authchoice.js

@ -31,9 +31,9 @@ jQuery(function($) {
$container.find('a').on('click', function(e) { $container.find('a').on('click', function(e) {
e.preventDefault(); e.preventDefault();
var authChoicePopup = null; var authChoicePopup = $container.data('authChoicePopup');
if (authChoicePopup = $container.data('authChoicePopup')) { if (authChoicePopup) {
authChoicePopup.close(); authChoicePopup.close();
} }
@ -49,12 +49,14 @@ jQuery(function($) {
popupOptions.height = localPopupHeight; popupOptions.height = localPopupHeight;
} }
popupOptions.left = (window.screen.width - options.popup.width) / 2; popupOptions.left = (window.screen.width - popupOptions.width) / 2;
popupOptions.top = (window.screen.height - options.popup.height) / 2; popupOptions.top = (window.screen.height - popupOptions.height) / 2;
var popupFeatureParts = []; var popupFeatureParts = [];
for (var propName in popupOptions) { for (var propName in popupOptions) {
popupFeatureParts.push(propName + '=' + popupOptions[propName]); if (popupOptions.hasOwnProperty(propName)) {
popupFeatureParts.push(propName + '=' + popupOptions[propName]);
}
} }
var popupFeature = popupFeatureParts.join(','); var popupFeature = popupFeatureParts.join(',');

Loading…
Cancel
Save