fix: password input not resetting bug, add resetPasswordInput() method
This commit is contained in:
parent
4c347ea08e
commit
372fb58d20
@ -3767,6 +3767,18 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear the password input in the top navigation
|
||||||
|
*
|
||||||
|
* @name TopNav.clearPasswordInput
|
||||||
|
* @function
|
||||||
|
*/
|
||||||
|
|
||||||
|
function clearPasswordInput()
|
||||||
|
{
|
||||||
|
$passwordInput.val('');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clear the attachment input in the top navigation.
|
* Clear the attachment input in the top navigation.
|
||||||
@ -4349,6 +4361,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||||||
me.resetInput = function()
|
me.resetInput = function()
|
||||||
{
|
{
|
||||||
clearAttachmentInput();
|
clearAttachmentInput();
|
||||||
|
clearPasswordInput();
|
||||||
$burnAfterReading.prop('checked', burnAfterReadingDefault);
|
$burnAfterReading.prop('checked', burnAfterReadingDefault);
|
||||||
$openDiscussion.prop('checked', openDiscussionDefault);
|
$openDiscussion.prop('checked', openDiscussionDefault);
|
||||||
if (openDiscussionDefault || !burnAfterReadingDefault) $openDiscussionOption.removeClass('buttondisabled');
|
if (openDiscussionDefault || !burnAfterReadingDefault) $openDiscussionOption.removeClass('buttondisabled');
|
||||||
|
Loading…
Reference in New Issue
Block a user