* @author Thomas Müller * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see * */ /** * Public interface of ownCloud for apps to use. * Files/InvalidContentException class */ // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; /** * Exception for invalid content * @since 6.0.0 */ class InvalidContentException extends \Exception {} ndabot/github_actions/github-actions-0b02fec6e3 The official jQuery user interface library: https://github.com/jquery/jquery-uiwww-data
aboutsummaryrefslogtreecommitdiffstats
blob: fbaff7a8a0f8b3e9ced3826ce963e2bf2c416f8f (plain)
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
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8" />
	<title>jQuery UI Menu - Default demo</title>
	<link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
	<script src="../../jquery-1.7.1.js"></script>
	<script src="../../ui/jquery.ui.core.js"></script>
	<script src="../../ui/jquery.ui.widget.js"></script>
	<script src="../../ui/jquery.ui.menu.js"></script>
	<link href="../demos.css" rel="stylesheet" />
	<script>
	$(function() {
		$(".demo ul").menu();
	});
	</script>
	<style>
		
	</style>
</head>
<body>

<div class="demo">

	<ul>
		<li><a href="#Aberdeen">Aberdeen</a></li>
		<li><a href="#Ada">Ada</a></li>
		<li><a href="#Adamsville">Adamsville</a></li>
		<li><a href="#Addyston">Addyston</a></li>
		<li><a href="#Adelphi">Adelphi</a></li>
		<li><a href="#Adena">Adena</a></li>
		<li><a href="#Adrian">Adrian</a></li>
		<li><a href="#Akron">Akron</a></li>
		<li><a href="#Albany">Albany</a></li>
		<li><a href="#Alexandria">Alexandria</a></li>
		<li><a href="#Alger">Alger</a></li>
		<li><a href="#Alledonia">Alledonia</a></li>
		<li><a href="#Alliance">Alliance</a></li>
		<li><a href="#Alpha">Alpha</a></li>
		<li><a href="#Alvada">Alvada</a></li>
	</ul>

</div><!-- End demo -->

<div class="demo-description">

<p>A menu with the default configuration. A list is transformed, adding themeing, mouse and keyboard navigation support. Try to tab to the menu and use the cursor keys to navigate.</p>

</div><!-- End demo-description -->



</body>
</html>