diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-06-21 17:08:56 -0400 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2019-06-25 13:52:33 -0400 |
commit | ac0fe888b57a2cba9b2884590dc38e6680f54d22 (patch) | |
tree | 0648343dd87b98e91a06c70ea4db1d7df86e8170 /dashboard/src/templates/booking/quick_deploy.html | |
parent | 269041890fb9329648d9243e2ab88bd6a5d40fb0 (diff) |
Move JS to external file
This is mostly a proof of concept to move all JS to external
files to pave the way for future re-architecting
Change-Id: I3b6f00bff7325b85a75d37f554892fa5283d9f4b
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'dashboard/src/templates/booking/quick_deploy.html')
-rw-r--r-- | dashboard/src/templates/booking/quick_deploy.html | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/dashboard/src/templates/booking/quick_deploy.html b/dashboard/src/templates/booking/quick_deploy.html index ea80af4..07f3d89 100644 --- a/dashboard/src/templates/booking/quick_deploy.html +++ b/dashboard/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; |