🚚 Move project

Move project to new repository.
This commit is contained in:
Ricardo Hernández Medina 2021-11-08 02:45:15 +01:00
parent 034eda9386
commit eed8ec9ef2
3 changed files with 6 additions and 5 deletions

View File

@ -142,8 +142,8 @@
<footer>
<p>
© of <a href="http://twitter.com/richi3f">richi3f</a>, <time datetime="2019">2019</time><br>
Pokémon is © of Nintendo, <time datetime="1995">1995</time>-<time datetime="2019">2019</time>
© of <a href="http://twitter.com/richi3f">richi3f</a>, <time datetime="2021">2021</time><br>
Pokémon is © of Nintendo, <time datetime="1995">1995</time>-<time datetime="2021">2021</time>
</p>
</footer>

1
static/pokemon.json Normal file

File diff suppressed because one or more lines are too long

View File

@ -113,7 +113,7 @@ $( document ).ready( function() {
var i, len;
// read Pokémon names and experience curves
$.getJSON( 'https://richi3f.github.io/plan-pokemonteams/static/pokemon.json', function( pokemonData ) {
$.getJSON( 'https://richi3f.github.io/candy-calc/static/pokemon.json', function( pokemonData ) {
var slug, slugs;
// add each Pokémon to the datalist
@ -157,8 +157,8 @@ $( document ).ready( function() {
// create rows for candy in bag
( () => {
var slug, target, template, $template;
$template = $('#calc template');
target = $template.attr('data-target');
$template = $( '#calc template' );
target = $template.attr( 'data-target' );
template = $template.html().trim();
len = CANDY_SIZES.length;
for ( i = 0; i < len; i++ ) {