View signal_boost.js
var postURL = "https://www.dreamwidth.org/update.bml?event="; | |
var curURL = window.location.href; | |
// get the currently selected text (no longer used in boost) | |
function getSelectionText() { | |
var text = ""; | |
if (window.getSelection) { | |
text = window.getSelection().toString(); | |
} else if (document.selection && document.selection.type != "Control") { | |
text = document.selection.createRange().text; |