// IP.Board: Add Selected Text as Quote Always Visible
// Copyright (c) 2006-2007 Orbona
// Version 1.0
// Release Date: 2007-10-22
//
// See also: http://www.orbona.com/greasemonkey/
//
// Original file name: ipboard_addseltextqt.user.js
// Please reference the original file name when contacting me regarding this
// script.
//
// Released under the GPL license: http://www.gnu.org/copyleft/gpl.html
//
//---------------------------------------------------------------------------
// DESCRIPTION
//
// Sets the style of the "Add Selected Text as Quote" on an Invision Power
// Board (IP.Board, see http://www.invisionpower.com) button to always be
// visible.  I created this since the button didn't show reliably on all
// my browers and operating systems. Also, I didn't like it when the other
// buttons "shifted" to make room for the "Add Selected Text as Quote"
// button.
//---------------------------------------------------------------------------

// ==UserScript==
// @name            IP.Board: Add Selected Text as Quote Always Visible
// @description     Sets the 'Add Selected Text as Quote' button to always be visible and never hidden
// @namespace       http://www.orbona.com/greasemonkey/
// @include         http://forums.televisionwithoutpity.com/index.php?showtopic*
// @include         http://www2.konfabulator.com/forums/index.php?showtopic*
// ==/UserScript==

window.addEventListener("load", function() { document.getElementById('fastreply-pastesel').style.display='block';}, false);

