This file is indexed.

/usr/share/hotot/js/ui.sidebar.js is in hotot-common 1:0.9.8.14-2.

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
if (typeof ui == 'undefined') var ui = {};
ui.Sidebar = {

id: '#aside',

is_show: false,

toggle:
function toggle() {
    if (ui.Sidebar.is_show) {
        globals.layout.sizePane('east', 0);
        globals.layout.close('east')
    } else {
        globals.layout.sizePane('east', 150);
        globals.layout.open('east')
    }
    update_tweet_block_width();
    ui.Sidebar.is_show = !ui.Sidebar.is_show;
    ui.Slider.slide_to(ui.Slider.current);
}

};