/**
* Implements template_preprocess_views_view()
* @param array $vars
*/
function MYTHEME_preprocess_views_view(&$variables) {
if ($variables['id'] == 'MY_VIEW_ID') {
$variables['more']['#options']['attributes']['class'] = array(
'button'
);
}
}
Thanks: http://drupal.stackexchange.com/a/203366