Fixing build issues

This commit is contained in:
MichaelOultram 2015-07-30 17:54:44 +01:00
parent 6b8aa41691
commit 7b7bdd695c

View file

@ -11,13 +11,13 @@
function addURL() {
var url = $("#textbox");
$.ajax(api("add") + "&value=" + url.value);
$.ajax(api("add") + "&value=" + url.attr("value"));
url.value = "";
}
function volume() {
var volume = $("#textbox");
$.ajax(api("volume") + "&value=" + volume.value);
$.ajax(api("volume") + "&value=" + volume.attr("value"));
volume.value = "";
}