blob: 19aff38caa549e9ea8f84cd0b7dd158b978826f2 [file] [log] [blame]
(function() {
'use strict';
/**
* autocomplete chip for getting repository suggestions
*/
Polymer({
is: 'gr-repo-chip',
properties: {
// repo type is ProjectInfo
repo: Object,
removable: {
type: Boolean,
value: true,
},
},
_handleRemove(e) {
e.preventDefault();
this.fire('remove', {repo: this.repo});
},
});
})();