File size: 141 Bytes
bc20498 |
1 2 3 4 5 6 7 8 |
import interrupt from "../interrupt.js";
export default function(name) {
return this.each(function() {
interrupt(this, name);
});
}
|
bc20498 |
1 2 3 4 5 6 7 8 |
import interrupt from "../interrupt.js";
export default function(name) {
return this.each(function() {
interrupt(this, name);
});
}
|