* Fix bug#15512.

This commit is contained in:
xieqiyu
2021-10-14 09:20:32 +08:00
parent 756576f2e4
commit 02717dbe64
+13
View File
@@ -8,3 +8,16 @@ function showVideo()
{
$('video').removeClass('hidden');
}
$(function()
{
$('#modeclassic').click(function()
{
$('#selectedModeTips').show();
});
$('#modenew').click(function()
{
$('#selectedModeTips').hide();
});
})