2016-06-18 23:44:36 +02:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
2017-10-13 04:14:47 +02:00
|
|
|
// open recipe window if a hash is found in URL
|
2016-06-18 23:44:36 +02:00
|
|
|
if(window.location.hash) {
|
2017-10-18 23:17:55 +02:00
|
|
|
id = window.location.hash
|
|
|
|
document.getElementById(id.substring(1)).checked = true;
|
|
|
|
$('html, body').animate({ scrollTop: $(id).offset().top}, 1000);
|
|
|
|
$(id).closest('div').find('.link').empty();
|
|
|
|
$(id).closest('div').find('.link').append("<small>Link to this command: <a href="+window.location.href+">"+window.location.href+"</a></small>");
|
2016-06-18 23:44:36 +02:00
|
|
|
}
|
|
|
|
|
2017-10-13 04:14:47 +02:00
|
|
|
// add hash URL when recipe is opened
|
2017-10-18 22:02:04 +02:00
|
|
|
$('label[class="recipe"]').on("click", function(){
|
|
|
|
id = $(this).attr("for");
|
2017-10-19 02:56:35 +02:00
|
|
|
window.location.hash = ('#' + id)
|
|
|
|
$('#' + id).closest('div').find('.link').empty();
|
|
|
|
$('#' + id).closest('div').find('.link').append("<small>Link to this command: <a href="+window.location.href+">"+window.location.href+"</a></small>");
|
2016-06-18 23:44:36 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|