Remove unneccesary `initUserAuthLinkAccountView` from "link account" page (#29217)
Signed-off-by: Yarden Shoham <git@yardenshoham.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
parent
1d275c1748
commit
3da2c63354
|
@ -1,4 +1,3 @@
|
||||||
import $ from 'jquery';
|
|
||||||
import {checkAppUrl} from './common-global.js';
|
import {checkAppUrl} from './common-global.js';
|
||||||
|
|
||||||
export function initUserAuthOauth2() {
|
export function initUserAuthOauth2() {
|
||||||
|
@ -21,30 +20,3 @@ export function initUserAuthOauth2() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function initUserAuthLinkAccountView() {
|
|
||||||
const $lnkUserPage = $('.page-content.user.link-account');
|
|
||||||
if ($lnkUserPage.length === 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
const $signinTab = $lnkUserPage.find('.item[data-tab="auth-link-signin-tab"]');
|
|
||||||
const $signUpTab = $lnkUserPage.find('.item[data-tab="auth-link-signup-tab"]');
|
|
||||||
const $signInView = $lnkUserPage.find('.tab[data-tab="auth-link-signin-tab"]');
|
|
||||||
const $signUpView = $lnkUserPage.find('.tab[data-tab="auth-link-signup-tab"]');
|
|
||||||
|
|
||||||
$signUpTab.on('click', () => {
|
|
||||||
$signinTab.removeClass('active');
|
|
||||||
$signInView.removeClass('active');
|
|
||||||
$signUpTab.addClass('active');
|
|
||||||
$signUpView.addClass('active');
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
|
|
||||||
$signinTab.on('click', () => {
|
|
||||||
$signUpTab.removeClass('active');
|
|
||||||
$signUpView.removeClass('active');
|
|
||||||
$signinTab.addClass('active');
|
|
||||||
$signInView.addClass('active');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ import {initFindFileInRepo} from './features/repo-findfile.js';
|
||||||
import {initCommentContent, initMarkupContent} from './markup/content.js';
|
import {initCommentContent, initMarkupContent} from './markup/content.js';
|
||||||
import {initPdfViewer} from './render/pdf.js';
|
import {initPdfViewer} from './render/pdf.js';
|
||||||
|
|
||||||
import {initUserAuthLinkAccountView, initUserAuthOauth2} from './features/user-auth.js';
|
import {initUserAuthOauth2} from './features/user-auth.js';
|
||||||
import {
|
import {
|
||||||
initRepoIssueDue,
|
initRepoIssueDue,
|
||||||
initRepoIssueReferenceRepositorySearch,
|
initRepoIssueReferenceRepositorySearch,
|
||||||
|
@ -178,7 +178,6 @@ onDomReady(() => {
|
||||||
initCommitStatuses();
|
initCommitStatuses();
|
||||||
initCaptcha();
|
initCaptcha();
|
||||||
|
|
||||||
initUserAuthLinkAccountView();
|
|
||||||
initUserAuthOauth2();
|
initUserAuthOauth2();
|
||||||
initUserAuthWebAuthn();
|
initUserAuthWebAuthn();
|
||||||
initUserAuthWebAuthnRegister();
|
initUserAuthWebAuthnRegister();
|
||||||
|
|
Loading…
Reference in New Issue