diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-09-04 17:11:07 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-09-04 17:11:07 +0200 | 
| commit | a17e992687d7e06ff4e2f04d28f5a3ababedfeff (patch) | |
| tree | 7f70edfb0b30fb1fde8a4df08357090f81f23f88 /ishtar_common/static/js | |
| parent | 532b8dc54fd2837fca40f76508690c30b90d60d2 (diff) | |
| download | Ishtar-a17e992687d7e06ff4e2f04d28f5a3ababedfeff.tar.bz2 Ishtar-a17e992687d7e06ff4e2f04d28f5a3ababedfeff.zip | |
Define default empty function for get_next_table_id and get_previous_table_id (refs #1374)
Diffstat (limited to 'ishtar_common/static/js')
| -rw-r--r-- | ishtar_common/static/js/ishtar.js | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/ishtar_common/static/js/ishtar.js b/ishtar_common/static/js/ishtar.js index 72da8fdda..abd4f6733 100644 --- a/ishtar_common/static/js/ishtar.js +++ b/ishtar_common/static/js/ishtar.js @@ -23,6 +23,10 @@ beforeSend: function(xhr, settings) {      }  }}); +/* default function to prevent undefined */ +function get_next_table_id(){} +function get_previous_table_id(){} +  $(document).ready(function(){      $("#main_menu > ul > li > ul").hide();      $("#main_menu ul ul .selected").parents().show(); | 
