cannot be done with featured slider by cat but you can with featured by post id. open lib/sliders/js-gallery-slider.php and edit
query_posts( array( 'post__in' => explode(',', $featured_post), 'post_type'=> array('post', 'page', 'product', 'portfolio'), 'posts_per_page' => 100, 'ignore_sticky_posts' => 1, 'orderby' => 'date', 'order' => 'DESC' ) );
to
query_posts( array( 'post__in' => explode(',', $featured_post), 'post_type'=> array('post', 'page', 'product', 'portfolio'), 'posts_per_page' => 100, 'ignore_sticky_posts' => 1, 'orderby' => 'post__in', 'order' => '' ) );
Thank you Richie!!! It’s work perfectly. Great Theme!