This file is indexed.

/usr/share/tdiary/js/02edit.js is in tdiary 3.2.2-6.

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
(function() {

  $(document).ready(function() {
    var form, targetArea;
    form = $('textarea');
    targetArea = $('div.update > div.form').first();
    if (form.width() < targetArea.width() / 2.5) {
      form.width(targetArea.width() / 2.5);
    }
    if (form.height() < targetArea.height() / 1.5) {
      return form.height(targetArea.height() / 1.5);
    }
  });

}).call(this);