mirror of
https://github.com/jcreek/phldnhack.git
synced 2026-07-12 18:43:43 +00:00
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
(function ($) {
|
|
$(document).ready(function() {
|
|
|
|
$(document).on('click.chip', '.chip .material-icons', function (e) {
|
|
$(this).parent().remove();
|
|
});
|
|
|
|
});
|
|
}( jQuery )); |