Skip to content

Instantly share code, notes, and snippets.

@cers
Created March 23, 2009 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cers/83483 to your computer and use it in GitHub Desktop.
Save cers/83483 to your computer and use it in GitHub Desktop.
CmdUtils.CreateCommand({
name: "example",
takes: {"search term": /.*/},
preview: function(pblock, input) {
CmdUtils.previewGet(pblock, "http://google.com", {q: input.text}, function(data){
pblock.innerHTML = data;
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment