# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. Index: contributions/modules/popups/skins/facebook/facebook.js --- contributions/modules/popups/skins/facebook/facebook.js Base (1.1.4.3) +++ contributions/modules/popups/skins/facebook/facebook.js Locally Modified (Based On 1.1.4.3) @@ -78,8 +78,12 @@ if (popupHeight > (0.9 * windowHeight) ) { // Must fit in 90% of window. // we make this slightly smaller than popups so that it fits inside popupHeight = 0.85 * windowHeight; - $popups.height(popupHeight); + $popupsContainer.height(popupHeight); } + // needs an extra 20px as the bottom dropshadow looks cutoff + var $activePopup = $('#' + popup.id); + $activePopup.height($activePopup.height() + 20); + console.log(popup.id); \ No newline at end of file } } };