blob: cd3b2e7065e8deb2274b093020dfe705465502a8 [file] [log] [blame] [edit]
document.addEventListener("DOMContentLoaded", function() {
// Mare sure we're styling with CSS
document.execCommand("styleWithCss", true, null);
});
function insertText(selector, newText) {
var selection = window.getSelection(),
insertionPoint = document.querySelector(selector),
range = document.createRange();
range.selectNode(insertionPoint);
selection.removeAllRanges();
selection.addRange(range);
document.execCommand("insertText", true, newText);
}
function duplicate(selector) {
var selection = window.getSelection(),
insertionPoint = document.querySelector(selector),
range = document.createRange();
range.selectNode(insertionPoint);
selection.removeAllRanges();
selection.addRange(range);
document.execCommand("copy", true, null);
selection.removeAllRanges();
document.execCommand("paste", true, null);
}