Sha256: 8fe7ff9db5de38430d3b6dc0f570c34309296230f746e395b2837c7132b1097a
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
<!DOCTYPE html> <html> <head> <script> /* The data is accessible in two ways: 1. Using the postMessage api, this window will respond to a 'message' event with a post of all the data. (This can be used by browsers other than IE if this window was opened with window.open()) 2. This window has a function called requestCredentials which, when called, will return the data. (This can be used if this window was opened in an inAppBrowser using Cordova / PhoneGap) */ var data = <%= @data.to_json.html_safe %>; window.addEventListener("message", function(ev) { if (ev.data === "requestCredentials") { ev.source.postMessage(data, '*'); window.close(); } }); function requestCredentials() { return data; } setTimeout(function() { window.getElementById('text').innerHTML = 'Redirecting...'; }, 1000); </script> </head> <body> <pre id="text"> </pre> </body> </html>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
devise_token_auth-0.1.34 | app/views/devise_token_auth/omniauth_external_window.html.erb |
devise_token_auth-0.1.33 | app/views/devise_token_auth/omniauth_external_window.html.erb |