1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-12 11:02:21 -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").attr("disabled", true);
$.get(sbRoot + "/home/branchCheckout", {'branch': $("#branchVersion").val()},
function (data){ $(this).html(data); });
url = sbRoot+'/home/branchCheckout?branch='+$("#branchVersion").val();
window.location.href = url;
});
});