blob: c3afc3f2246f2fa1acf7cc9740a7cf2abdbad41f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* eslint-disable */
(global => {
global.gl = global.gl || {};
gl.SnippetsList = function() {
var $holder = $('.snippets-list-holder');
$holder.find('.pagination').on('ajax:success', (e, data) => {
$holder.replaceWith(data.html);
});
}
})(window);
|