mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 16:44:50 +00:00
8 lines
226 B
JavaScript
Vendored
8 lines
226 B
JavaScript
Vendored
$(document).ready(function() {
|
|
$(document).on('submit', '.bookmark-form', function(e) {
|
|
e.preventDefault();
|
|
var el = $(this);
|
|
var id = el.data('id');
|
|
var res = axios.post('/i/bookmark', {item: id});
|
|
});
|
|
}); |