var overlaps = function(needle, haystack) { return haystack.is(needle) || haystack.has(needle).length > 0; }; $(function() { // Install logout auto-POST form: $("#logout").click(function() { $("
", { "action": this.href, "method": "post" }).appendTo($("body")).submit(); return false; }); // Toggle character options on click: var charopts = $("#character-options"); charopts.hide(); $("#character-portrait img").click(function() { if (charopts.is(":visible")) { charopts.hide(); $(document).off("mouseup.charopts"); } else { charopts.show(); $(document).on("mouseup.charopts", function(e) { if (!overlaps(e.target, charopts) && !overlaps(e.target, $("#character-portrait img"))) { charopts.hide(); $(document).off("mouseup.charopts"); } }); } }).css("cursor", "pointer").keypress(function (e) { if (e.which === 13) $(this).click(); }).prop("title", "Options").prop("alt", "Options").prop("tabindex", 0); // Switch style immediately without reloading the page: $("#style-options form").submit(function() { var style = $(this).find('input[type="submit"]').data("style"); var stylesheet = "/static/styles/" + style + ".css"; $("#user-style").prop("href", stylesheet); $("#style-options .cur").removeClass("cur").find(":submit") .prop("disabled", false); $(this).addClass("cur").find(":submit").prop("disabled", true); }); });