Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dadigang
Ventoy
Commits
39703cab
Commit
39703cab
authored
Oct 14, 2023
by
longpanda
Browse files
Fix the VentoyPlugson issue that default_file value is wrong for more than 10 theme files. (#2608)
parent
854d17a4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
8 deletions
+13
-8
Plugson/www/buildtime
Plugson/www/buildtime
+1
-1
Plugson/www/helplist
Plugson/www/helplist
+1
-1
Plugson/www/index.html
Plugson/www/index.html
+4
-4
Plugson/www/menulist
Plugson/www/menulist
+1
-1
Plugson/www/plugson_theme.html
Plugson/www/plugson_theme.html
+6
-1
No files found.
Plugson/www/buildtime
View file @
39703cab
20231003 23:36:44
\ No newline at end of file
20231014 18:52:12
\ No newline at end of file
Plugson/www/helplist
View file @
39703cab
ar_ARbn_BNcs_CZde_DEel_GRen_USes_ESfr_FRhi_HIhr_HRhu_HUid_IDja_JPka_GEko_KRpl_PLpt_BRpt_PTru_RUsr_RSta_INtr_TRuk_UAzh_CNzh_TW
\ No newline at end of file
ar_ARbn_BNcs_CZde_DEel_GRen_USes_ESfr_FRhi_HIhr_HRhu_HUid_IDit_ITja_JPka_GEko_KRpl_PLpt_BRpt_PTru_RUsr_RSta_INtr_TRuk_UAzh_CNzh_TW
\ No newline at end of file
Plugson/www/index.html
View file @
39703cab
...
...
@@ -757,7 +757,7 @@
<footer
class=
"main-footer"
>
<div
class=
"pull-right hidden-xs"
>
<b
id=
"plugson_build_date"
>
202310
03 23:36:44
</b>
<b
id=
"plugson_build_date"
>
202310
14 18:52:12
</b>
</div>
<strong><a
href=
"https://www.ventoy.net"
target=
"_blank"
>
https://www.ventoy.net
</a></strong>
</footer>
...
...
@@ -777,10 +777,10 @@
<script
src=
"/static/js/jQuery-2.1.4.min.js"
></script>
<!-- jquery validate -->
<script
src=
"/static/js/jquery.validate.min.js"
></script>
<script
src=
"/static/js/jquery.validate.vtoymethods.js?v=1
8
9"
></script>
<script
src=
"/static/js/jquery.validate.vtoymethods.js?v=19
2
"
></script>
<script
src=
"/static/js/jquery.vtoy.alert.js?v=1
8
9"
></script>
<script
src=
"/static/js/vtoy.js?v=1
8
9"
></script>
<script
src=
"/static/js/jquery.vtoy.alert.js?v=19
2
"
></script>
<script
src=
"/static/js/vtoy.js?v=19
2
"
></script>
<script
src=
"/static/js/md5.min.js"
></script>
<!-- Bootstrap 3.3.5 -->
...
...
Plugson/www/menulist
View file @
39703cab
ar_ARbn_BNcs_CZde_DEel_GRen_USes_ESfr_FRhi_HIhr_HRhu_HUid_IDja_JPka_GEko_KRpl_PLpt_BRpt_PTru_RUsl_sisr_RSta_INtr_TRuk_UAzh_CNzh_TW
\ No newline at end of file
ar_ARbn_BNcs_CZde_DEel_GRen_USes_ESfr_FRhi_HIhr_HRhu_HUid_IDit_ITja_JPka_GEko_KRpl_PLpt_BRpt_PTru_RUsl_sisr_RSta_INtr_TRuk_UAzh_CNzh_TW
\ No newline at end of file
Plugson/www/plugson_theme.html
View file @
39703cab
...
...
@@ -357,7 +357,12 @@
var
id
=
$
(
this
).
attr
(
'
id
'
);
if
(
typeof
(
id
)
!=
'
undefined
'
&&
id
.
startsWith
(
'
id_theme_file
'
))
{
$
(
this
).
change
(
function
()
{
m_data_theme
[
current_tab_index
].
default_file
=
parseInt
(
id
.
substr
(
id
.
length
-
1
));
var
prelen
=
'
id_theme_file_radio
'
.
length
;
m_data_theme
[
current_tab_index
].
default_file
=
parseInt
(
id
.
substr
(
id
.
length
-
1
));
if
(
id
.
substr
(
0
,
prelen
)
===
'
id_theme_file_radio
'
)
{
m_data_theme
[
current_tab_index
].
default_file
=
parseInt
(
id
.
substr
(
prelen
));
}
VtoySaveCurrentPage
();
});
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment