Commit e060f3ad by Paul Klimov

Merge pull request #4982 from diiimonn/feature

fix authchoice.js
parents de63a46d 97b4c505
...@@ -31,9 +31,9 @@ jQuery(function($) { ...@@ -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($) { ...@@ -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(',');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment