Created
October 30, 2011 13:36
-
-
Save dandiebolt/1325902 to your computer and use it in GitHub Desktop.
ConneXionsIFrameResizer.user.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name ConneXionsIFrameResizer | |
// @namespace ConneXions | |
// @include http://p2pu.org/en/groups/lernanatron/content/connexions-course-iii/ | |
// @author Dan Diebolt | |
// @description Resizes <iframe> to 6000px hieght for ConneXions III Example | |
// ==/UserScript== | |
// a function that loads jQuery and calls a callback function when jQuery has finished loading | |
function addJQuery(callback) { | |
var script = document.createElement("script"); | |
script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"); | |
script.addEventListener('load', function() { | |
var script = document.createElement("script"); | |
script.textContent = "(" + callback.toString() + ")();"; | |
document.body.appendChild(script); | |
}, false); | |
document.body.appendChild(script); | |
} | |
function main() { | |
$("iframe").attr("height","6000px"); | |
} | |
// load jQuery and execute the main function | |
addJQuery(main); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment