SHARE
TWEET

Untitled

a guest Jan 13th, 2016 52 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. return function(){
  2.     var self = this;
  3.     this.setup = function(links){
  4.         for (var i = 0; i < links.length; i++) {
  5.             var link = links[i];
  6.             create(link);
  7.         }
  8.     }
  9.  
  10.     function create(link){
  11.         if(!link.rel){
  12.           return;  
  13.         }
  14.         self[link.rel] = //same function to be decided
  15.     }
  16. }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top