Drupal modules for browsing and managing Fedora-based digital repositories.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* JavaScript file responsable for the print button behaviour.
|
|
|
|
*
|
|
|
|
* The print button is added automatically to every view, as metadata
|
|
|
|
* can be printed from every object.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
(function ($) {
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('.tabs .primary').append('<img id="print_btn" title="Print" src="' + Drupal.settings.basePath + Drupal.settings.islandora.print_img + '"></img>');
|
|
|
|
$('#print_btn').css("cursor","pointer");
|
|
|
|
$('#print_btn').click(function() {
|
|
|
|
window.location=Drupal.settings.basePath + Drupal.settings.islandora.print_link;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})(jQuery);
|
|
|
|
|