mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
10 lines
No EOL
479 B
JavaScript
10 lines
No EOL
479 B
JavaScript
$(document).ready(function () {
|
|
var status_token = localStorage.getItem("status_token");
|
|
var lbry_channel_name_sync = localStorage.getItem("lbry_channel_name_sync");
|
|
|
|
if (status_token || lbry_channel_name_sync){
|
|
var url = "/youtube/status/" + status_token;
|
|
$("#sync-status").show();
|
|
$("#sync-status").html("To see the sync status of channel: " +lbry_channel_name_sync + " " + "Please" + ' <a href=' +"'" + url + "'" + '>Click Here </a>');
|
|
}
|
|
}); |