notes/clipper/clipper.js

10 lines
249 B
JavaScript

javascript: (function()
{
var notesurl = "";
var bm = {
title: document.title,
url: document.location.href
};
window.open("https://" + notesurl + "?c=" + encodeURIComponent(JSON.stringify(bm)), "_blank", "popup,width=100,height=100");
})();