Ubuntu Pastebin

Paste from flocculant at Wed, 12 Apr 2017 18:58:40 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
jQuery( function( ) {
	jQuery( '.show-on-js' ).show( );

	/* Release list */
	jQuery( '.releases .eol' ).hide( );
	jQuery( '.releases .show-eol' ).click( function( ) {
		jQuery( this ).hide( );
		jQuery( '.releases .eol' ).fadeIn( );
	} );

	/* Release list (admin) */
	jQuery( '.releases .eol input:checked' ).closest( '.eol' ).show( );

	/* Mirror list */
	jQuery( '.mirrors .secondary' ).hide( );
	jQuery( '.mirrors .show-all' ).click( function( ) {
		jQuery( this ).hide( );
		jQuery( this ).closest( '.mirrors' ).addClass( 'expanded' );
		jQuery( this ).closest( '.mirrors' ).children( '.secondary' ).fadeIn( );
	} );
} );
Download as text