var sitemap = { getSitemap: () => { $.ajax({ url: "/Sitemap/GetSitemap", data: { url: location.pathname}, error: function (result) { var modalText = "Hiba történt, próbálja meg később!"; var buttonText = "Tovább"; if(common.getCookie("Language").toUpperCase() === "EN") { modalText = "Error occured, try again later!"; buttonText = "Ok"; } $(".modal_content .modal_text").text(modalText); $(".modal_content button").text(buttonText); $(".modal_wrapper").show(); return false; }, success: function (result) { console.log(result); $(".sitemapContainer").append("

" + result.title + "

"); if(result.childDTOList.length != 0) { $(".sitemapContainer").append("
"); if(result.parentURL != null) { $(".sitemapElementContainer").append("

Vissza - Oldaltérkép - " + result.parentTitle + "

"); } for (let i = 0; i < result.childDTOList.length; i++) { if(!result.childDTOList[i].hasChild) { result.childDTOList[i].siteUrl = result.childDTOList[i].siteUrl.replace("/oldalterkep", ""); } if(!result.childDTOList[i].hasChild) { $(".sitemapElementContainer").append(""); }else { $(".sitemapElementContainer").append(""); } } $(".sitemapContainer").append("
"); } }, complete: function (result) { $("#loading").hide(); } }); }, init: () => { common.addLoaderGif(); sitemap.getSitemap(); } }; $(document).ready(() => { sitemap.init(); });