reverse LDR pins

By fuba Last update Jul 7, 2007 — Installed 102 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           reverse LDR pins
// @namespace      http://fuba.s7.xrea.com
// @description    Reverse the order of LDR pins when you open them.
// @include        http://reader.livedoor.com/reader/
// ==/UserScript==

// This script is from http://twitter.com/kentaro/statuses/138565372
// Thanks to @kentaro

(function(){
    with(unsafeWindow){
        pin.__open_group = pin.open_group;
        pin.open_group = function () {
            pin.pins.reverse();
            pin.__open_group();
        } 
    }
})();