aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/booking/quick_deploy.html
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-06-25 18:51:28 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-06-25 18:51:28 +0000
commit896c5a9fba1c567d938539f251937f4bef11c686 (patch)
tree1433c667699d49be6266ee11df8c84652925f8fc /src/templates/booking/quick_deploy.html
parentd0ef55b1ba456858f811dd127986591c42312136 (diff)
parent0b82b343f6d84a7420a2aea573a7c8d9597d8652 (diff)
Merge "Move JS to external file"
Diffstat (limited to 'src/templates/booking/quick_deploy.html')
-rw-r--r--src/templates/booking/quick_deploy.html8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/templates/booking/quick_deploy.html b/src/templates/booking/quick_deploy.html
index ea80af4..07f3d89 100644
--- a/src/templates/booking/quick_deploy.html
+++ b/src/templates/booking/quick_deploy.html
@@ -83,7 +83,7 @@
function submit_form()
{
//formats data for form submission
- document.getElementById("filter_field").value = JSON.stringify(result);
+ multi_filter_widget.finish();
}
function hide_dropdown(drop_id) {
@@ -104,10 +104,8 @@
}
function get_selected_value(key){
- for( var attr in result[key] ){
- if( attr in {} )
- continue;
- else
+ for( var attr in multi_filter_widget.result[key] ){
+ if(!(attr in {}) )
return attr;
}
return null;