source: branches/version-2_13-dev/html/install/templates/install_frame.tpl @ 23416

Revision 23416, 3.3 KB checked in by pineray, 10 years ago (diff)

#2359 jQuery のバージョンアップ(PC)

r23410 r23411 r23413 を dev に再実装。
ついでに jQuery のバージョンを最新版に変更。
管理画面のブロック配置が動作するように修正。

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 *}-->
22<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
23<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
24<head>
25<meta http-equiv="Content-Type" content="text/html; charset=<!--{$smarty.const.CHAR_CODE}-->" />
26<meta http-equiv="content-script-type" content="text/javascript" />
27<meta http-equiv="content-style-type" content="text/css" />
28<link rel="stylesheet" href="css/admin_contents.css" type="text/css" media="all" />
29<link rel="stylesheet" href="../js/jquery.colorbox/colorbox.css" type="text/css" media="all" />
30<!--[if lt IE 9]>
31<script src="../js/jquery-1.11.1.min.js"></script>
32<![endif]-->
33<!--[if gte IE 9]><!-->
34<script src="../js/jquery-2.1.1.min.js"></script>
35<!--<![endif]-->
36<script type="text/javascript" src="../js/eccube.js"></script>
37<script type="text/javascript" src="../js/jquery.colorbox/jquery.colorbox-min.js"></script>
38
39<style type="text/css">
40#loading{
41  width: 100%;
42  height: 100%;
43  background-color:#FFFFFF;
44  filter:alpha(opacity=85);
45  -moz-opacity:0.85;
46  -khtml-opacity: 0.85;
47  opacity:0.85;
48  position: fixed;
49  _position: absolute; /* forIE6 */
50  display: none;
51  top: 0;
52  left: 0;
53  z-index: 10000;
54}
55#loading img {
56  width: 48px;
57  height: 48px;
58  position: absolute;
59  top: 50%;
60  left: 50%;
61  margin-top: -24px;
62  margin-left: -24px;
63}
64</style>
65<!--{if $tpl_mainpage != 'complete.tpl'}-->
66<script type="text/javascript">//<![CDATA[
67$(function(){
68    $('.btn-next').click(function(e) {
69      e.preventDefault();
70      $('form').submit();
71      $('#loading').show();
72    });
73});
74//]]></script>
75<!--{/if}-->
76<title>EC-CUBEインストール</title>
77</head>
78<body>
79<!--{$GLOBAL_ERR}-->
80<noscript>
81  <p>JavaScript を有効にしてご利用下さい。</p>
82</noscript>
83<div id="loading"><img src="../js/jquery.colorbox/loading.gif" width="48" height="48" alt="Loading..." /></div>
84<div id="outside">
85  <div id="out-wrap">
86    <div class="logo">
87      <img src="img/logo_resize.jpg" width="99" height="15" alt="EC-CUBE" />
88    </div>
89    <div id="out-area">
90      <div class="out-top"></div>
91      <!--{include file=$tpl_mainpage}-->
92    </div>
93    <!--{if strlen($install_info_url) != 0}-->
94    <div id="info-area">
95      <iframe src="<!--{$install_info_url}-->" width="562" height="550" frameborder="no" scrolling="no">
96        こちらはEC-CUBEからのお知らせです。この部分は iframe対応ブラウザでご覧下さい。
97      </iframe>
98    </div>
99    <!--{/if}-->
100  </div>
101</div>
102</body>
103</html>
Note: See TracBrowser for help on using the repository browser.