2017-08-17 22:00:37 +05:30
|
|
|
/* eslint-disable arrow-parens, no-param-reassign, space-before-function-paren, func-names, no-var, max-len */
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
(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);
|
|
|
|
});
|
2017-08-17 22:00:37 +05:30
|
|
|
};
|
2016-09-29 09:46:39 +05:30
|
|
|
})(window);
|