js/download-original.js

This commit is contained in:
Michael Foster 2013-08-31 19:49:06 +10:00
parent 8d14ef6bf7
commit 3287e57421

27
js/download-original.js Normal file
View File

@ -0,0 +1,27 @@
/*
* download-original.js
* https://github.com/savetheinternet/Tinyboard/blob/master/js/download-original.js
*
* Makes image filenames clickable, allowing users to download and save files as their original filename.
* Only works in newer browsers. http://caniuse.com/#feat=download
*
* Released under the MIT license
* Copyright (c) 2012-2013 Michael Save <savetheinternet@tinyboard.org>
*
* Usage:
* $config['additional_javascript'][] = 'js/jquery.min.js';
* $config['additional_javascript'][] = 'js/download-original.js';
*
*/
onready(function(){
$('.postfilename').each(function() {
$(this).replaceWith(
$('<a></a>')
.attr('download', $(this).text())
.append($(this).contents())
.attr('href', $(this).parent().parent().find('a').attr('href'))
.attr('title', _('Save as original filename'))
);
});
});