mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-28 09:20:58 +01:00
download-original.js: format
This commit is contained in:
parent
5550bc4212
commit
44e9a5aa57
@ -15,9 +15,9 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
onready(function(){
|
onready(function() {
|
||||||
var do_original_filename = function() {
|
let doOriginalFilename = function() {
|
||||||
var filename, truncated;
|
let filename, truncated;
|
||||||
if ($(this).attr('title')) {
|
if ($(this).attr('title')) {
|
||||||
filename = $(this).attr('title');
|
filename = $(this).attr('title');
|
||||||
truncated = true;
|
truncated = true;
|
||||||
@ -34,9 +34,9 @@ onready(function(){
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
$('.postfilename').each(do_original_filename);
|
$('.postfilename').each(doOriginalFilename);
|
||||||
|
|
||||||
$(document).on('new_post', function(e, post) {
|
$(document).on('new_post', function(e, post) {
|
||||||
$(post).find('.postfilename').each(do_original_filename);
|
$(post).find('.postfilename').each(doOriginalFilename);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user