User:Tomaschwutz
From Wikiversity
Just discovering wikiversity, I find it a good idea to capture a learning process and to share it with others.
I am new to wikis. Be patient with me. Constructuve criticism and guidance are welcome.
Contents |
[edit] Intro
- I will not view this page or its discussion very often, if want to come in contact with me, please, use email.
- my Sandbox
[edit] Support
- Wikiversity:Colloquium - Wikiversity
- messages after creating account
[edit] Ideas
- Learning how to edit wikis
- Learning about microbiology
- Science learning portal
- [- Wikiversity] (open content, religion, consencus, Time, etc. )
[edit] Projects
- Wikipedia service-learning courses - Wikiversity
- assembling free material and links for learning about microbiology
[edit] Configuration
[edit] Instaview
- deprecated: instead using wikEd now
- InstaView
- Topic in the Colloquium
- /instaview_config.js
- /monobook.js
- scrolling to the InstaView priview label by javascript
function ScrollToElement(theElement){
var selectedPosX = 0;
var selectedPosY = 0;
while(theElement != null){
selectedPosX += theElement.offsetLeft;
selectedPosY += theElement.offsetTop;
theElement = theElement.offsetParent;
}
//alert(selectedPosY);
//window.scrollTo(selectedPosX,selectedPosY);
//window.scrollTo(0,selectedPosY);
window.content.document.documentElement.scrollTop = selectedPosY;
}
var b = window.content.document.getElementById("InstaViewDump")
ScrollToElement(b)