1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-12 19:12:26 -05:00

Fixed ajax calls to update function.

This commit is contained in:
echel0n 2014-07-27 17:45:05 -07:00
parent 0f2941435f
commit 1908f76eaf

View File

@ -71,9 +71,8 @@ $(document).ready(function () {
}); });
$('#branchCheckout').click(function () { $('#branchCheckout').click(function () {
$("#branchCheckout").attr("disabled", true); url = sbRoot+'/home/branchCheckout?branch='+$("#branchVersion").val();
$.get(sbRoot + "/home/branchCheckout", {'branch': $("#branchVersion").val()}, window.location.href = url;
function (data){ $(this).html(data); });
}); });
}); });