/* hledger web ui javascripts */ /* depends on jquery, other support libs, and additional js inserted inline */ $(document).ready(function() { /* show/hide things based on request parameters */ if ($.url.param('add')) addformToggle(); else if ($.url.param('edit')) editformToggle(); if ($.url.param('accounts')=='0') $('#accounts').hide(); /* set up sidebar account mouse-over handlers */ $('#sidebar p a').mouseenter(function(){ $(this).parent().addClass('mouseover'); }); $('#sidebar p').mouseleave(function(){ $(this).removeClass('mouseover'); }); /* set up various show/hide toggles */ $('#search-help-link').click(function() { $('#search-help').slideToggle('fast'); event.preventDefault(); }); $('#sidebar-toggle-link').click(function() { $('#sidebar-content').slideToggle('fast'); event.preventDefault(); }); $('#all-postings-toggle-link').click(function() { $('.posting').toggle(); event.preventDefault(); }); $('.postings-toggle-link').click(function() { $(this).parent().parent().nextUntil(':not(.posting)').toggle(); event.preventDefault(); }); }); function searchformToggle() { var a = document.getElementById('addform'); var e = document.getElementById('editform'); var f = document.getElementById('searchform'); var i = document.getElementById('importform'); var c = document.getElementById('maincontent'); var alink = document.getElementById('addformlink'); var elink = document.getElementById('editformlink'); var flink = document.getElementById('searchformlink'); var ilink = document.getElementById('importformlink'); var tlink = document.getElementById('transactionslink'); if (f.style.display == 'none') { flink.style['font-weight'] = 'bold'; f.style.display = 'block'; } else { flink.style['font-weight'] = 'normal'; f.style.display = 'none'; } return false; } function addformToggle(ev) { var a = document.getElementById('addform'); var e = document.getElementById('editform'); var f = document.getElementById('searchform'); var i = document.getElementById('importform'); var c = document.getElementById('maincontent'); var alink = document.getElementById('addformlink'); var elink = document.getElementById('editformlink'); var flink = document.getElementById('searchformlink'); var ilink = document.getElementById('importformlink'); var tlink = document.getElementById('transactionslink'); if (a.style.display == 'none') { if (alink) alink.style['font-weight'] = 'bold'; if (elink) elink.style['font-weight'] = 'normal'; if (ilink) ilink.style['font-weight'] = 'normal'; if (tlink) tlink.style['font-weight'] = 'normal'; if (a) a.style.display = 'block'; if (e) e.style.display = 'none'; if (i) i.style.display = 'none'; if (c) c.style.display = 'none'; } else { if (alink) alink.style['font-weight'] = 'normal'; if (elink) elink.style['font-weight'] = 'normal'; if (ilink) ilink.style['font-weight'] = 'normal'; if (tlink) tlink.style['font-weight'] = 'bold'; if (a) a.style.display = 'none'; if (e) e.style.display = 'none'; if (i) i.style.display = 'none'; if (c) c.style.display = 'block'; } return false; } function editformToggle(ev) { var a = document.getElementById('addform'); var e = document.getElementById('editform'); var ej = document.getElementById('journalselect'); var f = document.getElementById('searchform'); var i = document.getElementById('importform'); var c = document.getElementById('maincontent'); var alink = document.getElementById('addformlink'); var elink = document.getElementById('editformlink'); var flink = document.getElementById('searchformlink'); var ilink = document.getElementById('importformlink'); var tlink = document.getElementById('transactionslink'); if (e.style.display == 'none') { if (alink) alink.style['font-weight'] = 'normal'; if (elink) elink.style['font-weight'] = 'bold'; if (ilink) ilink.style['font-weight'] = 'normal'; if (tlink) tlink.style['font-weight'] = 'normal'; if (a) a.style.display = 'none'; if (i) i.style.display = 'none'; if (c) c.style.display = 'none'; if (e) e.style.display = 'block'; editformJournalSelect(ev); } else { if (alink) alink.style['font-weight'] = 'normal'; if (elink) elink.style['font-weight'] = 'normal'; if (ilink) ilink.style['font-weight'] = 'normal'; if (tlink) tlink.style['font-weight'] = 'bold'; if (a) a.style.display = 'none'; if (e) e.style.display = 'none'; if (i) i.style.display = 'none'; if (c) c.style.display = 'block'; } return false; } // Get the current event's target in a robust way. // http://www.quirksmode.org/js/events_properties.html function getTarget(ev) { var targ; if (!ev) var ev = window.event; if (ev.target) targ = ev.target; else if (ev.srcElement) targ = ev.srcElement; if (targ.nodeType == 3) targ = targ.parentNode; return targ; } function editformJournalSelect(ev) { var textareas = $('textarea', $('form#editform')); for (i=0; i