mirror of https://github.com/pixelfed/pixelfed.git
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
|
$(document).ready(function() {
|
||
|
|
||
|
$('.bookmark-form').submit(function(e) {
|
||
|
e.preventDefault();
|
||
|
var el = $(this);
|
||
|
var id = el.data('id');
|
||
|
var res = axios.post('/i/bookmark', {item: id});
|
||
|
});
|
||
|
});
|