Fixing build issues
This commit is contained in:
parent
6b8aa41691
commit
7b7bdd695c
|
@ -11,13 +11,13 @@
|
||||||
|
|
||||||
function addURL() {
|
function addURL() {
|
||||||
var url = $("#textbox");
|
var url = $("#textbox");
|
||||||
$.ajax(api("add") + "&value=" + url.value);
|
$.ajax(api("add") + "&value=" + url.attr("value"));
|
||||||
url.value = "";
|
url.value = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
function volume() {
|
function volume() {
|
||||||
var volume = $("#textbox");
|
var volume = $("#textbox");
|
||||||
$.ajax(api("volume") + "&value=" + volume.value);
|
$.ajax(api("volume") + "&value=" + volume.attr("value"));
|
||||||
volume.value = "";
|
volume.value = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue