Pi2-FGABreja/FGABrejaWeb

View on GitHub
FGABreja/static/js/chips.js

Summary

Maintainability
A
2 hrs
Test Coverage
(function ($) {
  $(document).ready(function() {

    $(document).on('click.chip', '.chip .material-icons', function (e) {
      $(this).parent().remove();
    });

  });
}( jQuery ));