Skip to content

Instantly share code, notes, and snippets.

@vilterp
Created February 2, 2009 01:32
Show Gist options
  • Save vilterp/56728 to your computer and use it in GitHub Desktop.
Save vilterp/56728 to your computer and use it in GitHub Desktop.
strikethrough ubiquity command
function cmd_strikethrough() {
var doc = context.focusedWindow.document;
if (doc.designMode == "on")
doc.execCommand("strikethrough", false, null);
else
displayMessage("You're not in a rich text editing field.");
}
cmd_italic.description = "If you're in a rich-text-edit area, strikes through the selected text.";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment