You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
552 B
JavaScript
25 lines
552 B
JavaScript
'use strict';
|
|
|
|
define('forum/account/uploads', ['forum/account/header'], function (header) {
|
|
const AccountUploads = {};
|
|
|
|
AccountUploads.init = function () {
|
|
header.init();
|
|
|
|
$('[data-action="delete"]').on('click', function () {
|
|
const el = $(this).parents('[data-name]');
|
|
const name = el.attr('data-name');
|
|
|
|
socket.emit('user.deleteUpload', { name: name, uid: ajaxify.data.uid }, function (err) {
|
|
if (err) {
|
|
return app.alertError(err.message);
|
|
}
|
|
el.remove();
|
|
});
|
|
return false;
|
|
});
|
|
};
|
|
|
|
return AccountUploads;
|
|
});
|