This file is indexed.

/usr/share/javascript/jquery-opacityrollover/jquery.opacityrollover.min.js is in libjs-jquery-opacityrollover 11-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
(function($){var defaults={mouseOutOpacity:.67,mouseOverOpacity:1,fadeSpeed:"fast",exemptionSelector:".selected"};$.fn.opacityrollover=function(settings){$.extend(this,defaults,settings);var config=this;function fadeTo(element,opacity){var $target=$(element);if(config.exemptionSelector)$target=$target.not(config.exemptionSelector);$target.fadeTo(config.fadeSpeed,opacity)}this.css("opacity",this.mouseOutOpacity).hover(function(){fadeTo(this,config.mouseOverOpacity)},function(){fadeTo(this,config.mouseOutOpacity)});return this}})(jQuery);