forked from anastarawneh/Pokemon-Showdown-Dex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testclient.html
63 lines (55 loc) · 2.83 KB
/
testclient.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
<!DOCTYPE html>
<html><head>
<meta charset="utf-8" />
<title>Pokédex - Pokémon Showdown</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=IE8" />
<link rel="stylesheet" href="https://play.pokemonshowdown.com/style/font-awesome.css" />
<link rel="stylesheet" href="theme/panels.css?b1" />
<link rel="stylesheet" href="theme/main.css?b1" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://play.pokemonshowdown.com/style/utilichart.css?b359" />
<link rel="stylesheet" href="theme/pokedex.css?b359" />
<!-- Workarounds for IE bugs to display trees correctly. -->
<!--[if lte IE 6]><style> li.tree { height: 1px; } </style><![endif]-->
<!--[if IE 7]><style> li.tree { zoom: 1; } </style><![endif]-->
</head><body>
<div class="pfx-topbar">
<div class="header">
<ul class="nav">
<li><a class="button nav-first"><img src="images/pokemonshowdownbeta.png" alt="Pokémon Showdown! (beta)" /> PSdex testclient</a></li>
<li><a class="button nav-last" href="https://github.com/Zarel/Pokemon-Showdown-Dex">GitHub</a></li>
</ul>
<div style="clear:both"></div>
</div>
</div>
<div class="pfx-panel"><div class="pfx-body">
<noscript><p>
<strong>Requires JavaScript!</strong>
</p></noscript>
<p>
Loading...
</p>
</div></div>
<script src="js/lib/jquery-1.12.4.min.js"></script>
<script src="js/lib/lodash.min.js"></script>
<script src="js/lib/backbone-min.js"></script>
<script src="js/panels.js"></script>
<script src="https://play.pokemonshowdown.com/config/config.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/js/battledata.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/data/search-index.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/data/pokedex.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/data/teambuilder-tables.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/data/learnsets.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/data/moves.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/data/abilities.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/data/items.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/data/typechart.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/data/aliases.js?v0.9xy31"></script>
<script src="https://play.pokemonshowdown.com/js/battle-dex-search.js?b359"></script>
<script src="https://play.pokemonshowdown.com/js/search.js?b359"></script>
<script src="js/pokedex.js?b359"></script>
<script src="js/pokedex-pokemon.js?b359"></script>
<script src="js/pokedex-moves.js?b359"></script>
<script src="js/pokedex-search.js?b359"></script>
<script src="js/router.js?b359"></script>
</body></html>