This file is indexed.

/usr/share/doc/libjs-mathjax-doc/html/_sources/options/other/MathEvents.rst.txt is in libjs-mathjax-doc 2.7+20171212-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
24
25
26
27
28
29
30
31
32
33
34
35
36
.. _configure-MathEvents:

************************
The MathEvents extension
************************

The options below control the operation of the MathEvents component that
allows handles mouse and menu events attached to mathematics that is
typeset by MathJax.  They are listed with their
default values.  To set any of these options, include a ``MathEvents``
section in your :meth:`MathJax.Hub.Config()` call.  For example

.. code-block:: javascript

    MathJax.Hub.Config({
      MathEvents: {
        hover: 400
      }
    });

would set the required delay for hovering over a math element to
400 milliseconds.

.. describe:: hover: 500

    This value is the time (in milliseconds) that a user must hold the
    mouse still over a math element before it is considered to be
    hovering over the math.

.. describe:: styles: {}

    This is a list of CSS declarations for styling the zoomed
    mathematics.  See the definitions in ``extensions/MathEvents.js``
    for details of what are defined by default.  See :ref:`CSS Style
    Objects <css-style-objects>` for details on how to specify CSS
    style in a JavaScript object.