Remember the Milk - Disable Sidebar Scroll

By WCityMike Last update Apr 11, 2008 — Installed 1,162 times. Daily Installs: 0, 0, 0, 1, 2, 0, 4, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 4, 0, 3, 1
// ==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();
};