var clipboard = new Clipboard('.btn-copy'); clipboard.on('success', function (e) { console.log(e); $(e.trigger).html("Copied!"); }); clipboard.on('error', function (e) { console.log(e); $(e.trigger).html("Press Ctrl+C to copy"); }); var site = site || {}; site.baseUrl = site.baseUrl || ""; $(document).ready(function (e) { //don't break the hypenated ko-fi word on links $('.MsoNormal a[href]').each(function () { $(this).html( $(this).html().replace(/Ko-fi/gi, 'Ko-fi') ); }); // locate each partial section. // if it has a URL set, load the contents into the area. $(".partialContents").each(function (index, item) { var url = site.baseUrl + $(item).data("url"); if (url && url.length > 0) { // $(item).load(url); } }); });