Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/5.3-staging' into 5.3-develop
Browse files Browse the repository at this point in the history
  • Loading branch information
hinanaya committed May 27, 2024
2 parents e114f3f + 6840774 commit 73e7f01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.3.3-20240522
5.3.3-20240524
3 changes: 3 additions & 0 deletions js/playlist/addedit.js
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,8 @@ OB.Playlist.voicetrackPreviewStop = function ()
OB.Playlist.save = function()
{

$('.playlist_data_save .add').prop('disabled', true);

var id = $('#playlist_id').val();
var playlist_name = $('#playlist_name_input').val();
var thumbnail = $('#playlist_thumbnail_input').val();
Expand Down Expand Up @@ -660,6 +662,7 @@ OB.Playlist.save = function()
}, function(data) {

$('#playlist_addedit_message').obWidget(data.status ? 'success' : 'error', data.msg);
$('.playlist_data_save .add').prop('disabled', false);

if(data.status == true)
{
Expand Down

0 comments on commit 73e7f01

Please sign in to comment.