forked from smogon/pokemon-showdown-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pokedex.php
55 lines (49 loc) · 1.57 KB
/
pokedex.php
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Showdown!</title>
<link rel="shortcut icon" href="/favicon.ico" id="dynamic-favicon" />
<link rel="stylesheet" href="/style/utilichart.css" />
<link rel="stylesheet" href="/style/sim-types.css" />
<link rel="stylesheet" href="/style/battle.css" />
<link rel="stylesheet" href="/style/replay.css" />
<script src="/js/lib/jquery-2.1.4.min.js"></script>
<script src="/js/lib/autoresize.jquery.min.js"></script>
<script src="/js/lib/jquery-cookie.js"></script>
<script src="/js/lib/jquery.json-2.3.min.js"></script>
<script src="/data/pokedex-mini.js"></script>
<script>var exports=this</script>
<script src="/data/pokedex.js"></script>
<script src="/data/moves.js"></script>
<script src="/data/items.js"></script>
<script src="/data/abilities.js"></script>
<script src="/data/formats.js"></script>
<script src="/js/battledata.js"></script>
<script src="/js/utilichart.js"></script>
<style>
body { text-align: left; }
</style>
</head>
<body>
<div style="padding:20px"><input id="searchTerm" type="text" onkeyup="update()" size="50" autofocus /></div>
<div id="results">
</div>
<script>
var timeout = null;
var prevSearch = 'init';
function update()
{
if (timeout) clearTimeout(timeout);
timeout = setTimeout(function() {
var search = $('#searchTerm').val();
if (search === prevSearch) return;
prevSearch = search;
$('#results').html(Chart.chart(search, 'pokemon'));
timeout = null;
}, 200);
}
update();
</script>
</body>
</html>