-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.ipad.html
106 lines (94 loc) · 4.23 KB
/
index.ipad.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!--
## This file is part of Invenio.
## Copyright (C) 2012, 2013 CERN.
##
## Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## Invenio is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable = no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<title>Invenio Mobile</title>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.3.0.min.css" />
<link rel="stylesheet" type="text/css" href="css/invenio-mobile.css"/>
<link rel="stylesheet" type="text/css" href="css/invenio-mobile.ipad.css"/>
<link rel="stylesheet" type="text/css" href="css/photoswipe.css"/>
<!-- JS - External libraries -->
<script src="js_external/cordova.ios.js"></script>
<script src="js_external/jquery-1.9.1.min.js"></script>
<script src="js_external/jquery.mobile-1.3.0.min.js"></script>
<script src="js_external/jquery-ui-1.8.20.custom.min.js"></script>
<script src="js_external/klass.min.js"></script>
<script src="js_external/code.photoswipe.jquery-3.0.5.min.js"></script>
<script src="js_external/fileopener.js"></script>
<!-- JS -->
<script src="js/invenio-mobile.config.js"></script>
<script src="js/invenio-mobile.settings.js"></script>
<script src="js/invenio-mobile.js"></script>
<script src="js/invenio-mobile.initialization.js"></script>
<script src="js/invenio-mobile.debug.js"></script>
<script>
var preventBack = false;
var config ="";
$(document).on("pageinit", function(event,ui){
$(ui.prevPage).remove();
config=globalInit();
if(!hashParam("page"))
$(".search-zone").hide();
$(document).trigger("hashchange");
});
</script>
</head>
<body>
<div id="side-left">
<div id="header-left" class="ipad-header">
<div id="header-left-content"> </div>
<div class="search-zone">
<div class="jqm-search" data-ajax="false" >
<ul class="jqm-list autocomplete" data-ajax="false" ></ul>
</div>
</div>
</div>
<div data-role="content" class="content-left" >
<div id="content-left-UI" class="without-margin"></div>
</div>
</div>
<div id="side-right">
<div id="header-right" class="ipad-header">
<div class="top_icons_left" style="display:inline-block; width:15%; margin-top:10px"> </div>
<div id="header-right-center" style="display:inline-block; width:70%"> </div>
<div class="top_icons_right" style="display:inline-block; margin-top:10px "> </div>
</div>
<div data-role="content" class="content-right">
<div id="content-right-UI" class="without-margin"></div>
</div>
</div>
<div id="splashscreen"></div>
<script>
fastClick("html", "#back2", null, function(event){
$("#back2").addClass("back2Shadow");
setTimeout(function(){$("#back2").removeClass("back2Shadow"); },500);
sessionStorage.history = parseInt(sessionStorage.history)-2; history.back(-1)
});
$("#side-left").css( "height", $.mobile.getScreenHeight() );
$("#content-left-UI").css( "height", $.mobile.getScreenHeight()-83 );
$("#content-right-UI").css( "max-height", $.mobile.getScreenHeight()-115);
</script>
</body>
</html>