authoritycontrol.js 309 B

123456789101112
  1. function isdowncontrol(){
  2. if(typeof(localStorage)!="undefined"){
  3. if(localStorage.getItem("DownControl")){
  4. if(localStorage.getItem("DownControl")=="false"){
  5. return false;
  6. }else{
  7. return true;
  8. }
  9. }
  10. }
  11. return true;
  12. }