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.
18 lines
538 B
18 lines
538 B
/** |
|
* @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.islandora.print_img + '"></img>'); |
|
$('#print_btn').css("cursor","pointer"); |
|
$('#print_btn').click(function() { |
|
window.location=Drupal.settings.islandora.print_link; |
|
}); |
|
}); |
|
})(jQuery); |
|
|
|
|