@latest-thinking/lt-player 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ README.md +126 -0
- package/dist/css/lt-player-main.css +1 -1
- package/dist/css/lt-player-main.css.map +1 -1
- package/dist/js/lt-player-main.js +1 -1
- package/dist/js/lt-player-main.js.map +1 -1
- package/examples/basic.html +35 -0
- package/examples/lt-page-with-player.html +3529 -0
- package/examples/lt-page-with-player_files/Weiskopf_Coverphoto.jpg +0 -0
- package/examples/lt-page-with-player_files/ajax-progress.module.css +49 -0
- package/examples/lt-page-with-player_files/align.module.css +32 -0
- package/examples/lt-page-with-player_files/announce.js +49 -0
- package/examples/lt-page-with-player_files/autocomplete-loading.module.css +22 -0
- package/examples/lt-page-with-player_files/autocomplete.css +16 -0
- package/examples/lt-page-with-player_files/bootstrap.css +22691 -0
- package/examples/lt-page-with-player_files/clearfix.module.css +15 -0
- package/examples/lt-page-with-player_files/container-inline.module.css +16 -0
- package/examples/lt-page-with-player_files/cookiesjsr.min.css +10 -0
- package/examples/lt-page-with-player_files/core.css +97 -0
- package/examples/lt-page-with-player_files/details.module.css +10 -0
- package/examples/lt-page-with-player_files/fieldgroup.module.css +9 -0
- package/examples/lt-page-with-player_files/hidden.module.css +53 -0
- package/examples/lt-page-with-player_files/himme-alexander-beyond_0.jpg +0 -0
- package/examples/lt-page-with-player_files/item-list.module.css +19 -0
- package/examples/lt-page-with-player_files/js.module.css +22 -0
- package/examples/lt-page-with-player_files/latest_thinking.style.css +6496 -0
- package/examples/lt-page-with-player_files/logo-small.png +0 -0
- package/examples/lt-page-with-player_files/menu.css +64 -0
- package/examples/lt-page-with-player_files/nowrap.module.css +8 -0
- package/examples/lt-page-with-player_files/paragraphs.unpublished.css +3 -0
- package/examples/lt-page-with-player_files/position-container.module.css +8 -0
- package/examples/lt-page-with-player_files/progress.module.css +51 -0
- package/examples/lt-page-with-player_files/radix.style.css +1 -0
- package/examples/lt-page-with-player_files/reset-appearance.module.css +15 -0
- package/examples/lt-page-with-player_files/resize.module.css +21 -0
- package/examples/lt-page-with-player_files/search_api_autocomplete.css +41 -0
- package/examples/lt-page-with-player_files/sticky-header.module.css +13 -0
- package/examples/lt-page-with-player_files/system-status-counter.css +30 -0
- package/examples/lt-page-with-player_files/system-status-report-counters.css +27 -0
- package/examples/lt-page-with-player_files/system-status-report-general-info.css +14 -0
- package/examples/lt-page-with-player_files/tabledrag.module.css +98 -0
- package/examples/lt-page-with-player_files/tablesort.module.css +19 -0
- package/examples/lt-page-with-player_files/theme.css +446 -0
- package/examples/lt-page-with-player_files/thumbnail_MPI_CBS_Eingangsbereich.jpg +0 -0
- package/examples/lt-page-with-player_files/tree-child.module.css +18 -0
- package/examples/lt-page-with-player_files/widget-min.js +10 -0
- package/examples/lt-website.html +76 -0
- package/examples/portrait-with-subtitles.html +81 -0
- package/examples/samples/vtt/Pahl-Kerstin-Maria-MAIN-20230320.vtt +765 -0
- package/examples/samples/vtt/Sobolev-Anton-Subtitles-20230518_0.vtt +352 -0
- package/examples/samples/vtt/demo.vtt +7 -0
- package/package.json +1 -1
- package/src/assets/sass/abstracts/_mixins.scss +1 -1
- package/src/assets/sass/abstracts/_variables.scss +1 -1
- package/src/assets/sass/app.scss +19 -0
- package/src/assets/sass/components/_all.scss +1 -1
- package/src/assets/sass/components/_loader.scss +187 -0
- package/src/assets/sass/components/_modal.scss +6 -0
- package/src/assets/sass/core/_player.scss +23 -5
- package/src/assets/sass/sections/_additional-info.scss +1 -1
- package/src/assets/sass/sections/_control.scss +0 -1
- package/src/assets/sass/sections/_poster.scss +1 -0
- package/src/assets/sass/sections/_settings.scss +27 -52
- package/src/assets/sass/sections/_subtitles.scss +78 -23
- package/src/assets/sass/sections/controllers/_botom.scss +59 -36
- package/src/assets/sass/sections/controllers/_notification-rewind-forward.scss +29 -14
- package/src/assets/sass/sections/controllers/_top.scss +1 -1
- package/src/components/LTPlayerDevMethode.ts +106 -84
- package/src/components/LTPlayerManager.ts +16 -0
- package/src/components/LTPlayerSettingsManager.ts +117 -0
- package/src/components/LTPlayerSetup.ts +3 -10
- package/src/components/LTPlayerStatusFeedback.ts +76 -0
- package/src/components/LTPlayerStorage.ts +58 -0
- package/src/components/LTPlayerType.ts +10 -2
- package/src/components/LTPlayerUpdate.ts +61 -0
- package/src/components/captions/LTPlayerCaptions.ts +80 -0
- package/src/components/config/LTPlayerConfig.ts +43 -0
- package/src/components/config/LTPlayerConfigProcessor.ts +110 -56
- package/src/components/controls/LTPlayerChapters.ts +8 -4
- package/src/components/controls/LTPlayerControls.ts +2 -0
- package/src/components/controls/LTPlayerControlsEvents.ts +200 -49
- package/src/components/controls/settings/LTPlayerCommonSettingsControllers.ts +9 -1
- package/src/components/controls/settings/LTPlayerDesktopSettingsControllers.ts +17 -14
- package/src/components/controls/settings/LTPlayerMobileSettingsControllers.ts +50 -44
- package/src/components/events/LTPlayer.ts +24 -21
- package/src/components/events/LTPlayerCommon.ts +94 -20
- package/src/components/events/LTPlayerDesktop.ts +21 -7
- package/src/components/events/LTPlayerMobile.ts +22 -10
- package/src/global/controllers/LTPlayerController.ts +7 -0
- package/src/services/Helper.ts +6 -1
- package/src/services/ResizeService.ts +35 -30
- package/src/services/TemplateService.ts +7 -0
- package/src/views/additionalInfo.handlebars +18 -18
- package/src/views/controls.handlebars +14 -3
- package/src/views/poster.handlebars +2 -2
- package/src/views/settings.handlebars +1 -1
- package/src/views/settings.mobile.handlebars +22 -0
- package/src/views/template.handlebars +4 -1
- package/src/assets/sass/components/_spinner.scss +0 -46
|
@@ -0,0 +1,446 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* jQuery UI CSS Framework 1.13.2
|
|
3
|
+
* http://jqueryui.com
|
|
4
|
+
*
|
|
5
|
+
* Copyright jQuery Foundation and other contributors
|
|
6
|
+
* Released under the MIT license.
|
|
7
|
+
* http://jquery.org/license
|
|
8
|
+
*
|
|
9
|
+
* http://api.jqueryui.com/category/theming/
|
|
10
|
+
*
|
|
11
|
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
/* Component containers
|
|
16
|
+
----------------------------------*/
|
|
17
|
+
.ui-widget {
|
|
18
|
+
font-family: Arial,Helvetica,sans-serif/*{ffDefault}*/;
|
|
19
|
+
font-size: 1em/*{fsDefault}*/;
|
|
20
|
+
}
|
|
21
|
+
.ui-widget .ui-widget {
|
|
22
|
+
font-size: 1em;
|
|
23
|
+
}
|
|
24
|
+
.ui-widget input,
|
|
25
|
+
.ui-widget select,
|
|
26
|
+
.ui-widget textarea,
|
|
27
|
+
.ui-widget button {
|
|
28
|
+
font-family: Arial,Helvetica,sans-serif/*{ffDefault}*/;
|
|
29
|
+
font-size: 1em;
|
|
30
|
+
}
|
|
31
|
+
.ui-widget.ui-widget-content {
|
|
32
|
+
border: 1px solid #c5c5c5/*{borderColorDefault}*/;
|
|
33
|
+
}
|
|
34
|
+
.ui-widget-content {
|
|
35
|
+
border: 1px solid #dddddd/*{borderColorContent}*/;
|
|
36
|
+
background: #ffffff/*{bgColorContent}*/ /*{bgImgUrlContent}*/ /*{bgContentXPos}*/ /*{bgContentYPos}*/ /*{bgContentRepeat}*/;
|
|
37
|
+
color: #333333/*{fcContent}*/;
|
|
38
|
+
}
|
|
39
|
+
.ui-widget-content a {
|
|
40
|
+
color: #333333/*{fcContent}*/;
|
|
41
|
+
}
|
|
42
|
+
.ui-widget-header {
|
|
43
|
+
border: 1px solid #dddddd/*{borderColorHeader}*/;
|
|
44
|
+
background: #e9e9e9/*{bgColorHeader}*/ /*{bgImgUrlHeader}*/ /*{bgHeaderXPos}*/ /*{bgHeaderYPos}*/ /*{bgHeaderRepeat}*/;
|
|
45
|
+
color: #333333/*{fcHeader}*/;
|
|
46
|
+
font-weight: bold;
|
|
47
|
+
}
|
|
48
|
+
.ui-widget-header a {
|
|
49
|
+
color: #333333/*{fcHeader}*/;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* Interaction states
|
|
53
|
+
----------------------------------*/
|
|
54
|
+
.ui-state-default,
|
|
55
|
+
.ui-widget-content .ui-state-default,
|
|
56
|
+
.ui-widget-header .ui-state-default,
|
|
57
|
+
.ui-button,
|
|
58
|
+
|
|
59
|
+
/* We use html here because we need a greater specificity to make sure disabled
|
|
60
|
+
works properly when clicked or hovered */
|
|
61
|
+
html .ui-button.ui-state-disabled:hover,
|
|
62
|
+
html .ui-button.ui-state-disabled:active {
|
|
63
|
+
border: 1px solid #c5c5c5/*{borderColorDefault}*/;
|
|
64
|
+
background: #f6f6f6/*{bgColorDefault}*/ /*{bgImgUrlDefault}*/ /*{bgDefaultXPos}*/ /*{bgDefaultYPos}*/ /*{bgDefaultRepeat}*/;
|
|
65
|
+
font-weight: normal/*{fwDefault}*/;
|
|
66
|
+
color: #454545/*{fcDefault}*/;
|
|
67
|
+
}
|
|
68
|
+
.ui-state-default a,
|
|
69
|
+
.ui-state-default a:link,
|
|
70
|
+
.ui-state-default a:visited,
|
|
71
|
+
a.ui-button,
|
|
72
|
+
a:link.ui-button,
|
|
73
|
+
a:visited.ui-button,
|
|
74
|
+
.ui-button {
|
|
75
|
+
color: #454545/*{fcDefault}*/;
|
|
76
|
+
text-decoration: none;
|
|
77
|
+
}
|
|
78
|
+
.ui-state-hover,
|
|
79
|
+
.ui-widget-content .ui-state-hover,
|
|
80
|
+
.ui-widget-header .ui-state-hover,
|
|
81
|
+
.ui-state-focus,
|
|
82
|
+
.ui-widget-content .ui-state-focus,
|
|
83
|
+
.ui-widget-header .ui-state-focus,
|
|
84
|
+
.ui-button:hover,
|
|
85
|
+
.ui-button:focus {
|
|
86
|
+
border: 1px solid #cccccc/*{borderColorHover}*/;
|
|
87
|
+
background: #ededed/*{bgColorHover}*/ /*{bgImgUrlHover}*/ /*{bgHoverXPos}*/ /*{bgHoverYPos}*/ /*{bgHoverRepeat}*/;
|
|
88
|
+
font-weight: normal/*{fwDefault}*/;
|
|
89
|
+
color: #2b2b2b/*{fcHover}*/;
|
|
90
|
+
}
|
|
91
|
+
.ui-state-hover a,
|
|
92
|
+
.ui-state-hover a:hover,
|
|
93
|
+
.ui-state-hover a:link,
|
|
94
|
+
.ui-state-hover a:visited,
|
|
95
|
+
.ui-state-focus a,
|
|
96
|
+
.ui-state-focus a:hover,
|
|
97
|
+
.ui-state-focus a:link,
|
|
98
|
+
.ui-state-focus a:visited,
|
|
99
|
+
a.ui-button:hover,
|
|
100
|
+
a.ui-button:focus {
|
|
101
|
+
color: #2b2b2b/*{fcHover}*/;
|
|
102
|
+
text-decoration: none;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.ui-visual-focus {
|
|
106
|
+
box-shadow: 0 0 3px 1px rgb(94, 158, 214);
|
|
107
|
+
}
|
|
108
|
+
.ui-state-active,
|
|
109
|
+
.ui-widget-content .ui-state-active,
|
|
110
|
+
.ui-widget-header .ui-state-active,
|
|
111
|
+
a.ui-button:active,
|
|
112
|
+
.ui-button:active,
|
|
113
|
+
.ui-button.ui-state-active:hover {
|
|
114
|
+
border: 1px solid #003eff/*{borderColorActive}*/;
|
|
115
|
+
background: #007fff/*{bgColorActive}*/ /*{bgImgUrlActive}*/ /*{bgActiveXPos}*/ /*{bgActiveYPos}*/ /*{bgActiveRepeat}*/;
|
|
116
|
+
font-weight: normal/*{fwDefault}*/;
|
|
117
|
+
color: #ffffff/*{fcActive}*/;
|
|
118
|
+
}
|
|
119
|
+
.ui-icon-background,
|
|
120
|
+
.ui-state-active .ui-icon-background {
|
|
121
|
+
border: #003eff/*{borderColorActive}*/;
|
|
122
|
+
background-color: #ffffff/*{fcActive}*/;
|
|
123
|
+
}
|
|
124
|
+
.ui-state-active a,
|
|
125
|
+
.ui-state-active a:link,
|
|
126
|
+
.ui-state-active a:visited {
|
|
127
|
+
color: #ffffff/*{fcActive}*/;
|
|
128
|
+
text-decoration: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/* Interaction Cues
|
|
132
|
+
----------------------------------*/
|
|
133
|
+
.ui-state-highlight,
|
|
134
|
+
.ui-widget-content .ui-state-highlight,
|
|
135
|
+
.ui-widget-header .ui-state-highlight {
|
|
136
|
+
border: 1px solid #dad55e/*{borderColorHighlight}*/;
|
|
137
|
+
background: #fffa90/*{bgColorHighlight}*/ /*{bgImgUrlHighlight}*/ /*{bgHighlightXPos}*/ /*{bgHighlightYPos}*/ /*{bgHighlightRepeat}*/;
|
|
138
|
+
color: #777620/*{fcHighlight}*/;
|
|
139
|
+
}
|
|
140
|
+
.ui-state-checked {
|
|
141
|
+
border: 1px solid #dad55e/*{borderColorHighlight}*/;
|
|
142
|
+
background: #fffa90/*{bgColorHighlight}*/;
|
|
143
|
+
}
|
|
144
|
+
.ui-state-highlight a,
|
|
145
|
+
.ui-widget-content .ui-state-highlight a,
|
|
146
|
+
.ui-widget-header .ui-state-highlight a {
|
|
147
|
+
color: #777620/*{fcHighlight}*/;
|
|
148
|
+
}
|
|
149
|
+
.ui-state-error,
|
|
150
|
+
.ui-widget-content .ui-state-error,
|
|
151
|
+
.ui-widget-header .ui-state-error {
|
|
152
|
+
border: 1px solid #f1a899/*{borderColorError}*/;
|
|
153
|
+
background: #fddfdf/*{bgColorError}*/ /*{bgImgUrlError}*/ /*{bgErrorXPos}*/ /*{bgErrorYPos}*/ /*{bgErrorRepeat}*/;
|
|
154
|
+
color: #5f3f3f/*{fcError}*/;
|
|
155
|
+
}
|
|
156
|
+
.ui-state-error a,
|
|
157
|
+
.ui-widget-content .ui-state-error a,
|
|
158
|
+
.ui-widget-header .ui-state-error a {
|
|
159
|
+
color: #5f3f3f/*{fcError}*/;
|
|
160
|
+
}
|
|
161
|
+
.ui-state-error-text,
|
|
162
|
+
.ui-widget-content .ui-state-error-text,
|
|
163
|
+
.ui-widget-header .ui-state-error-text {
|
|
164
|
+
color: #5f3f3f/*{fcError}*/;
|
|
165
|
+
}
|
|
166
|
+
.ui-priority-primary,
|
|
167
|
+
.ui-widget-content .ui-priority-primary,
|
|
168
|
+
.ui-widget-header .ui-priority-primary {
|
|
169
|
+
font-weight: bold;
|
|
170
|
+
}
|
|
171
|
+
.ui-priority-secondary,
|
|
172
|
+
.ui-widget-content .ui-priority-secondary,
|
|
173
|
+
.ui-widget-header .ui-priority-secondary {
|
|
174
|
+
opacity: .7;
|
|
175
|
+
-ms-filter: "alpha(opacity=70)"; /* support: IE8 */
|
|
176
|
+
font-weight: normal;
|
|
177
|
+
}
|
|
178
|
+
.ui-state-disabled,
|
|
179
|
+
.ui-widget-content .ui-state-disabled,
|
|
180
|
+
.ui-widget-header .ui-state-disabled {
|
|
181
|
+
opacity: .35;
|
|
182
|
+
-ms-filter: "alpha(opacity=35)"; /* support: IE8 */
|
|
183
|
+
background-image: none;
|
|
184
|
+
}
|
|
185
|
+
.ui-state-disabled .ui-icon {
|
|
186
|
+
-ms-filter: "alpha(opacity=35)"; /* support: IE8 - See #6059 */
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/* Icons
|
|
190
|
+
----------------------------------*/
|
|
191
|
+
|
|
192
|
+
/* states and images */
|
|
193
|
+
.ui-icon {
|
|
194
|
+
width: 16px;
|
|
195
|
+
height: 16px;
|
|
196
|
+
}
|
|
197
|
+
.ui-icon,
|
|
198
|
+
.ui-widget-content .ui-icon {
|
|
199
|
+
background-image: url("images/ui-icons_444444_256x240.png")/*{iconsContent}*/;
|
|
200
|
+
}
|
|
201
|
+
.ui-widget-header .ui-icon {
|
|
202
|
+
background-image: url("images/ui-icons_444444_256x240.png")/*{iconsHeader}*/;
|
|
203
|
+
}
|
|
204
|
+
.ui-state-hover .ui-icon,
|
|
205
|
+
.ui-state-focus .ui-icon,
|
|
206
|
+
.ui-button:hover .ui-icon,
|
|
207
|
+
.ui-button:focus .ui-icon {
|
|
208
|
+
background-image: url("images/ui-icons_555555_256x240.png")/*{iconsHover}*/;
|
|
209
|
+
}
|
|
210
|
+
.ui-state-active .ui-icon,
|
|
211
|
+
.ui-button:active .ui-icon {
|
|
212
|
+
background-image: url("images/ui-icons_ffffff_256x240.png")/*{iconsActive}*/;
|
|
213
|
+
}
|
|
214
|
+
.ui-state-highlight .ui-icon,
|
|
215
|
+
.ui-button .ui-state-highlight.ui-icon {
|
|
216
|
+
background-image: url("images/ui-icons_777620_256x240.png")/*{iconsHighlight}*/;
|
|
217
|
+
}
|
|
218
|
+
.ui-state-error .ui-icon,
|
|
219
|
+
.ui-state-error-text .ui-icon {
|
|
220
|
+
background-image: url("images/ui-icons_cc0000_256x240.png")/*{iconsError}*/;
|
|
221
|
+
}
|
|
222
|
+
.ui-button .ui-icon {
|
|
223
|
+
background-image: url("images/ui-icons_777777_256x240.png")/*{iconsDefault}*/;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/* positioning */
|
|
227
|
+
/* Three classes needed to override `.ui-button:hover .ui-icon` */
|
|
228
|
+
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
|
|
229
|
+
background-image: none;
|
|
230
|
+
}
|
|
231
|
+
.ui-icon-caret-1-n { background-position: 0 0; }
|
|
232
|
+
.ui-icon-caret-1-ne { background-position: -16px 0; }
|
|
233
|
+
.ui-icon-caret-1-e { background-position: -32px 0; }
|
|
234
|
+
.ui-icon-caret-1-se { background-position: -48px 0; }
|
|
235
|
+
.ui-icon-caret-1-s { background-position: -65px 0; }
|
|
236
|
+
.ui-icon-caret-1-sw { background-position: -80px 0; }
|
|
237
|
+
.ui-icon-caret-1-w { background-position: -96px 0; }
|
|
238
|
+
.ui-icon-caret-1-nw { background-position: -112px 0; }
|
|
239
|
+
.ui-icon-caret-2-n-s { background-position: -128px 0; }
|
|
240
|
+
.ui-icon-caret-2-e-w { background-position: -144px 0; }
|
|
241
|
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
|
242
|
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
|
243
|
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
|
244
|
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
|
245
|
+
.ui-icon-triangle-1-s { background-position: -65px -16px; }
|
|
246
|
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
|
247
|
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
|
248
|
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
|
249
|
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
|
250
|
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
|
251
|
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
|
252
|
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
|
253
|
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
|
254
|
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
|
255
|
+
.ui-icon-arrow-1-s { background-position: -65px -32px; }
|
|
256
|
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
|
257
|
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
|
258
|
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
|
259
|
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
|
260
|
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
|
261
|
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
|
262
|
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
|
263
|
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
|
264
|
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
|
265
|
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
|
266
|
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
|
267
|
+
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
|
|
268
|
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
|
269
|
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
|
270
|
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
|
271
|
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
|
272
|
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
|
273
|
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
|
274
|
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
|
275
|
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
|
276
|
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
|
277
|
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
|
278
|
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
|
279
|
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
|
280
|
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
|
281
|
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
|
282
|
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
|
283
|
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
|
284
|
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
|
285
|
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
|
286
|
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
|
287
|
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
|
288
|
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
|
289
|
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
|
290
|
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
|
291
|
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
|
292
|
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
|
293
|
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
|
294
|
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
|
295
|
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
|
296
|
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
|
297
|
+
.ui-icon-extlink { background-position: -32px -80px; }
|
|
298
|
+
.ui-icon-newwin { background-position: -48px -80px; }
|
|
299
|
+
.ui-icon-refresh { background-position: -64px -80px; }
|
|
300
|
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
|
301
|
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
|
302
|
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
|
303
|
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
|
304
|
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
|
305
|
+
.ui-icon-document { background-position: -32px -96px; }
|
|
306
|
+
.ui-icon-document-b { background-position: -48px -96px; }
|
|
307
|
+
.ui-icon-note { background-position: -64px -96px; }
|
|
308
|
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
|
309
|
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
|
310
|
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
|
311
|
+
.ui-icon-comment { background-position: -128px -96px; }
|
|
312
|
+
.ui-icon-person { background-position: -144px -96px; }
|
|
313
|
+
.ui-icon-print { background-position: -160px -96px; }
|
|
314
|
+
.ui-icon-trash { background-position: -176px -96px; }
|
|
315
|
+
.ui-icon-locked { background-position: -192px -96px; }
|
|
316
|
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
|
317
|
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
|
318
|
+
.ui-icon-tag { background-position: -240px -96px; }
|
|
319
|
+
.ui-icon-home { background-position: 0 -112px; }
|
|
320
|
+
.ui-icon-flag { background-position: -16px -112px; }
|
|
321
|
+
.ui-icon-calendar { background-position: -32px -112px; }
|
|
322
|
+
.ui-icon-cart { background-position: -48px -112px; }
|
|
323
|
+
.ui-icon-pencil { background-position: -64px -112px; }
|
|
324
|
+
.ui-icon-clock { background-position: -80px -112px; }
|
|
325
|
+
.ui-icon-disk { background-position: -96px -112px; }
|
|
326
|
+
.ui-icon-calculator { background-position: -112px -112px; }
|
|
327
|
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
|
328
|
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
|
329
|
+
.ui-icon-search { background-position: -160px -112px; }
|
|
330
|
+
.ui-icon-wrench { background-position: -176px -112px; }
|
|
331
|
+
.ui-icon-gear { background-position: -192px -112px; }
|
|
332
|
+
.ui-icon-heart { background-position: -208px -112px; }
|
|
333
|
+
.ui-icon-star { background-position: -224px -112px; }
|
|
334
|
+
.ui-icon-link { background-position: -240px -112px; }
|
|
335
|
+
.ui-icon-cancel { background-position: 0 -128px; }
|
|
336
|
+
.ui-icon-plus { background-position: -16px -128px; }
|
|
337
|
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
|
338
|
+
.ui-icon-minus { background-position: -48px -128px; }
|
|
339
|
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
|
340
|
+
.ui-icon-close { background-position: -80px -128px; }
|
|
341
|
+
.ui-icon-closethick { background-position: -96px -128px; }
|
|
342
|
+
.ui-icon-key { background-position: -112px -128px; }
|
|
343
|
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
|
344
|
+
.ui-icon-scissors { background-position: -144px -128px; }
|
|
345
|
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
|
346
|
+
.ui-icon-copy { background-position: -176px -128px; }
|
|
347
|
+
.ui-icon-contact { background-position: -192px -128px; }
|
|
348
|
+
.ui-icon-image { background-position: -208px -128px; }
|
|
349
|
+
.ui-icon-video { background-position: -224px -128px; }
|
|
350
|
+
.ui-icon-script { background-position: -240px -128px; }
|
|
351
|
+
.ui-icon-alert { background-position: 0 -144px; }
|
|
352
|
+
.ui-icon-info { background-position: -16px -144px; }
|
|
353
|
+
.ui-icon-notice { background-position: -32px -144px; }
|
|
354
|
+
.ui-icon-help { background-position: -48px -144px; }
|
|
355
|
+
.ui-icon-check { background-position: -64px -144px; }
|
|
356
|
+
.ui-icon-bullet { background-position: -80px -144px; }
|
|
357
|
+
.ui-icon-radio-on { background-position: -96px -144px; }
|
|
358
|
+
.ui-icon-radio-off { background-position: -112px -144px; }
|
|
359
|
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
|
360
|
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
|
361
|
+
.ui-icon-play { background-position: 0 -160px; }
|
|
362
|
+
.ui-icon-pause { background-position: -16px -160px; }
|
|
363
|
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
|
364
|
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
|
365
|
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
|
366
|
+
.ui-icon-seek-start { background-position: -80px -160px; }
|
|
367
|
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
|
368
|
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
|
369
|
+
.ui-icon-stop { background-position: -96px -160px; }
|
|
370
|
+
.ui-icon-eject { background-position: -112px -160px; }
|
|
371
|
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
|
372
|
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
|
373
|
+
.ui-icon-power { background-position: 0 -176px; }
|
|
374
|
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
|
375
|
+
.ui-icon-signal { background-position: -32px -176px; }
|
|
376
|
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
|
377
|
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
|
378
|
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
|
379
|
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
|
380
|
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
|
381
|
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
|
382
|
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
|
383
|
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
|
384
|
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
|
385
|
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
|
386
|
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
|
387
|
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
|
388
|
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
|
389
|
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
|
390
|
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
|
391
|
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
|
392
|
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
|
393
|
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
|
394
|
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
|
395
|
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
|
396
|
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
|
397
|
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
|
398
|
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
|
399
|
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
|
400
|
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
|
401
|
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
|
402
|
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
|
403
|
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
|
404
|
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
|
405
|
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
/* Misc visuals
|
|
409
|
+
----------------------------------*/
|
|
410
|
+
|
|
411
|
+
/* Corner radius */
|
|
412
|
+
.ui-corner-all,
|
|
413
|
+
.ui-corner-top,
|
|
414
|
+
.ui-corner-left,
|
|
415
|
+
.ui-corner-tl {
|
|
416
|
+
border-top-left-radius: 3px/*{cornerRadius}*/;
|
|
417
|
+
}
|
|
418
|
+
.ui-corner-all,
|
|
419
|
+
.ui-corner-top,
|
|
420
|
+
.ui-corner-right,
|
|
421
|
+
.ui-corner-tr {
|
|
422
|
+
border-top-right-radius: 3px/*{cornerRadius}*/;
|
|
423
|
+
}
|
|
424
|
+
.ui-corner-all,
|
|
425
|
+
.ui-corner-bottom,
|
|
426
|
+
.ui-corner-left,
|
|
427
|
+
.ui-corner-bl {
|
|
428
|
+
border-bottom-left-radius: 3px/*{cornerRadius}*/;
|
|
429
|
+
}
|
|
430
|
+
.ui-corner-all,
|
|
431
|
+
.ui-corner-bottom,
|
|
432
|
+
.ui-corner-right,
|
|
433
|
+
.ui-corner-br {
|
|
434
|
+
border-bottom-right-radius: 3px/*{cornerRadius}*/;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
/* Overlays */
|
|
438
|
+
.ui-widget-overlay {
|
|
439
|
+
background: #aaaaaa/*{bgColorOverlay}*/ /*{bgImgUrlOverlay}*/ /*{bgOverlayXPos}*/ /*{bgOverlayYPos}*/ /*{bgOverlayRepeat}*/;
|
|
440
|
+
opacity: .3/*{opacityOverlay}*/;
|
|
441
|
+
-ms-filter: "alpha(opacity=30)"/*{opacityFilterOverlay}*/; /* support: IE8 */
|
|
442
|
+
}
|
|
443
|
+
.ui-widget-shadow {
|
|
444
|
+
-webkit-box-shadow: 0/*{offsetLeftShadow}*/ 0/*{offsetTopShadow}*/ 5px/*{thicknessShadow}*/ #666666/*{bgColorShadow}*/;
|
|
445
|
+
box-shadow: 0/*{offsetLeftShadow}*/ 0/*{offsetTopShadow}*/ 5px/*{thicknessShadow}*/ #666666/*{bgColorShadow}*/;
|
|
446
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file
|
|
3
|
+
* Visual styles for a nested tree child.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
div.tree-child {
|
|
7
|
+
background: url(../../../../misc/tree.png) no-repeat 11px center; /* LTR */
|
|
8
|
+
}
|
|
9
|
+
div.tree-child-last {
|
|
10
|
+
background: url(../../../../misc/tree-bottom.png) no-repeat 11px center; /* LTR */
|
|
11
|
+
}
|
|
12
|
+
[dir="rtl"] div.tree-child,
|
|
13
|
+
[dir="rtl"] div.tree-child-last {
|
|
14
|
+
background-position: -65px center;
|
|
15
|
+
}
|
|
16
|
+
div.tree-child-horizontal {
|
|
17
|
+
background: url(../../../../misc/tree.png) no-repeat -11px center;
|
|
18
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* jQuery UI Widget 1.13.2
|
|
3
|
+
* http://jqueryui.com
|
|
4
|
+
*
|
|
5
|
+
* Copyright jQuery Foundation and other contributors
|
|
6
|
+
* Released under the MIT license.
|
|
7
|
+
* http://jquery.org/license
|
|
8
|
+
*/
|
|
9
|
+
!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery","./version"],t):t(jQuery)}((function(t){"use strict";var e,i=0,s=Array.prototype.hasOwnProperty,n=Array.prototype.slice;return t.cleanData=(e=t.cleanData,function(i){var s,n,o;for(o=0;null!=(n=i[o]);o++)(s=t._data(n,"events"))&&s.remove&&t(n).triggerHandler("remove");e(i)}),t.widget=function(e,i,s){var n,o,a,r={},l=e.split(".")[0],u=l+"-"+(e=e.split(".")[1]);return s||(s=i,i=t.Widget),Array.isArray(s)&&(s=t.extend.apply(null,[{}].concat(s))),t.expr.pseudos[u.toLowerCase()]=function(e){return!!t.data(e,u)},t[l]=t[l]||{},n=t[l][e],o=t[l][e]=function(t,e){if(!this||!this._createWidget)return new o(t,e);arguments.length&&this._createWidget(t,e)},t.extend(o,n,{version:s.version,_proto:t.extend({},s),_childConstructors:[]}),(a=new i).options=t.widget.extend({},a.options),t.each(s,(function(t,e){r[t]="function"==typeof e?function(){function s(){return i.prototype[t].apply(this,arguments)}function n(e){return i.prototype[t].apply(this,e)}return function(){var t,i=this._super,o=this._superApply;return this._super=s,this._superApply=n,t=e.apply(this,arguments),this._super=i,this._superApply=o,t}}():e})),o.prototype=t.widget.extend(a,{widgetEventPrefix:n&&a.widgetEventPrefix||e},r,{constructor:o,namespace:l,widgetName:e,widgetFullName:u}),n?(t.each(n._childConstructors,(function(e,i){var s=i.prototype;t.widget(s.namespace+"."+s.widgetName,o,i._proto)})),delete n._childConstructors):i._childConstructors.push(o),t.widget.bridge(e,o),o},t.widget.extend=function(e){for(var i,o,a=n.call(arguments,1),r=0,l=a.length;r<l;r++)for(i in a[r])o=a[r][i],s.call(a[r],i)&&void 0!==o&&(t.isPlainObject(o)?e[i]=t.isPlainObject(e[i])?t.widget.extend({},e[i],o):t.widget.extend({},o):e[i]=o);return e},t.widget.bridge=function(e,i){var s=i.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=n.call(arguments,1),l=this;return a?this.length||"instance"!==o?this.each((function(){var i,n=t.data(this,s);return"instance"===o?(l=n,!1):n?"function"!=typeof n[o]||"_"===o.charAt(0)?t.error("no such method '"+o+"' for "+e+" widget instance"):(i=n[o].apply(n,r))!==n&&void 0!==i?(l=i&&i.jquery?l.pushStack(i.get()):i,!1):void 0:t.error("cannot call methods on "+e+" prior to initialization; attempted to call method '"+o+"'")})):l=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each((function(){var e=t.data(this,s);e?(e.option(o||{}),e._init&&e._init()):t.data(this,s,new i(o,this))}))),l}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,(function(t,i){e._removeClass(i,t)})),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;o<s.length-1;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){var i=[],s=this;function n(){var i=[];e.element.each((function(e,n){t.map(s.classesElementLookup,(function(t){return t})).some((function(t){return t.is(n)}))||i.push(n)})),s._on(t(i),{remove:"_untrackClassesElement"})}function o(o,a){var r,l;for(l=0;l<o.length;l++)r=s.classesElementLookup[o[l]]||t(),e.add?(n(),r=t(t.uniqueSort(r.get().concat(e.element.get())))):r=t(r.not(e.element).get()),s.classesElementLookup[o[l]]=r,i.push(o[l]),a&&e.classes[o[l]]&&i.push(e.classes[o[l]])}return(e=t.extend({element:this.element,classes:this.options.classes||{}},e)).keys&&o(e.keys.match(/\S+/g)||[],!0),e.extra&&o(e.extra.match(/\S+/g)||[]),i.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,(function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})),this._off(t(e.target))},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,(function(s,a){function r(){if(e||!0!==o.options.disabled&&!t(this).hasClass("ui-state-disabled"))return("string"==typeof a?o[a]:a).apply(o,arguments)}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var l=s.match(/^([\w:-]*)\s*(.*)$/),u=l[1]+o.eventNamespace,h=l[2];h?n.on(u,h,r):i.on(u,r)}))},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){var i=this;return setTimeout((function(){return("string"==typeof t?i[t]:t).apply(i,arguments)}),e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},(i=t.Event(i)).type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!("function"==typeof a&&!1===a.apply(this.element[0],[i].concat(s))||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},(function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){var a;"string"==typeof n&&(n={effect:n});var r=n?!0===n||"number"==typeof n?i:n.effect||i:e;"number"==typeof(n=n||{})?n={duration:n}:!0===n&&(n={}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue((function(i){t(this)[e](),o&&o.call(s[0]),i()}))}})),t.widget}));
|
|
10
|
+
//# sourceMappingURL=widget-min.js.map
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<title>Title</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
7
|
+
<link rel="stylesheet" href="../src/assets/css/sample.css" type="text/css"/>
|
|
8
|
+
<link rel="stylesheet" href="../dist/css/lt-player-main.css" type="text/css"/>
|
|
9
|
+
</head>
|
|
10
|
+
|
|
11
|
+
<body>
|
|
12
|
+
|
|
13
|
+
<div class="container-text-landscape-player-player" style="max-width: 800px;">
|
|
14
|
+
<div class="lt-player"
|
|
15
|
+
data-lt-player-config='{
|
|
16
|
+
"version": 2,
|
|
17
|
+
"body": {
|
|
18
|
+
"embed": false,
|
|
19
|
+
"playerType": "landscape",
|
|
20
|
+
"externalId": "4514",
|
|
21
|
+
"videoUrl": "https://player.vimeo.com/external/827669987.m3u8?s=4cb5370474d30f1f53332705b78db6fbab14c48a&logging=false",
|
|
22
|
+
"videoTitle": "How Do Ad Blocking Programs Affect Competition?",
|
|
23
|
+
"videoParagraph": "Anton Sobolev",
|
|
24
|
+
"posterImage": "http://lt9.test/sites/default/files/video/covers/Sobolev_Coverphoto.jpg",
|
|
25
|
+
"duration": {
|
|
26
|
+
"min": 0,
|
|
27
|
+
"sec": 0
|
|
28
|
+
},
|
|
29
|
+
"chapters": [{
|
|
30
|
+
"name": "Question",
|
|
31
|
+
"timestamp": 7.222,
|
|
32
|
+
"enabled": true
|
|
33
|
+
}, {
|
|
34
|
+
"name": "Method",
|
|
35
|
+
"timestamp": 136.847,
|
|
36
|
+
"enabled": true
|
|
37
|
+
}, {
|
|
38
|
+
"name": "Findings",
|
|
39
|
+
"timestamp": 249.32,
|
|
40
|
+
"enabled": true
|
|
41
|
+
}, {
|
|
42
|
+
"name": "Relevance",
|
|
43
|
+
"timestamp": 399.642,
|
|
44
|
+
"enabled": true
|
|
45
|
+
}, {
|
|
46
|
+
"name": "Outlook",
|
|
47
|
+
"timestamp": 524.379,
|
|
48
|
+
"enabled": true
|
|
49
|
+
}],
|
|
50
|
+
"canonical_url": "http:\/\/lt9.test\/publication\/how-do-ad-blocking-programs-affect-competition",
|
|
51
|
+
"defaultConfig": {
|
|
52
|
+
"captions": {
|
|
53
|
+
"language": "en",
|
|
54
|
+
"update": true,
|
|
55
|
+
"label": "English",
|
|
56
|
+
"url": "../examples/samples/vtt/Sobolev-Anton-Subtitles-20230518_0.vtt",
|
|
57
|
+
"srclang": "en",
|
|
58
|
+
"active": true
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}'>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
|
|
66
|
+
<script type="text/javascript" src="../dist/js/lt-player-main.js"></script>
|
|
67
|
+
|
|
68
|
+
<script>
|
|
69
|
+
window.addEventListener("load", () => {
|
|
70
|
+
// const ltPlayerDiv = document.querySelector('.lt-player-shorts')
|
|
71
|
+
// Player.initBySelector(ltPlayerDiv);
|
|
72
|
+
});
|
|
73
|
+
</script>
|
|
74
|
+
|
|
75
|
+
</body>
|
|
76
|
+
</html>
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<title>Title</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
7
|
+
<link rel="stylesheet" href="../src/assets/css/sample.css" type="text/css"/>
|
|
8
|
+
<link rel="stylesheet" href="../dist/css/lt-player-main.css" type="text/css"/>
|
|
9
|
+
</head>
|
|
10
|
+
|
|
11
|
+
<body>
|
|
12
|
+
|
|
13
|
+
<div class="container-text-portrait-player">
|
|
14
|
+
<div class="lt-player lt-player-shorts lt-plyr-wrapper-main lt-plyr-wrapper lt-video-player lt-player-type-main player-wrapper player-wrapper-main"
|
|
15
|
+
data-lt-player-config='{
|
|
16
|
+
"version": 2,
|
|
17
|
+
"body": {
|
|
18
|
+
"pinText" : true,
|
|
19
|
+
"pinSeekBar" : false,
|
|
20
|
+
"pinControls" : false,
|
|
21
|
+
"embed": false,
|
|
22
|
+
"playerType": "portrait",
|
|
23
|
+
"chapters": [
|
|
24
|
+
{
|
|
25
|
+
"name": "Capitol 1",
|
|
26
|
+
"timestamp": "10"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "Capitol 2",
|
|
30
|
+
"timestamp": "15"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "Capitol 3",
|
|
34
|
+
"timestamp": "17"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"defaultConfig": {
|
|
38
|
+
"captions": {
|
|
39
|
+
"active": true,
|
|
40
|
+
"language": "en",
|
|
41
|
+
"update": true,
|
|
42
|
+
"label": "asdfasdfasdf",
|
|
43
|
+
"url": "../examples/samples/vtt/Pahl-Kerstin-Maria-MAIN-20230320.vtt",
|
|
44
|
+
"srclang": "en"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"captionsEnabled": true,
|
|
48
|
+
"videoTitle": "Maja Adena",
|
|
49
|
+
"posterImage": "https://web.lt.dev.welink.sh/sites/default/files/2023-09/Video%201.00_00_00_00.Standbild001.jpg",
|
|
50
|
+
"videoParagraph": "What Are Some Unintended Consequences of Pension Reform?",
|
|
51
|
+
"videoUrl": "https://player.vimeo.com/external/837554695.m3u8?s=0c690ee7961cdfabf925774a536d2376e155d7fe",
|
|
52
|
+
"tracks": "https://web.lt.dev.welink.sh/sites/default/files/video-short/subtitles/Pahl-Kerstin-Maria-MAIN-20230320.vtt",
|
|
53
|
+
"fullscreenDisabled": true,
|
|
54
|
+
"share": [],
|
|
55
|
+
"additionalInfo": {
|
|
56
|
+
"bio": {
|
|
57
|
+
"title": "Bio",
|
|
58
|
+
"description": "Maja Adena is a Postdoctoral Researcher in economics. She received her PhD from the Free University Berlin, where she worked as a research fellow until 2012. Ever since, Adena worked with the Social Science Research Centre Berlin (WZB), where she acts not only as a researcher, but also as a member of the academic council. \n\nAdena’s research interests reach from applied microeconomics to political economy and behavioural economics with a more specific interest in the economy of non-profit and charitable organisations."
|
|
59
|
+
},
|
|
60
|
+
"institution": {
|
|
61
|
+
"title": "Institution",
|
|
62
|
+
"institutionName": "Florida State University",
|
|
63
|
+
"image": "https://web.lt.dev.welink.sh/sites/default/files/institution/florida-state-university_cover.jpg",
|
|
64
|
+
"description": "Florida State University preserves, expands, and disseminates knowledge in the sciences, technology, arts, humanities, and professions, while embracing a philosophy of learning strongly rooted in the traditions of the liberal arts. The university is dedicated to excellence in teaching, research, creative endeavors, and service. The university strives to instill the strength, skill, and character essential for lifelong learning, personal responsibility, and sustained achievement within a community that fosters free inquiry and embraces diversity."
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}' style="margin-bottom: 0; max-width: 470px">
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
|
|
72
|
+
<script type="text/javascript" src="../dist/js/lt-player-main.js"></script>
|
|
73
|
+
|
|
74
|
+
<script>
|
|
75
|
+
window.addEventListener("load", () => {
|
|
76
|
+
|
|
77
|
+
});
|
|
78
|
+
</script>
|
|
79
|
+
|
|
80
|
+
</body>
|
|
81
|
+
</html>
|