Source for "Remember the Milk - Disable Sidebar Scroll"

By WCityMike
Has 11 other scripts.


// ==UserScript==
// @name           Remember the Milk - Disable Sidebar Scroll
// @namespace      http://www.devoresoftware.com
// @description    Disables the floating nature of the RTM sidebar.
// @include        http://www.rememberthemilk.com/*
// @include        https://www.rememberthemilk.com/*
// ==/UserScript==
// New code provided by Michael Devore in discussion thread at
// http://userscripts.org/forums/1/topics/172.

var L = unsafeWindow.document.getElementById("detailsbox");
L.moveDiv = function () {
	var L = unsafeWindow.document.getElementById("detailsbox");
	L.style.top = window.pageYOffset+"px";
	unsafeWindow.Autocomplete.handleWindowResize();
};