This file is indexed.

/usr/share/civicrm/js/crm.backdrop.js is in civicrm-common 4.7.30+dfsg-1ubuntu1.

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
// http://civicrm.org/licensing
CRM.$(function($) {
  $('#admin-bar').css('display', 'none');
  $('.crm-hidemenu').click(function(e) {
    $('#admin-bar').css('display', 'block');
  });
  $('#crm-notification-container').on('click', '#crm-restore-menu', function() {
    $('#admin-bar').css('display', 'none');
  });
});