##// END OF EJS Templates
Check the readme.md for the bokeh version notes and requeriments.
Check the readme.md for the bokeh version notes and requeriments.

File last commit:

r338:7377db7c77e8
r344:ada396c7b35b
Show More
abs.js
19 lines | 461 B | application/javascript | JavascriptLexer
$(document).ready(function() {
updateOperationMode()
});
$("#id_operation_mode").on('change', function() {
updateOperationMode()
});
function updateOperationMode(){
var operation_mode = $("#id_operation_mode").val();
if (operation_mode==0){
document.getElementById("id_operation_value").disabled=true;
$("#id_operation_value").hide();
}
else {
document.getElementById("id_operation_value").disabled=false;
$("#id_operation_value").show();
}
}