User:Technical 13/Scripts/Teahouse.js

Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/* Load other Teahouse scripts */
importScript('User:Technical 13/Scripts/Teahouse WikiLove.js'); // Trying beta script
importScript('User:Technical 13/Scripts/Teahouse IRC.js'); // Trying out my TeaHouse IRC script... Many features to come.

/* add talkback reminder when you save an edit at the Teahouse
$( function() {
    if ( mw.config.get( 'wgPageName' ) === 'Wikipedia:Teahouse/Questions' && document.getElementById( 'editform' ) !== null ) {
         document.getElementById( 'wpSave' ).onclick = teahouseHandler;
    }
} );
 
function teahouseHandler() {
	if ( !( document.getElementById( 'wpMinoredit' ).checked ) ) {
		alert( 'Remember to leave a Teahouse Talkback template!' );
	}
}

*/

/* Teahouse talkback link */
/* NOTES:
 * Only apply TB link to signatures and templates that wrap links in ()
 * Detect signature section character separator and mimic it to make it look less "inserted"
**/
// importScript( 'User:Technical 13/Scripts/teahouseTalkbackLink.js' );// [[User:Technical 13/Scripts/teahouseTalkbackLink.js]]

/* You've installed all of the Teahouse scripts, so you no longer need the little box to remind you to add the scripts! */
$( 'div#template-navbar' ).remove();

/* Widen the wishlist box so it is not a tall column of only a dozen characters wide */
$( 'div#TH-Wishlist-container' ).css( { "float": "none", "width": "900px" } );
$( 'div#TH-Wishlist' ).css( { "float": "none", "width": "898px" } );