mirror of https://github.com/ventoy/Ventoy.git
Fix a bug in menu tip plugin webpage of VentoyPlugson. (#1602)
This commit is contained in:
parent
5f3d7f3823
commit
9baa95359c
|
@ -1 +1 @@
|
|||
20220108 22:41:02
|
||||
20220430 13:06:42
|
|
@ -723,7 +723,7 @@
|
|||
|
||||
<footer class="main-footer">
|
||||
<div class="pull-right hidden-xs">
|
||||
<b id="plugson_build_date">20220311 21:24:51</b>
|
||||
<b id="plugson_build_date">20220430 13:06:42</b>
|
||||
</div>
|
||||
<strong><a href="https://www.ventoy.net" target="_blank">https://www.ventoy.net</a></strong>
|
||||
</footer>
|
||||
|
|
|
@ -195,7 +195,7 @@
|
|||
$('input:text[id=id_tip_text_top]').val(data.top);
|
||||
$('input:text[id=id_tip_text_color]').val(data.color);
|
||||
|
||||
FillTipTable(data);
|
||||
FillTipTable(data.tips);
|
||||
}
|
||||
|
||||
|
||||
|
@ -208,7 +208,7 @@
|
|||
}
|
||||
|
||||
current_tab_index = index;
|
||||
VtoyFillCurrentPageItem(m_data_tip[index].tips);
|
||||
VtoyFillCurrentPageItem(m_data_tip[index]);
|
||||
}
|
||||
|
||||
//Main process
|
||||
|
@ -334,6 +334,7 @@
|
|||
var value = $('input:text[id=id_tip_text_left]').val();
|
||||
if (ventoy_check_percent(value)) {
|
||||
VtoySaveCurrentPage();
|
||||
m_data_tip[current_tab_index].left = value;
|
||||
} else {
|
||||
Message.error(g_vtoy_cur_language.STR_INVALID_PERCENT);
|
||||
$('input:text[id=id_tip_text_left]').val(m_data_tip[current_tab_index].left);
|
||||
|
@ -343,6 +344,7 @@
|
|||
var value = $('input:text[id=id_tip_text_top]').val();
|
||||
if (ventoy_check_percent(value)) {
|
||||
VtoySaveCurrentPage();
|
||||
m_data_tip[current_tab_index].top = value;
|
||||
} else {
|
||||
Message.error(g_vtoy_cur_language.STR_INVALID_PERCENT);
|
||||
$('input:text[id=id_tip_text_top]').val(m_data_tip[current_tab_index].top);
|
||||
|
@ -353,6 +355,7 @@
|
|||
if (value.length > 0) {
|
||||
if (ventoy_check_color(value)) {
|
||||
VtoySaveCurrentPage();
|
||||
m_data_tip[current_tab_index].color = value;
|
||||
} else {
|
||||
Message.error(g_vtoy_cur_language.STR_INVALID_COLOR);
|
||||
$('input:text[id=id_tip_text_color]').val(m_data_tip[current_tab_index].color);
|
||||
|
|
Loading…
Reference in New Issue