in assets/scripts/steps.js [74:91]
var initCopy = function () {
var options = {
target: function (trigger) {
return trigger.previousElementSibling;
}
};
var copy = new Clipboard(selectors.copy, options);
copy.on('success', function (e) {
e.clearSelection();
$el = $(e.trigger);
$el.html(texts.copied);
setTimeout(function () {
$el.html(texts.copy);
}, COPY_TIME);
});
};