mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
It seems iOS doesn't like us to change the location. So now we submit it to the server that geneartes the redirect. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
8 lines
236 B
JavaScript
8 lines
236 B
JavaScript
jQuery(document).ready(function() {
|
|
$('#app-token-login').click(function (e) {
|
|
e.preventDefault();
|
|
$(this).addClass('hidden');
|
|
$('#redirect-link').addClass('hidden');
|
|
$('#app-token-login-field').removeClass('hidden');
|
|
});
|
|
});
|