This file is indexed.

/usr/share/doc/r-cran-shinyjs/tests/test-success.js is in r-cran-shinyjs 0.9.1-1.

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
shinyjs.increment = function(params) {
  var defaultParams = {
    id : null,
    num : 1
  };
  params = shinyjs.getParams(params, defaultParams);

  var el = $("#" + params.id);
  el.text(parseInt(el.text()) + params.num);
}

shinyjs.noop = function(params) {}

shinyjs.colour = function(params) {
  var defaultParams = {
    id : null,
    col : "red"
  };
  params = shinyjs.getParams(params, defaultParams);

  var el = $("#" + params.id);
  el.css('color', params.col);
}