Guest User

gallerySet()

a guest
Sep 19th, 2016
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function galleryGet() {
  2. const REDDIT_URL = `https://www.reddit.com/r/aww.json?jsonp=?`;
  3.  
  4. return new Promise((resolve, reject) => {
  5. $.ajax({
  6. url: REDDIT_URL,
  7. dataType: 'jsonp'
  8. })
  9. .done(resolve)
  10. .fail(reject);
  11. })
  12. }
Add Comment
Please, Sign In to add comment