Skip to content

Commit

Permalink
2.57.3 Bugfix for Listeners List default save - thanks [Steve Howe] f…
Browse files Browse the repository at this point in the history
…or the report
  • Loading branch information
classaxe committed Jul 31, 2023
1 parent 40aa99a commit 48c4cbc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions public/js/functions.js
@@ -1,8 +1,8 @@
/*
* Project: RXX - NDB Logging Database
* Homepage: https://rxx.classaxe.com
* Version: 2.56.5
* Date: 2023-02-03
* Version: 2.57.3
* Date: 2023-07-31
* Licence: LGPL
* Copyright: 2023 Martin Francis
*/
Expand Down Expand Up @@ -1376,7 +1376,7 @@ var LISTENERS_FORM = {
setSaveAction: function() {
$('#form_save').click(function(){
if (confirm(msg.cookie.save + "\n" + msg.cookie.usesCookie)) {
var value = shareableLink.listenersUrl(false).split('?')[1];
var value = shareableLink.listenersUrl().split('?')[1];
COOKIE.set('listenersForm', value, '/');
alert(msg.cookie.saved);
}
Expand Down
6 changes: 3 additions & 3 deletions public/js/functions.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/js/listeners.js
Expand Up @@ -192,7 +192,7 @@ var LISTENERS_FORM = {
setSaveAction: function() {
$('#form_save').click(function(){
if (confirm(msg.cookie.save + "\n" + msg.cookie.usesCookie)) {
var value = shareableLink.listenersUrl(false).split('?')[1];
var value = shareableLink.listenersUrl().split('?')[1];
COOKIE.set('listenersForm', value, '/');
alert(msg.cookie.saved);
}
Expand Down

0 comments on commit 48c4cbc

Please sign in to comment.