Add better support for hashed pet names
This commit is contained in:
parent
04ffc30e92
commit
e80a49a086
2 changed files with 8 additions and 1 deletions
|
@ -66,6 +66,10 @@ var DEBUG = document.location.search.substr(0, 6) == "?debug";
|
||||||
}
|
}
|
||||||
|
|
||||||
function petThumbnailUrl(pet_name) {
|
function petThumbnailUrl(pet_name) {
|
||||||
|
if (pet_name[0] == "@") {
|
||||||
|
// if first character is "@", use the hash url
|
||||||
|
return "https://pets.neopets.com/cp/" + pet_name.substr(1) + "/1/1.png";
|
||||||
|
}
|
||||||
return "https://pets.neopets.com/cpn/" + pet_name + "/1/1.png";
|
return "https://pets.neopets.com/cpn/" + pet_name + "/1/1.png";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -68,6 +68,9 @@
|
||||||
|
|
||||||
%script#bulk-pets-submission-template{:type => 'text/x-jquery/tmpl'}
|
%script#bulk-pets-submission-template{:type => 'text/x-jquery/tmpl'}
|
||||||
%li.waiting
|
%li.waiting
|
||||||
|
- if pet_name.starts_with?('@')
|
||||||
|
%img{:src => 'https://pets.neopets.com/cp/${pet_name[1..-1]}/1/1.png'}
|
||||||
|
- else
|
||||||
%img{:src => 'https://pets.neopets.com/cpn/${pet_name}/1/1.png'}
|
%img{:src => 'https://pets.neopets.com/cpn/${pet_name}/1/1.png'}
|
||||||
%span.name ${pet_name}
|
%span.name ${pet_name}
|
||||||
%span.waiting-message= t '.bulk_pets.waiting'
|
%span.waiting-message= t '.bulk_pets.waiting'
|
||||||
|
|
Loading…
Reference in a new issue