Advertisement
achshar

Untitled

Mar 28th, 2011
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if(!store('setoptions')) {
  2.     store('option:action','pause');
  3.     store('option:notification','allow');
  4.     store('option:client','uTorrent');
  5.     store('option:limit',0);
  6.     store('setoptions',1);
  7. }
  8.  
  9. function store(id,value) {
  10.     if(value) {
  11.         localStorage.setItem(id,value);
  12.     } else {
  13.         return localStorage.getItem(id);
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement