This file is indexed.

/usr/share/javascript/jquery-opacityrollover/jquery.opacityrollover.min.js is in libjs-jquery-opacityrollover 4-1.

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

The actual contents of the file can be viewed below.

1
(function(a){var b={mouseOutOpacity:0.67,mouseOverOpacity:1,fadeSpeed:"fast",exemptionSelector:".selected"};a.fn.opacityrollover=function(d){a.extend(this,b,d);var c=this;function e(h,g){var f=a(h);if(c.exemptionSelector){f=f.not(c.exemptionSelector)}f.fadeTo(c.fadeSpeed,g)}this.css("opacity",this.mouseOutOpacity).hover(function(){e(this,c.mouseOverOpacity)},function(){e(this,c.mouseOutOpacity)});return this}})(jQuery);