diff options
author | Thomas Willingham <founder@kakste.com> | 2012-04-02 00:29:27 +0100 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2012-04-02 00:29:27 +0100 |
commit | 210586eaed18afc4d9ff613ee8f1ea0acdec621a (patch) | |
tree | 49c8e91f210815eeccd6925457664f39380f0a82 /js | |
parent | 8406803473773404b18b95c709da0b8f5da59d3c (diff) | |
parent | 23dc376364b7d8f8e27e3493fe3edbf5cf768a35 (diff) | |
download | volse-hubzilla-210586eaed18afc4d9ff613ee8f1ea0acdec621a.tar.gz volse-hubzilla-210586eaed18afc4d9ff613ee8f1ea0acdec621a.tar.bz2 volse-hubzilla-210586eaed18afc4d9ff613ee8f1ea0acdec621a.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'js')
-rwxr-xr-x | js/main.js | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/js/main.js b/js/main.js index defd1f951..744691b6d 100755 --- a/js/main.js +++ b/js/main.js @@ -16,6 +16,7 @@ document.getElementById(theID).style.display = "none" } + var src = null; var prev = null; var livetime = null; @@ -88,10 +89,12 @@ return false; }); $('html').click(function() { - last_popup_menu.hide(); - last_popup_button.removeClass("selected"); - last_popup_menu = null; - last_popup_button = null; + if(last_popup_menu) { + last_popup_menu.hide(); + last_popup_button.removeClass("selected"); + last_popup_menu = null; + last_popup_button = null; + } }); // fancyboxes @@ -166,6 +169,12 @@ NavUpdate(); // Allow folks to stop the ajax page updates with the pause/break key $(document).keydown(function(event) { + if(event.keyCode == '8') { + var target = event.target || event.srcElement; + if (!/input|textarea/i.test(target.nodeName)) { + return false; + } + } if(event.keyCode == '19' || (event.ctrlKey && event.which == '32')) { event.preventDefault(); if(stopped == false) { |