aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--demos/progressbar/default.html9
-rw-r--r--demos/progressbar/download.html14
-rw-r--r--demos/progressbar/indeterminate.html9
-rw-r--r--demos/progressbar/label.html9
4 files changed, 8 insertions, 33 deletions
diff --git a/demos/progressbar/default.html b/demos/progressbar/default.html
index 197a976c5..b1ada1a0a 100644
--- a/demos/progressbar/default.html
+++ b/demos/progressbar/default.html
@@ -4,17 +4,12 @@
<meta charset="utf-8">
<title>jQuery UI Progressbar - Default functionality</title>
<link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../external/jquery/jquery.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/progressbar.js"></script>
<link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
+ <script src="../../external/requirejs/require.js"></script>
+ <script src="../bootstrap.js">
$( "#progressbar" ).progressbar({
value: 37
});
- });
</script>
</head>
<body>
diff --git a/demos/progressbar/download.html b/demos/progressbar/download.html
index 1253176a4..a7731b387 100644
--- a/demos/progressbar/download.html
+++ b/demos/progressbar/download.html
@@ -4,18 +4,9 @@
<meta charset="utf-8">
<title>jQuery UI Progressbar - Download Dialog</title>
<link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../external/jquery/jquery.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/progressbar.js"></script>
- <script src="../../ui/mouse.js"></script>
- <script src="../../ui/draggable.js"></script>
- <script src="../../ui/button.js"></script>
- <script src="../../ui/position.js"></script>
- <script src="../../ui/dialog.js"></script>
<link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
+ <script src="../../external/requirejs/require.js"></script>
+ <script src="../bootstrap.js" data-modules="dialog">
var progressTimer,
progressbar = $( "#progressbar" ),
progressLabel = $( ".progress-label" ),
@@ -83,7 +74,6 @@
.text( "Starting download..." );
downloadButton.trigger( "focus" );
}
- });
</script>
<style>
#progressbar {
diff --git a/demos/progressbar/indeterminate.html b/demos/progressbar/indeterminate.html
index ef5f446f2..d349a7436 100644
--- a/demos/progressbar/indeterminate.html
+++ b/demos/progressbar/indeterminate.html
@@ -4,13 +4,9 @@
<meta charset="utf-8">
<title>jQuery UI Progressbar - Indeterminate Value</title>
<link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../external/jquery/jquery.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/progressbar.js"></script>
<link rel="stylesheet" href="../demos.css">
- <script>
- $(function() {
+ <script src="../../external/requirejs/require.js"></script>
+ <script src="../bootstrap.js">
$( "#progressbar" ).progressbar({
value: false
});
@@ -31,7 +27,6 @@
progressbar.progressbar( "option", "value", false );
}
});
- });
</script>
<style>
#progressbar .ui-progressbar-value {
diff --git a/demos/progressbar/label.html b/demos/progressbar/label.html
index f4c493707..ea4c4ecdb 100644
--- a/demos/progressbar/label.html
+++ b/demos/progressbar/label.html
@@ -4,10 +4,6 @@
<meta charset="utf-8">
<title>jQuery UI Progressbar - Custom Label</title>
<link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../external/jquery/jquery.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/progressbar.js"></script>
<link rel="stylesheet" href="../demos.css">
<style>
.ui-progressbar {
@@ -21,8 +17,8 @@
text-shadow: 1px 1px 0 #fff;
}
</style>
- <script>
- $(function() {
+ <script src="../../external/requirejs/require.js"></script>
+ <script src="../bootstrap.js">
var progressbar = $( "#progressbar" ),
progressLabel = $( ".progress-label" );
@@ -47,7 +43,6 @@
}
setTimeout( progress, 2000 );
- });
</script>
</head>
<body>
option value='backport/47834/stable30'>backport/47834/stable30 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/settings/routes.php
blob: 150746665d318f1b87152b024343f997c497084b (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96