-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
119 lines (107 loc) · 3.24 KB
/
index.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
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<title>DeckDiff</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/font-awesome.min.css">
<meta charset="utf-8">
<meta property="og:title" content="deckDiff">
<meta property="og:description" content="A small webapp for comparing MTG decks">
<meta property="og:image" content="https://fullmeter.com/deckdiff/img/deckdiffpromo.png">
<meta property="og:url" content="https://fullmeter.com/deckdiff/">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-42633839-1', 'fullmeter.com');
ga('send', 'pageview');
</script>
<script src="./js/index.js"></script>
</head>
<body>
<header>
<span class="link-list">
<a href='https://fullmeter.com'><i class="fa fa-home fa-2x" aria-hidden="true"></i></a>
<a href='https://twitter.com/D4RK_ONION'><i class="fa fa-twitter fa-2x" aria-hidden="true"></i></a>
<a href='https://github.com/D4RKONION/deckdiff'><i class="fa fa-github fa-2x" aria-hidden="true"></i></a>
<p>Ver 0.0.2</p>
</span>
<h1>deck<span class="highlight">Diff</span></h1>
</header>
<div id="appspace">
<div id="deckOneFlex">
<h1 class="flexHeader">Old Deck</h1>
<div class="tappedOutArea">
<input id="tappedOutInputOne" placeholder="tappedout.net deck URL">
<button onclick="tappedOutFetcher(tappedOutInputOne.value, 'deckOne')">Get!</button>
</div>
<textarea id="deckOneTextArea">4 Aether Hub
2 Aethersphere Harvester
4 Blooming Marsh
2 Blossoming Defense
3 Fatal Push
4 Forest
3 Foul Orchard
4 Glint-Sleeve Siphoner
2 Hashep Oasis
2 Ifnir Deadlands
3 Jadelight Ranger
4 Merfolk Branchwalker
3 Ravenous Chupacabra
2 Rishkar, Peema Renegade
5 Swamp
3 Verdurous Gearhulk
2 Vraska's Contempt
4 Walking Ballista
4 Winding Constrictor
2 Deathgorge Scavenger
4 Duress
1 Fatal Push
2 Golden Demise
2 Lifecrafter's Bestiary
1 Naturalize
1 Vraska's Contempt
2 Vraska, Relic Seeker</textarea>
</div>
<div id="diffFlex">
<h1 class="flexHeader"><i class="fa fa-long-arrow-right fa-2x"></i></h1>
<div id="differenceSpace">The difference</div>
</div>
<div id="deckTwoFlex">
<h1 class="flexHeader">New Deck</h1>
<div class="tappedOutArea">
<input id="tappedOutInputTwo" placeholder="tappedout.net deck URL">
<button onclick="tappedOutFetcher(tappedOutInputTwo.value, 'deckTwo')">Get!</button>
</div>
<textarea id="deckTwoTextArea">4 Aether Hub
4 Blooming Marsh
3 Blossoming Defense
4 Botanical Sanctum
4 Bristling Hydra
2 Fatal Push
3 Fetid Pools
3 Forest
2 Foul Orchard
4 Glint-Sleeve Siphoner
3 Hadana's Climb
2 Hashep Oasis
1 Ifnir Deadlands
4 Jadelight Ranger
4 Servant of the Conduit
1 Swamp
2 Verdurous Gearhulk
2 Vraska's Contempt
4 Walking Ballista
4 Winding Constrictor
2 Cartouche of Ambition
3 Duress
2 Fatal Push
3 Negate
3 Thrashing Brontodon
2 Vraska's Contempt</textarea>
</div>
</div>
</body>
</html>