Difference between revisions of "Rename tab in Elections Stats Dashboard"

From UnionCloud Support
Jump to: navigation, search
(Created page with "// Fix for changing 'halls' to 'schools' $(function(){ if($(".uc-election-dashboard").length > 0){ $(".hall a").text("Schools"); if($(".hall.active").leng...")
(No difference)

Revision as of 10:14, 7 March 2017

// Fix for changing 'halls' to 'schools' $(function(){

   if($(".uc-election-dashboard").length > 0){
     $(".hall a").text("Schools");

     if($(".hall.active").length > 0){ 
       $(".uc-top-turnouts-headings").text("Schools");
     }
  }

})