Skip to content

Instantly share code, notes, and snippets.

@afuggini
Created April 12, 2014 20:38
Show Gist options
  • Save afuggini/10555696 to your computer and use it in GitHub Desktop.
Save afuggini/10555696 to your computer and use it in GitHub Desktop.
openUrl: function(url, options) {
var html = HTTP.call("GET", url, options, function(e,r) {
return r;
});
return html;
}
@afuggini
Copy link
Author

Meteor.call("openUrl", "http://southernmedia.net", {}, function(e,r) {
  console.log(r);
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment