×
Create a new article
Write your page title here:
We currently have 30 articles on Ghost Machine Wiki. Type your article name above or create one of the articles listed here!



    Ghost Machine Wiki
    Revision as of 00:45, 29 January 2024 by TheDemon08 (talk | contribs) (Created page with "$( function () { if( !$( '.timeline-toggles' ).length ) { return; } $( '.timeline-toggles' ).find( 'td > a' ).click( function () { var hideBtnClass = $( this ).parent().attr( 'class' ), $hideContent = $( 'tr.' + hideBtnClass ); if( !$hideContent.length ) { return; } $hideContent.toggle(); if ( $( this ).text().indexOf( 'hide' ) >= 1 ) { $( this ).text( $( this ).text().replace( 'hide', 'show' ) ); } else { $( this ).text( $( this ).text().rep...")
    (diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

    Note: After publishing, you may have to bypass your browser's cache to see the changes.

    • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
    • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
    • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
    • Opera: Press Ctrl-F5.
    $( function () {
    	if( !$( '.timeline-toggles' ).length ) {
    		return;
    	}
    	$( '.timeline-toggles' ).find( 'td > a' ).click( function () {
    		var	hideBtnClass = $( this ).parent().attr( 'class' ),
    			$hideContent = $( 'tr.' + hideBtnClass );
    		if( !$hideContent.length ) {
    			return;
    		}
    		$hideContent.toggle();
    		if ( $( this ).text().indexOf( 'hide' ) >= 1 ) {
    			$( this ).text( $( this ).text().replace( 'hide', 'show' ) );
    		} else {
    			$( this ).text( $( this ).text().replace( 'show', 'hide' ) );
    		}
    	} );
    } );
    
    $( document ).ready( function () {
        var location = window.location.href;
            url = location;
            url = url.split('&useskin')[0];
            url = url.split('?useskin')[0];
            window.history.pushState( {}, document.title, url )
    
            if ( url != location ) {
                window.location.reload();
            }
    } );
    
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.