mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-07-30 18:18:37 -04:00
bump libraries, update changelog
required minimal changes in checkmark jQuery accessor code, found by unit tests
This commit is contained in:
parent
5b458a17c2
commit
57be10ed53
12 changed files with 229 additions and 74 deletions
|
@ -3649,7 +3649,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
*/
|
||||
function changeBurnAfterReading()
|
||||
{
|
||||
if ($burnAfterReading.is(':checked')) {
|
||||
if (me.getBurnAfterReading()) {
|
||||
$openDiscussionOption.addClass('buttondisabled');
|
||||
$openDiscussion.prop('checked', false);
|
||||
|
||||
|
@ -3669,7 +3669,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
*/
|
||||
function changeOpenDiscussion()
|
||||
{
|
||||
if ($openDiscussion.is(':checked')) {
|
||||
if (me.getOpenDiscussion()) {
|
||||
$burnAfterReadingOption.addClass('buttondisabled');
|
||||
$burnAfterReading.prop('checked', false);
|
||||
|
||||
|
@ -4319,7 +4319,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
*/
|
||||
me.getBurnAfterReading = function()
|
||||
{
|
||||
return $burnAfterReading.is(':checked');
|
||||
return $burnAfterReading.prop('checked');
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -4331,7 +4331,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
*/
|
||||
me.getOpenDiscussion = function()
|
||||
{
|
||||
return $openDiscussion.is(':checked');
|
||||
return $openDiscussion.prop('checked');
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue