diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-03-05 19:43:27 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-03-05 19:43:27 +0100 |
commit | 4a7346cf762de22ab5bffefb3a194550430aa0d1 (patch) | |
tree | 4a026d297ee712dd37ed3b7f2357c0e381aa58d2 | |
parent | c9ef9dff7d856bcced846232eb6178b069c8c488 (diff) | |
download | Ishtar-4a7346cf762de22ab5bffefb3a194550430aa0d1.tar.bz2 Ishtar-4a7346cf762de22ab5bffefb3a194550430aa0d1.zip |
UI: fix navigation between cards
-rw-r--r-- | ishtar_common/templates/ishtar/sheet.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/templates/ishtar/sheet.html b/ishtar_common/templates/ishtar/sheet.html index 15737d1d7..c5511b859 100644 --- a/ishtar_common/templates/ishtar/sheet.html +++ b/ishtar_common/templates/ishtar/sheet.html @@ -73,12 +73,12 @@ } jQuery(".next_page").click(function() { load_window("{{current_window_url}}" + get_next_table_id({{item.pk}}) + "/", - '', function(){$("#{{window_id}}").remove();}, + '', function(){hide_window("{{window_id}}");}, true); }); jQuery(".previous_page").click(function() { load_window("{{current_window_url}}" + get_previous_table_id({{item.pk}}) + "/", - '', function(){$("#{{window_id}}").remove();}, + '', function(){hide_window("{{window_id}}");}, true); }); {% if item.image %} |