Commit 551dea7e authored by Kushal Pandya's avatar Kushal Pandya

Protected Tags List initializer

parent 85e1fa8e
/* eslint-disable arrow-parens, no-param-reassign, no-new, comma-dangle */
(global => {
global.gl = global.gl || {};
gl.ProtectedTagEditList = class {
constructor() {
this.$wrap = $('.protected-tags-list');
// Build edit forms
this.$wrap.find('.js-protected-tag-edit-form').each((i, el) => {
new gl.ProtectedTagEdit({
$wrap: $(el)
});
});
}
};
})(window);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment