Maxi Kleber (l) also lost to the Utah Jazz with Dallas. (© Rick Egan/AP/dpa)
The Dallas Mavericks‘ negative streak continues. The team around superstar Luka Doncic suffered its fourth defeat in a row against the weakest NBA team in the West.
For 0,99 Euro im Testmonat
then 3 euros per week, can be canceled monthly
To the offer
Already a subscriber? Log in here!
“;
strTemplate += “
” + strLinks + “
“;
jQuery(“#navbar-collapse-header”).append(strTemplate);
}
function showTitleInStickyHeader() {
jQuery(“.social-media-title, .social-media-links”).removeClass(“hidden”);
jQuery(“.mainnav-1, .toggle-search-container, .mainnav-2”).addClass(“hidden”);
}
function hideTitleInStickyHeader() {
jQuery(“.social-media-title, .social-media-links”).addClass(“hidden”);
jQuery(“.mainnav-1, .toggle-search-container, .mainnav-2”).removeClass(“hidden”);
}
jQuery(“.article-detail-nav-prev”).removeClass(“hidden”);
jQuery(“.article-detail-nav-next”).removeClass(“hidden”);
jQuery(function() {
var intArticleID = jQuery(“.article-detail”).attr(“data-article-id”);
jQuery.ajax({
type: “GET”,
cache: false,
url: “/_em_cms/globals/acon.php?em_cnt=” + intArticleID + “&em_action=bookmark_check”,
dataType: “json”,
success: checkBookmark
});
jQuery(“.lesezeichen-li a”).on(“click”, function () {
var bolBookmarked = jQuery(“.article-detail”).attr(“data-bookmarked”);
jQuery.ajax({
type: “GET”,
cache: false,
url: “/_em_cms/globals/acon.php?em_cnt=” + intArticleID + “&em_action=” + (bolBookmarked == “true” ? “bookmark_del” : “bookmark_add”),
dataType: “json”,
success: checkBookmark
});
});
});
function checkBookmark(objBookmark)
{
jQuery(“.article-detail”).attr(“data-bookmarked”, objBookmark.bookmarked);
strFlag = “fa-star-o”;
strTitle = “als Lesezeichen hinzufügen”;
if (objBookmark.bookmarked == true) {
strFlag = “fa-star”;
strTitle = “Lesezeichen entfernen”;
}
jQuery(“.lesezeichen-li a”).html(““).attr(“title”, strTitle);
}