UI > Infrastructure > Add Primary Storage > use custom function if it's available.

This commit is contained in:
Jessica Wang 2014-08-08 14:09:07 -07:00
parent 4217d157c5
commit d1f6d75426
1 changed files with 5 additions and 0 deletions

View File

@ -17015,6 +17015,11 @@
array1.push("&tags=" + todb(args.data.storageTags));
}
if ("custom" in args.response) {
args.response.custom(array1);
return;
}
$.ajax({
url: createURL("createStoragePool" + array1.join("")),
dataType: "json",