FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
themes
/
fotawp
/
assets
/
js
Edit File: admin-scripts.js
/* global ajaxurl */ (function ($) { "use strict"; $("#fotawp-dismiss-notice").on("click", ".notice-dismiss", function () { $.ajax({ url: fotawp_admin_localize.ajax_url, method: "POST", data: { action: "fotawp_dismissble_notice", nonce: fotawp_admin_localize.nonce, }, success: function (response) { if (response.success) { console.log("Notice dismissed successfully."); $("#fotawp-dismiss-notice").fadeOut(); // Hide the notice } else { console.log("Failed to dismiss notice:", response.data.message); } }, error: function (jqXHR, textStatus, errorThrown) { console.log("Error:", textStatus, errorThrown); }, }); }); $("#fotawp-dashboard-tabs-nav li:first-child").addClass("active"); $(".tab-content").hide(); $(".tab-content:first").show(); $("#fotawp-dashboard-tabs-nav li").click(function () { $("#fotawp-dashboard-tabs-nav li").removeClass("active"); $(this).addClass("active"); $(".tab-content").hide(); var activeTab = $(this).find("a").attr("href"); $(activeTab).fadeIn(); return false; }); })(jQuery);
Save
Back