/usr/share/ubiquity-slideshow/slides/link/xubuntu.js is in ubiquity-slideshow-xubuntu 83.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | Signals.watch('slideshow-loaded', function() {
/* Highlight the portions of the panel when hovering over the information boxes */
$( '#panel_menu' ).hover(
function( ) { panelhighlight_show( 0, 26 ); },
function( ) { panelhighlight_hide( ); }
);
$( '#panel_windowbuttons' ).hover(
function( ) { panelhighlight_show( 32, 576 ); },
function( ) { panelhighlight_hide( ); }
);
$( '#panel_indicatorsclock' ).hover(
function( ) { panelhighlight_show( 608, 142 ); },
function( ) { panelhighlight_hide( ); }
);
} );
function panelhighlight_show( left, width ) {
$( '#panelhighlight' ).css( 'margin-left', left + 'px' );
$( '#panelhighlight' ).width( width + 'px' );
$( '#panelhighlight' ).addClass( 'visible' );
}
function panelhighlight_hide( ) {
$( '#panelhighlight' ).removeClass( 'visible' );
}
|