mirror of
https://github.com/prymitive/karma
synced 2026-05-09 03:36:44 +00:00
15 lines
286 B
JavaScript
15 lines
286 B
JavaScript
// https://github.com/FezVrasta/popper.js/issues/478#issuecomment-341506071
|
|
|
|
import PopperJs from "popper.js";
|
|
|
|
export default class Popper {
|
|
static placements = PopperJs.placements;
|
|
|
|
constructor() {
|
|
return {
|
|
destroy: () => {},
|
|
scheduleUpdate: () => {}
|
|
};
|
|
}
|
|
}
|