Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
var h = $(document).height(); | var h = $(document).height(); | ||
console.log(h); | console.log(h); | ||
console.log(document.body.scrollHeight); | |||
if (parent && parent.setIframeHeight) { | if (parent && parent.setIframeHeight) { | ||
parent.setIframeHeight('wiki-iframe', $(document).height()); | parent.setIframeHeight('wiki-iframe', $(document).height()); | ||
} | } | ||
}); | }); |
Revision as of 11:27, 4 November 2011
/* Any JavaScript here will be loaded for all users on every page load. */ $(document).ready(function() { $('.iframe-body #saved-book-links a.external').click(function(e) { e.preventDefault(); window.open($(this).attr('href'), 'Saved book'); }); }); $(window).load(function() { var h = $(document).height(); console.log(h); console.log(document.body.scrollHeight); if (parent && parent.setIframeHeight) { parent.setIframeHeight('wiki-iframe', $(document).height()); } });