Skip to content

Instantly share code, notes, and snippets.

@MeanEYE
Created June 5, 2017 11:04
Show Gist options
  • Save MeanEYE/7890f8647759227e818b787a28440ceb to your computer and use it in GitHub Desktop.
Save MeanEYE/7890f8647759227e818b787a28440ceb to your computer and use it in GitHub Desktop.
function handle_load(article) {
var title = document.createElement('h1');
var content = document.createElement('div');
title.innerHtml = article.item.title;
content.innerHtml = article.item.content;
}
new Communicator('articles')
.on_load(handle_load)
.get('json_article', {id: 1});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment