mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
9 lines
211 B
JavaScript
Vendored
9 lines
211 B
JavaScript
Vendored
$(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});
|
|
});
|
|
}); |