mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-16 02:36:16 +01:00
closes #557
This commit is contained in:
@@ -1,11 +1,13 @@
|
|||||||
define(['forum/accountheader', 'uploader'], function(header, uploader) {
|
define(['forum/accountheader', 'uploader'], function(header, uploader) {
|
||||||
var AccountEdit = {};
|
var AccountEdit = {},
|
||||||
|
gravatarPicture = '',
|
||||||
|
uploadedPicture = '';
|
||||||
|
|
||||||
AccountEdit.init = function() {
|
AccountEdit.init = function() {
|
||||||
header.init();
|
header.init();
|
||||||
|
|
||||||
var gravatarPicture = templates.get('gravatarpicture');
|
gravatarPicture = templates.get('gravatarpicture');
|
||||||
var uploadedPicture = templates.get('uploadedpicture');
|
uploadedPicture = templates.get('uploadedpicture');
|
||||||
|
|
||||||
var selectedImageType = '';
|
var selectedImageType = '';
|
||||||
|
|
||||||
@@ -194,31 +196,33 @@ define(['forum/accountheader', 'uploader'], function(header, uploader) {
|
|||||||
|
|
||||||
AccountEdit.updateImages = function() {
|
AccountEdit.updateImages = function() {
|
||||||
var currentPicture = $('#user-current-picture').attr('src');
|
var currentPicture = $('#user-current-picture').attr('src');
|
||||||
var gravatarPicture = templates.get('gravatarpicture');
|
|
||||||
var uploadedPicture = templates.get('uploadedpicture');
|
|
||||||
|
|
||||||
if (gravatarPicture) {
|
if (gravatarPicture) {
|
||||||
$('#user-gravatar-picture').attr('src', gravatarPicture);
|
$('#user-gravatar-picture').attr('src', gravatarPicture);
|
||||||
$('#gravatar-box').show();
|
$('#gravatar-box').show();
|
||||||
} else
|
} else {
|
||||||
$('#gravatar-box').hide();
|
$('#gravatar-box').hide();
|
||||||
|
}
|
||||||
|
|
||||||
if (uploadedPicture) {
|
if (uploadedPicture) {
|
||||||
$('#user-uploaded-picture').attr('src', uploadedPicture);
|
$('#user-uploaded-picture').attr('src', uploadedPicture);
|
||||||
$('#uploaded-box').show();
|
$('#uploaded-box').show();
|
||||||
} else
|
} else {
|
||||||
$('#uploaded-box').hide();
|
$('#uploaded-box').hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (currentPicture == gravatarPicture)
|
if (currentPicture == gravatarPicture) {
|
||||||
$('#gravatar-box .fa-check').show();
|
$('#gravatar-box .fa-check').show();
|
||||||
else
|
} else {
|
||||||
$('#gravatar-box .fa-check').hide();
|
$('#gravatar-box .fa-check').hide();
|
||||||
|
}
|
||||||
|
|
||||||
if (currentPicture == uploadedPicture)
|
if (currentPicture == uploadedPicture) {
|
||||||
$('#uploaded-box .fa-check').show();
|
$('#uploaded-box .fa-check').show();
|
||||||
else
|
} else {
|
||||||
$('#uploaded-box .fa-check').hide();
|
$('#uploaded-box .fa-check').hide();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return AccountEdit;
|
return AccountEdit;
|
||||||
|
|||||||
Reference in New Issue
Block a user