Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. get("/api/google/sheets/resources")
  2. .then(JSON.parse)
  3. .then(function (context) {
  4. return handlebar("#template", "#output", context);
  5. })
  6. .then(function (context) {
  7. return pourover(context);
  8. })
  9. .then(function (view) {
  10. return linkify(view);
  11. })
  12. .catch(function(err) {
  13. console.error(err);
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement