Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
| Line 9: | Line 9: | ||
$(window).load(function() { | $(window).load(function() { | ||
var h = $(document).height(); | |||
console.log(h); | |||
if (parent && parent.setIframeHeight) { | if (parent && parent.setIframeHeight) { | ||
parent.setIframeHeight('wiki-iframe', $(document).height()); | parent.setIframeHeight('wiki-iframe', $(document).height()); | ||
} | } | ||
}); | }); | ||
Revision as of 11:24, 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);
if (parent && parent.setIframeHeight) {
parent.setIframeHeight('wiki-iframe', $(document).height());
}
});