Welcome to mirror list, hosted at ThFree Co, Russian Federation.

snippets_list.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b6d999b1c36c4c7b773e15ca08b87a9b66ee242 (plain)
1
2
3
4
5
6
7
8
9
function SnippetsList() {
  const $holder = $('.snippets-list-holder');

  $holder.find('.pagination').on('ajax:success', (e, data) => {
    $holder.replaceWith(data.html);
  });
}

window.gl.SnippetsList = SnippetsList;