forked from glenmurphy/dropmocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (52 loc) · 2.31 KB
/
index.html
File metadata and controls
53 lines (52 loc) · 2.31 KB
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
<html>
<head>
<title>DropMocks</title>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="shortcut icon" href="/s/favicon.png" />
<link rel="stylesheet" type="text/css" href="/s/editor.css" />
<link rel="stylesheet" type="text/css" href="/s/presenter.css" />
<link rel="stylesheet" type="text/css" href="/s/menu.css" />
<link rel="stylesheet" type="text/css" href="/s/introduction.css" />
<script src="/s/functions.js"></script>
<script src="/s/mocklist.js"></script>
<script src="/s/mock.js"></script>
<script src="/s/presenter.js"></script>
<script src="/s/editor.js"></script>
<script src="/s/introduction.js"></script>
<script src="/s/menu.js"></script>
<script src="/s/menumocks.js"></script>
<script>
// GLOBAL ---------------------------------------------------------------------
function load() {
var mocklist = new MockList();
var introduction = new Introduction(mocklist);
var editor = new Editor(mocklist);
var presenter = new Presenter(mocklist, document.body);
var menu = new Menu(mocklist, {{ user }});
}
</script>
<script type="text/javascript">
/*
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18063845-1']);
_gaq.push(['_setDomainName', '.dropmocks.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
*/
</script>
</head>
<body onload="load();" style="width:100%; height:100%; margin:0;">
<div id="intro-bg">
<div id="introduction" class="intro-messagebubble">
<div class="intro-icon"></div>
<div class="p1">DropMocks is the easiest way to create and share beautiful image galleries online.</div>
<div id="instructions" class="p2 compat">Just <span class="highlight">drag your image files onto this page</span>, and we’ll do the rest.</div>
<div id="lowbrowser" class="p2 uncompat">Sorry, our uploader doesn't yet work on your browser (which doesn't support drag and drop file uploads). <a href="http://www.google.com/landing/chrome/beta/">Chrome 6</a> or <a href="http://www.mozilla.com/firefox/beta/">Firefox 4</a> will work best.</div>
</div>
</div>
</body>
</html>