Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
(Created page with "→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) { ...") |
|||
Line 6: | Line 6: | ||
window.open($(this).attr('href'), 'Saved book'); | window.open($(this).attr('href'), 'Saved book'); | ||
}); | }); | ||
}); | |||
$(window).load(function() { | |||
if (parent && parent.setIframeHeight) { | |||
parent.setIframeHeight('wiki-iframe', 300); | |||
} | |||
}); | }); |
Revision as of 11:15, 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() { if (parent && parent.setIframeHeight) { parent.setIframeHeight('wiki-iframe', 300); } });