diff options
Diffstat (limited to 'ishtar_common/static/js/ishtar.js')
| -rw-r--r-- | ishtar_common/static/js/ishtar.js | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/ishtar_common/static/js/ishtar.js b/ishtar_common/static/js/ishtar.js index c50d050ef..9af5cf2b0 100644 --- a/ishtar_common/static/js/ishtar.js +++ b/ishtar_common/static/js/ishtar.js @@ -41,6 +41,16 @@ $(document).ready(function(){                 {item:'operation', value:$("#current_operation").val()}          );      }); +    $("#current_contextrecord").change(function(){ +        $.post('/' + url_path + 'update-current-item/', +               {item:'contextrecord', value:$("#current_contextrecord").val()} +        ); +    }); +    $("#current_find").change(function(){ +        $.post('/' + url_path + 'update-current-item/', +               {item:'find', value:$("#current_find").val()} +        ); +    });      if ($(document).height() < 1.5*$(window).height()){          $('#to_bottom_arrow').hide();          $('#to_top_arrow').hide(); @@ -177,3 +187,11 @@ function closeAllWindows(){      jQuery("#window > div").hide("slow");      jQuery("#window").html("");  } + +function show_hide_flex(id){ +    if ($(id).is(':hidden')){ +        $(id).css('display', 'flex'); +    } else { +        $(id).hide(); +    } +} | 
