Merge pull request #8484 from raisedadead/fix/OAuth-Notice
Remove notice in deprecated OAuth Methods
This commit is contained in:
@ -15,17 +15,10 @@ block content
|
|||||||
a.btn.btn-lg.btn-block.btn-social.btn-twitter(href='/auth/twitter')
|
a.btn.btn-lg.btn-block.btn-social.btn-twitter(href='/auth/twitter')
|
||||||
i.fa.fa-twitter
|
i.fa.fa-twitter
|
||||||
| Sign in with Twitter
|
| Sign in with Twitter
|
||||||
br
|
|
||||||
p
|
|
||||||
strong IMPORTANT NOTICE
|
|
||||||
br
|
|
||||||
em These options are under deprecation and will be removed soon.
|
|
||||||
br
|
|
||||||
em After you are signed in, go to the settings page and add GitHub and/or Email as your sign in option
|
|
||||||
|
|
||||||
script.
|
script.
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var method = localStorage.getItem('lastSigninMethod'),
|
var method = localStorage.getItem('lastSigninMethodDeprecated'),
|
||||||
btnSelector = 'a.btn.btn-lg.btn-block.btn-social';
|
btnSelector = 'a.btn.btn-lg.btn-block.btn-social';
|
||||||
if (method) {
|
if (method) {
|
||||||
try {
|
try {
|
||||||
@ -51,6 +44,6 @@ block content
|
|||||||
$(this).removeClass('active');
|
$(this).removeClass('active');
|
||||||
obj.methodClass = $(this).attr('class').split(' ').pop();
|
obj.methodClass = $(this).attr('class').split(' ').pop();
|
||||||
obj.methodLink = $(this).attr('href');
|
obj.methodLink = $(this).attr('href');
|
||||||
localStorage.setItem('lastSigninMethod', JSON.stringify(obj));
|
localStorage.setItem('lastSigninMethodDeprecated', JSON.stringify(obj));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user