/* Minification failed. Returning unminified contents.
(1,1): run-time error CSS1019: Unexpected token, found '$'
(1,2): run-time error CSS1019: Unexpected token, found '('
(1,12): run-time error CSS1031: Expected selector, found '('
(1,12): run-time error CSS1025: Expected comma or open brace, found '('
(9,2): run-time error CSS1019: Unexpected token, found ')'
 */
$(function () {
    $(document).on("click", "a.disable-upon-click", function (e) {
        $(this).attr("disabled", true);
        $(this).text("Loading...");
        setTimeout(function () {
            e.target.removeAttribute("href"); // Using $(this).removeAttr("href") doesn't work, requiring the use of e instead.
        }, 0);
    });
});
