Changeset 445
- Timestamp:
- 05/27/08 03:10:21 (3 months ago)
- Location:
- veekun/trunk
- Files:
-
- 2 modified
-
lib/Vee/Controller/Dex/Search.pm (modified) (1 diff)
-
root/script/dexsuggest.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
veekun/trunk/lib/Vee/Controller/Dex/Search.pm
r441 r445 54 54 type_mode => { type => 'radio', options => [[ ignore => 'Ignore types' ], [ any => 'Find Pokémon with any type that matches one selected' ], [ all => 'Find Pokémon with exactly the selected type combination' ]], default => 'ignore', title => 'Select how types must be matched' }, 55 55 type => { type => 'checkbox', options => [ @TypeNames ], title => 'Select types for the Pokemon to match' }, 56 move => { type => 'text', count => 4, class => 'js-dexsuggest js-dexsuggest-move s', title => 'Enter moves the Pokemon must have' },56 move => { type => 'text', count => 4, class => 'js-dexsuggest js-dexsuggest-move', title => 'Enter moves the Pokemon must have' }, 57 57 move_method => { type => 'checkbox', options => { level => 'Level up', machine => 'TM or HM', egg => 'Egg', tutor => 'Move Tutor' }, title => 'Select ways the Pokemon may learn the move' }, 58 58 move_version=> { type => 'checkbox', options => [ map { [ $_ => $Icons{$_} ] } qw/rb y gs c rusa frlg e dp/ ], title => 'Select ways the Pokemon may learn the move' }, -
veekun/trunk/root/script/dexsuggest.js
r354 r445 37 37 if ($(dexsuggest_host_el).is(".js-dexsuggest-pokemon")) 38 38 type = "pokemon"; 39 else if ($(dexsuggest_host_el).is(".js-dexsuggest-move s"))40 type = "move s";39 else if ($(dexsuggest_host_el).is(".js-dexsuggest-move")) 40 type = "move"; 41 41 42 42 if (type)
