Skip to content

Commit

Permalink
インストール画面のローディング画像が欠落している #810
Browse files Browse the repository at this point in the history
- JavaScript の追加位置が不適切(IF分岐内)だったのを修正。
  • Loading branch information
seasoftjapan committed Jan 4, 2024
1 parent b29a8cf commit 01d9fe1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions html/install/templates/install_frame.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,15 @@
<!--<![endif]-->
<script type="text/javascript" src="../js/eccube.js"></script>

<!--{if $tpl_mainpage != 'complete.tpl'}-->
<script type="text/javascript">//<![CDATA[
<!--{if $tpl_mainpage != 'complete.tpl'}-->
$(function(){
$('.btn.next').on('click', function(e) {
e.preventDefault();
$('form').submit();
});
});
<!--{/if}-->
$(window).on('load', function() {
$('#loading').hide();
});
Expand All @@ -50,7 +51,6 @@ $(window).on('beforeunload',function(){
$('#loading').show();
});
//]]></script>
<!--{/if}-->
<title>EC-CUBEインストール</title>
</head>
<!--{strip}-->
Expand Down

0 comments on commit 01d9fe1

Please sign in to comment.