I'm using the satellizer plugin for authentication to Facebook. The problem I'm having is the popup that the facebook login is using has the title bar and everything. I need to remove the title/menu bar, etc. It should be a modal window. I can't figure out how to configure that using the facebook login.
I'm using the default setup:
$authProvider.facebook({ clientId: '<ID>' });
Can I specify a setting here? What would that be?
Thanks.
Try adding this to your popupOptions:
so it should look like this:
However - it's probably a good idea to do this outside satellizer module. Otherwise it will be wiped out on module update.
I hope that helps.