Index: /veekun/trunk/root/script/dexsuggest.js
===================================================================
--- /veekun/trunk/root/script/dexsuggest.js (revision 354)
+++ /veekun/trunk/root/script/dexsuggest.js (revision 445)
@@ -37,6 +37,6 @@
     if ($(dexsuggest_host_el).is(".js-dexsuggest-pokemon"))
         type = "pokemon";
-    else if ($(dexsuggest_host_el).is(".js-dexsuggest-moves"))
-        type = "moves";
+    else if ($(dexsuggest_host_el).is(".js-dexsuggest-move"))
+        type = "move";
 
     if (type)
Index: /veekun/trunk/lib/Vee/Controller/Dex/Search.pm
===================================================================
--- /veekun/trunk/lib/Vee/Controller/Dex/Search.pm (revision 441)
+++ /veekun/trunk/lib/Vee/Controller/Dex/Search.pm (revision 445)
@@ -54,5 +54,5 @@
     type_mode   => { type => 'radio', options => [[ ignore => 'Ignore types' ], [ any => 'Find Pok&eacute;mon with any type that matches one selected' ], [ all => 'Find Pok&eacute;mon with exactly the selected type combination' ]], default => 'ignore', title => 'Select how types must be matched' },
     type        => { type => 'checkbox', options => [ @TypeNames ], title => 'Select types for the Pokemon to match' },
-    move        => { type => 'text', count => 4, class => 'js-dexsuggest js-dexsuggest-moves', title => 'Enter moves the Pokemon must have' },
+    move        => { type => 'text', count => 4, class => 'js-dexsuggest js-dexsuggest-move', title => 'Enter moves the Pokemon must have' },
     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' },
     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' },
