gyrospring

✒ 0017.0014 global-variables.js Snippet

Aug 23rd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Assignment Operator
  2. var CurrentIndex = -1;
  3.  
  4. // String Variable Index
  5. var G_C_SidebarPageLoad = ''; //Show, Hide
  6.  
  7. // Boolean Variable Index
  8. var G_C_LinksbarVisible = -1;
  9.  
  10. // Integer Variable Index
  11. var G_C_ColorScheme = -1;
  12.  
  13. // String Assignments
  14. G_C_SidebarPageLoad = G_CookieString.length; CurrentIndex = G_CookieString.length; G_CookieString[CurrentIndex] = []; G_CookieString[CurrentIndex][G_CI_Name] = 'Sidebar Page Load Setting'; G_CookieString[CurrentIndex][G_CI_Default] = 'Show';
  15.  
  16. // Boolean Assignments
  17. G_C_LinksbarVisible = G_CookieBoolean.length; CurrentIndex = G_CookieBoolean.length; G_CookieBoolean[CurrentIndex] = []; G_CookieBoolean[CurrentIndex][G_CI_Name] = 'Linksbar Visible'; G_CookieBoolean[CurrentIndex][G_CI_Default] = 1;
  18.  
  19. // Integer Assignments
  20. G_C_ColorScheme = G_CookieInteger.length; CurrentIndex = G_CookieInteger.length; G_CookieInteger[CurrentIndex] = []; G_CookieInteger[CurrentIndex][G_CI_Name] = 'Color Scheme'; G_CookieInteger[CurrentIndex][G_CI_Default] = 1;
Add Comment
Please, Sign In to add comment