The switchview show/hide is done using jQuery rather than directly
authorMike Taylor <mike@indexdata.com>
Fri, 2 May 2014 16:02:17 +0000 (17:02 +0100)
committerMike Taylor <mike@indexdata.com>
Fri, 2 May 2014 16:02:17 +0000 (17:02 +0100)
messing with the CSS.

src/mkws-team.js

index d50e93f..a853de1 100644 (file)
@@ -303,16 +303,16 @@ function team($, teamName) {
 
        switch(view) {
         case 'targets':
-            if (targets) targets.css('display', 'block');
-            if (results) results.css('display', 'none');
-            if (blanket) blanket.css('display', 'none');
-            if (motd) motd.css('display', 'none');
+            if (targets) $(targets).show();
+            if (results) $(results).hide();
+            if (blanket) $(blanket).hide();
+            if (motd) $(motd).hide();
             break;
         case 'records':
-            if (targets) targets.css('display', 'none');
-            if (results) results.css('display', 'block');
-            if (blanket) blanket.css('display', 'block');
-            if (motd) motd.css('display', 'none');
+            if (targets) $(targets).hide();
+            if (results) $(results).show();
+            if (blanket) $(blanket).show();
+            if (motd) $(motd).hide();
             break;
         default:
             alert("Unknown view '" + view + "'");