As DMCS said, FB.getLoginStatus and FB.login will do it on the JS side of things. As for hooking it up with devise/omniauth, assuming you're using the latest omniauth where provider-specific logic has been split out into their own gems, the facebook-omniauth Github page explains it as so:
The client-side flow supports parsing the authorization code from the signed request which Facebook puts into a cookie. This means you can to use the Facebook Javascript SDK as you would normally, and you just hit the callback endpoint (/auth/facebook/callback by default) once the user has authenticated in the FB.login success callback.
Now thats nice and easy. After the FB.login, a simple window.location.href = '/auth/facebook/callback' will do the trick!