Files
phldnhack/js/chips.js
T
2015-11-07 09:58:43 +00:00

9 lines
184 B
JavaScript

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