This file is indexed.

/usr/share/doc/libjs-jquery-fullscreen/readme.md is in libjs-jquery-fullscreen 11-3.

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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# jQuery FullScreen Plugin

A jQuery 1.7 plugin that wraps around the *[Full Screen API](https://developer.mozilla.org/en/DOM/Using_full-screen_mode)* and works around various browser differences. Works in FF 10, Chrome and Safari. It is useful for presenting users with an easier to read version of your web pages, or zooming *<canvas>* and *<video>* elements.

## How to use

Include jquery.fullscreen.js in your page along with version 1.7 of the jQuery library. This gives you the `$('#elem').fullScreen()` method. You can optionally pass an object with properties:

<table>
	<tr>
		<th>Property</th>
		<th>Value</th>
		<th>Meaning</th>
	</tr>
    <tr>
        <td>background</td>
        <td>a color hash</td>
        <td>This is the color that will be used for the background.</td>
    </tr>
    <tr>
        <td>callback</td>
        <td>a function</td>
        <td>The callback function will be called on a full screen change event. It has one argument - a boolean indicating whether we are in full screen or not.</td>
    </tr>
    <tr>
    	<td>fullscreenClass</td>
    	<td>a string</td>
    	<td>This is the CSS class that will be added to elements in fullscreen mode. The default class is "fullScreen".</td>
    </tr>
</table>

After the plugin makes your element full screen, it will add the `fullScreen` class on it (unless overridden with the `fullscreenClass` parameter), so you can easily style it.

## Example

```js
// The plugin sets the $.support.fullscreen flag:
if($.support.fullscreen){
	
	// ...
	// Show your full screen button here
	// ...
	
	$('#fullScreen').click(function(e){
	
		$('#content').fullScreen();
		
		// You can also pass a hash with properties:
		// $('#content').fullScreen({
		//	'background'	: '#111',
		//	'callback'		: function(isFullScreen){
		//		// ...
		//		// Do some cleaning up here
		//		// ...
		//	}
		// });
	});
}
```

You can then apply additional styles to your element. Take the opportunity to increase the font size, hide distractions and make for a better reading experience.

```css

#content.fullScreen{
	/* Give the element a width and margin:0 auto; to center it. */
}

```

If you later wish **to cancel the full screen view**, you can do so by calling the `fullScreen()` method again.

## Demo

Go to [Tutorialzine](http://tutorialzine.com/2012/02/enhance-your-website-fullscreen-api/) for a live demo.