aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/main.js
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-09-16 01:06:44 -0700
committerzotlabs <mike@macgirvin.com>2017-09-16 01:06:44 -0700
commit991db806466d114b4ec179af9930e859bb21843b (patch)
treef3d8a5f09ba9c5b36c9bc8e0176b3d11cba732cf /view/js/main.js
parentb1876ac14fc4f9b7e39989ef7e69c8135a25c13f (diff)
parentcb3fb0049f64a92668bc94746dc55cc905683699 (diff)
downloadvolse-hubzilla-991db806466d114b4ec179af9930e859bb21843b.tar.gz
volse-hubzilla-991db806466d114b4ec179af9930e859bb21843b.tar.bz2
volse-hubzilla-991db806466d114b4ec179af9930e859bb21843b.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'view/js/main.js')
-rw-r--r--view/js/main.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/view/js/main.js b/view/js/main.js
index cdba8a25d..919eb282a 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -262,6 +262,14 @@ function openClose(theID) {
}
}
+function openCloseTR(theID) {
+ if(document.getElementById(theID).style.display == "table-row") {
+ document.getElementById(theID).style.display = "none";
+ } else {
+ document.getElementById(theID).style.display = "table-row";
+ }
+}
+
function closeOpen(theID) {
if(document.getElementById(theID).style.display == "none") {
document.getElementById(theID).style.display = "block";